context
π―Skillfrom robdtaylor/personal-ai-infrastructure
Provides a structured, modular way to load and manage contextual information for Claude Code sessions, enabling dynamic knowledge retrieval based on current task or domain.
Installation
npx skills add https://github.com/robdtaylor/personal-ai-infrastructure --skill contextSkill Details
Overview
# Personal AI Infrastructure (PAI)
A skills-based context management system for [Claude Code](https://docs.anthropic.com/en/docs/claude-code). PAI extends Claude Code with domain-specific knowledge, custom workflows, and automated session management.
What is PAI?
PAI is a personal AI infrastructure layer that sits on top of Claude Code, providing:
- Skills System - Modular context packages that load relevant knowledge on-demand
- Hook System - Event-driven automation for session lifecycle management
- Memory System - Session history, learnings, and signal capture
- Custom Commands - Slash commands for common workflows
Prerequisites
- [Claude Code CLI](https://docs.anthropic.com/en/docs/claude-code) installed and authenticated
- [Bun](https://bun.sh/) runtime (for hooks and tools)
- macOS or Linux (Windows via WSL)
Installation
1. Clone the repository
```bash
git clone https://github.com/robdtaylor/personal-ai-infrastructure.git ~/.claude
```
> Note: If you already have a ~/.claude directory, back it up first:
> ```bash
> mv ~/.claude ~/.claude-backup
> ```
2. Copy and configure settings
```bash
cd ~/.claude
cp settings.json.template settings.json
```
Edit settings.json to customize:
- Environment variables
- Hook configurations
- Permission settings
3. Install dependencies
```bash
# Install Bun if not already installed
curl -fsSL https://bun.sh/install | bash
# Install hook dependencies
cd ~/.claude/hooks && bun install
```
4. Personalize your setup
Edit the following files in skills/CORE/USER/:
| File | Purpose |
|------|---------|
| BASICINFO.md | Your contact information |
| CONTACTS.md | Directory of people you work with |
| ABOUTME.md | Personal background for AI context |
| DAIDENTITY.md | AI assistant name and personality |
| TECHSTACKPREFERENCES.md | Your preferred technologies |
5. Verify installation
```bash
claude
```
You should see the PAI context load at session start.
Directory Structure
```
~/.claude/
βββ skills/ # Skill packages (context modules)
β βββ CORE/ # Core identity and system docs
β βββ Research/ # Multi-source research workflows
β βββ Browser/ # Web automation
β βββ ... # Domain-specific skills
βββ hooks/ # Event-driven automation
βββ commands/ # Custom slash commands
βββ bin/ # CLI tools and utilities
βββ MEMORY/ # Session history and learnings
βββ settings.json # Claude Code configuration
```
Skills Included
Manufacturing & Operations
- AutomotiveManufacturing - IATF 16949, work instructions, SOPs
- A3CriticalThinking - Toyota-style problem solving
- CNCSetup - Machine setup sheets
- CuttingParams - Feeds and speeds reference
- PlantCapability - Machine shop capabilities
- QuoteEstimator - Cycle time and cost estimation
- SkillsMatrix - Operator competency tracking
- ToolCrib - Tool inventory management
- TribalKnowledge - Expertise capture
- MaintenancePM - Preventive maintenance schedules
- HoshinKanri - Strategy deployment (X-Matrix, catchball)
- SapEcc - SAP transaction codes and processes
- SupplyChain - Purchasing and materials management
Business & Strategy
- BusinessStrategy - Financial analysis, valuations, business plans
- PowerPlatform - Power Automate flow generation
Infrastructure & Automation
- HomeAssistant - Smart home integration
- Infrastructure - Network services and endpoints
- MobileApp - Mobile web interface for PAI
- Proxmox - VM management
- Unifi - Network monitoring
- n8n - Workflow automation
AI & Research
- Research - Multi-source parallel research
- AgentObservability - Real-time agent monitoring dashboard
- PhotoRealisticArt - AI image generation prompting
- Art - Excalidraw-style visualizations
Core
- CORE - Identity, preferences, security protocols
- **Brows
More from this repository10
Creates a new skill template with standard files and directory structure for the Personal AI Infrastructure system, streamlining skill development and onboarding.
Manages and automates network configuration and monitoring for Ubiquiti UniFi network infrastructure, providing centralized network management capabilities.
Automates Microsoft Office document interactions, enabling intelligent document generation, analysis, and workflow management within Claude Code sessions.
Provides foundational personal context and identity information for Claude Code sessions, including user details, contact information, tech preferences, and AI assistant personality configuration.
businessstrategy skill from robdtaylor/personal-ai-infrastructure
Generates photorealistic art images by leveraging AI models and providing advanced image generation and styling capabilities within the Claude Code workflow.
quoteestimator skill from robdtaylor/personal-ai-infrastructure
Manages and tracks professional skills, competencies, and expertise levels across different domains, enabling structured skill assessment and career development insights.
mobileapp skill from robdtaylor/personal-ai-infrastructure
Automates CNC machine configuration and calibration, generating precise setup instructions and toolpath optimization recommendations.