Multi-agent Claude Code workspace for AI alignment research and model training.
~/Projects/
├── MASTER_AGENT.md # Master orchestrator instructions
├── README.md # This file
├── .claude/
│ └── commands/ # Shared slash commands
│ ├── delegate.md # /delegate - Route tasks to agents
│ ├── status.md # /status - Check all projects
│ ├── train.md # /train - Training workflows
│ └── evaluate.md # /evaluate - Evaluation pipeline
│
├── HonestPersona/ # AI alignment research
│ └── CLAUDE.md # HonestPersona Agent
│
├── SPT2/ # Split-personality training
│ └── CLAUDE.md # SPT2 Agent
│
├── Macro-Data-Analysis/ # Data analysis
│ └── CLAUDE.md # Data Analysis Agent
│
├── BaseModels/ # Model repository
│ └── CLAUDE.md # Model Management Agent
│
└── Scripts/ # Shared utilities
└── CLAUDE.md # Scripts Agent
- Location:
~/Projects/(root directory) - File:
MASTER_AGENT.md - Role: Coordinates work across all projects
-
HonestPersona Agent
- Path:
cd ~/Projects/HonestPersona - Expertise: AI alignment, data generation, training pipelines
- Path:
-
SPT2 Agent
- Path:
cd ~/Projects/SPT2 - Expertise: Split-personality training, LoRA fine-tuning, inference
- Path:
-
Data Analysis Agent
- Path:
cd ~/Projects/Macro-Data-Analysis - Expertise: Data processing, metrics, visualization
- Path:
-
Model Management Agent
- Path:
cd ~/Projects/BaseModels - Expertise: Model storage, organization, serving
- Path:
-
Scripts Agent
- Path:
cd ~/Projects/Scripts - Expertise: Utilities, automation, infrastructure
- Path:
# Navigate to Projects root
cd ~/Projects/
# Master Agent will read MASTER_AGENT.md
# Delegate tasks by changing to specific project directories# Navigate to project
cd ~/Projects/SPT2
# Agent reads SPT2/CLAUDE.md
# Now in SPT2 Agent context/delegate # Route task to appropriate agent
/status # Check status of all projects
/train # Training workflows
/evaluate # Evaluation pipelineHonestPersona (data) → SPT2 (train) → SPT2 (infer) → Macro-Data-Analysis (analyze)
SPT2 (generate outputs) → Macro-Data-Analysis (metrics) → HonestPersona (compare)
SPT2 (inference) → Macro-Data-Analysis (quick analysis)
- Python: 3.x with PyTorch
- Compute: Mac MPS (Metal Performance Shaders)
- API Keys: Configured in
~/.zshrc - Base Models:
~/Projects/BaseModels/
- Navigate to workspace:
cd ~/Projects/ - Check project status:
/status - For project-specific work:
cd ~/Projects/[project] - Each project's CLAUDE.md provides specialized instructions
- Context-aware agents: Each agent has deep project knowledge
- Cross-project coordination: Master agent manages dependencies
- Shared commands: Common workflows accessible via slash commands
- Clean separation: Each project maintains its own context and config
| Task | Command |
|---|---|
| Check all projects | /status |
| Start training | /train |
| Run evaluation | /evaluate |
| Delegate task | /delegate |
| SPT2 inference | cd ~/Projects/SPT2 && python3 inference_spt.py ... |
| Data analysis | cd ~/Projects/Macro-Data-Analysis && python3 analyze_version4.py |
- Always start from
~/Projects/for master coordination - Navigate to specific project for specialized work
- Each CLAUDE.md is tailored to its project's architecture
- Slash commands work from any directory in workspace