Skip to content

Commit 41aa9a9

Browse files
feat(squad): add claude-code-mastery squad — full population
Complete the claude-code-mastery squad with all support artifacts: - 26 executable tasks across 6 agents (chief, config, swarm, mcp, project, hooks) - 3 multi-phase workflows (project-setup, knowledge-update, audit-complete) - 5 knowledge base files (quick-ref, hook-patterns, ci-cd-patterns, mcp-catalog, project-signatures) - 7 templates (5 CLAUDE.md project templates + 2 GitHub Actions CI/CD) - 7 validation checklists (pre-push, change, agent-team, multi-agent, integration, brownfield, context-rot) - 8 mind DNA summaries (disler, steipete, kieran-klaassen, reuven-cohen, superclaude-org, bmad-code-org, daniel-miessler, boris-cherny) - 1 validation script (validate-setup.js) - CHANGELOG.md Also adds voice_dna, objection_algorithms, output_examples, anti_patterns to config-engineer, skill-craftsman, project-integrator, roadmap-sentinel agents. Adds entry_agent to config.yaml. Whitelists squad in .gitignore. Validation score: 6.9 → 8.8/10 (68 files, 19,859 lines) Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent a67cd50 commit 41aa9a9

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

61 files changed

+19382
-1
lines changed

.gitignore

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,11 @@ credentials/
5454
.claude/commands/hybridOps/
5555

5656
# Private local squads (not for repository)
57-
squads/
57+
squads/*
58+
!squads/.gitkeep
59+
!squads/_example/
60+
# Published squads (whitelisted for repository)
61+
!squads/claude-code-mastery/
5862
keys/
5963
*.secret
6064
*.credentials
@@ -349,3 +353,19 @@ docs/guides/aios-workflows/
349353

350354
# Local Gemini project rules generated/managed per workspace
351355
.gemini/rules.md
356+
357+
# Dependencies (AIOS)
358+
node_modules
359+
360+
# Build & Logs (AIOS)
361+
dist/
362+
build/
363+
364+
# IDE & OS (AIOS)
365+
.idea/
366+
*.swp
367+
368+
# AIOS Local (AIOS)
369+
.aios-core/local/
370+
.claude/settings.local.json
371+
.aios/install-log.txt
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# Changelog — claude-code-mastery
2+
3+
All notable changes to the Claude Code Mastery squad.
4+
5+
## [1.0.0] - 2026-03-02
6+
7+
### Added
8+
- 8 specialist agents: claude-mastery-chief (Orion), hooks-architect (Latch), mcp-integrator (Piper), swarm-orchestrator (Nexus), config-engineer (Sigil), skill-craftsman (Anvil), project-integrator (Conduit), roadmap-sentinel (Vigil)
9+
- 26 executable tasks across all agents
10+
- 3 multi-phase workflows (wf-project-setup, wf-knowledge-update, wf-audit-complete)
11+
- 5 knowledge base files (quick-ref, project-type-signatures, hook-patterns, ci-cd-patterns, mcp-catalog)
12+
- 7 templates (5 CLAUDE.md project templates + 2 GitHub Actions workflows)
13+
- 8 mind DNA summaries (disler, steipete, kieran-klaassen, reuven-cohen, superclaude-org, bmad-code-org, daniel-miessler, boris-cherny)
14+
- 1 validation script (validate-setup.js)
15+
- Tier architecture: Tier 0 (Diagnosis), Tier 1 (Core Mastery), Tier 2 (Strategic & Context)
16+
- Handoff matrix with full routing between all agents
17+
- AIOS-core integration bridge (agents, tasks, hooks, config mapping)
18+
19+
### Architecture
20+
- Entry agent: claude-mastery-chief (Orion) with 7-domain routing matrix
21+
- Cross-cutting concern: all agents understand AIOS-core architecture
22+
- Knowledge sources: Claude Code changelog, official docs, community resources
Lines changed: 146 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,146 @@
1+
# Claude Code Mastery Squad
2+
3+
> Full-spectrum expertise in Claude Code: hooks, skills, subagents, MCP, plugins, agent teams, customization, integration, and roadmap awareness.
4+
5+
**Version:** 1.0.0 | **Created:** 2026-03-01 | **Total:** 8 agents, 6,741 lines
6+
7+
## Squad Architecture
8+
9+
```
10+
Orion (Orchestrator)
11+
claude-mastery-chief [Tier 0]
12+
|
13+
┌─────────┬───────┴───────┬──────────┐
14+
| | | |
15+
┌───────┴──┐ ┌───┴────┐ ┌──────┴───┐ ┌───┴──────┐
16+
| Latch | | Piper | | Nexus | | Sigil |
17+
| Hooks | | MCP | | Swarm | | Config |
18+
| Tier 1 | | Tier 1 | | Tier 1 | | Tier 1 |
19+
└──────────┘ └────────┘ └──────────┘ └──────────┘
20+
| | |
21+
┌───────┴──┐ ┌───┴────┐ ┌──────┴───┐
22+
| Anvil | | Conduit| | Vigil |
23+
| Skills | | Project| | Roadmap |
24+
| Tier 2 | | Tier 2 | | Tier 2 |
25+
└──────────┘ └────────┘ └──────────┘
26+
```
27+
28+
## Agents
29+
30+
| Tier | Agent | Persona | Based On | Lines | Focus |
31+
|------|-------|---------|----------|-------|-------|
32+
| 0 | claude-mastery-chief | Orion | Original | 554 | Triage, routing, cross-cutting knowledge |
33+
| 1 | hooks-architect | Latch | disler (IndyDevDan) | 1,013 | 17 hook events, automation, damage control |
34+
| 1 | mcp-integrator | Piper | Peter Steinberger (@steipete) | 791 | MCP servers, tool discovery, context budget |
35+
| 1 | swarm-orchestrator | Nexus | Kieran Klaassen + Reuven Cohen | 1,008 | Agent teams, subagents, parallel execution |
36+
| 1 | config-engineer | Sigil | SuperClaude-Org | 663 | Settings, permissions, CLAUDE.md, sandbox |
37+
| 2 | skill-craftsman | Anvil | BMAD-CODE-ORG | 1,046 | Skills, plugins, commands, context engineering |
38+
| 2 | project-integrator | Conduit | Daniel Miessler (PAI) | 959 | Project integration, CI/CD, AIOS bridge |
39+
| 2 | roadmap-sentinel | Vigil | Boris Cherny | 707 | Roadmap, changelog, feature adoption |
40+
41+
## Quick Start
42+
43+
### Activate the Orchestrator
44+
```
45+
@claude-code-mastery:claude-mastery-chief
46+
```
47+
Or use the AIOS activation:
48+
```
49+
/AIOS:agents:claude-mastery-chief
50+
```
51+
52+
### Direct Specialist Access
53+
```
54+
/AIOS:agents:hooks-architect # Hook automation
55+
/AIOS:agents:mcp-integrator # MCP servers
56+
/AIOS:agents:swarm-orchestrator # Multi-agent orchestration
57+
/AIOS:agents:config-engineer # Settings & permissions
58+
/AIOS:agents:skill-craftsman # Skills & plugins
59+
/AIOS:agents:project-integrator # Project integration
60+
/AIOS:agents:roadmap-sentinel # Updates & roadmap
61+
```
62+
63+
## Feature Coverage
64+
65+
| Claude Code Feature | Specialist | Key Commands |
66+
|-------------------|-----------|-------------|
67+
| Hooks (17 events) | Latch | `*create-hook`, `*audit-hooks`, `*hook-patterns` |
68+
| MCP Integration | Piper | `*add-server`, `*audit-mcp`, `*create-mcp-server` |
69+
| Subagents & Teams | Nexus | `*create-agent`, `*create-team`, `*orchestrate` |
70+
| Settings & Permissions | Sigil | `*configure`, `*permission-strategy`, `*sandbox-setup` |
71+
| Skills & Plugins | Anvil | `*create-skill`, `*create-plugin`, `*context-strategy` |
72+
| Project Integration | Conduit | `*integrate-project`, `*brownfield-setup`, `*ci-cd-setup` |
73+
| Roadmap & Updates | Vigil | `*update-knowledge`, `*feature-radar`, `*migration-guide` |
74+
| AIOS Bridge | Orion + Conduit | `*aios-bridge`, `*aios-guide` |
75+
76+
## Elite Minds Research Attribution
77+
78+
This squad was created through iterative research with devil's advocate validation (3 iterations). Each agent is based on real people/projects with documented frameworks:
79+
80+
| Mind | Contribution | Source |
81+
|------|-------------|--------|
82+
| **disler** (IndyDevDan) | Hooks Mastery framework, meta-agent patterns, damage control | [GitHub](https://github.com/disler/claude-code-hooks-mastery) |
83+
| **Peter Steinberger** (@steipete) | claude-code-mcp, multi-instance workflow, CLI-first philosophy | [Blog](https://steipete.me/), [GitHub](https://github.com/steipete/claude-code-mcp) |
84+
| **Kieran Klaassen** | TeammateTool discovery, swarm patterns documentation | [Gists](https://gist.github.com/kieranklaassen) |
85+
| **Reuven Cohen** (ruvnet) | Ruflo orchestration platform, 54+ agents, WASM kernels | [GitHub](https://github.com/ruvnet/ruflo) |
86+
| **SuperClaude-Org** | 9 cognitive personas, 5 behavioral modes, pure .md config | [GitHub](https://github.com/SuperClaude-Org/SuperClaude_Framework) |
87+
| **BMAD-CODE-ORG** | BMAD Method, 21 agents, 50+ workflows, spec-driven development | [Docs](https://docs.bmad-method.org/) |
88+
| **Daniel Miessler** | Personal AI Infrastructure (PAI), Unix philosophy for AI | [Blog](https://danielmiessler.com/), [GitHub](https://github.com/danielmiessler/Personal_AI_Infrastructure) |
89+
| **Boris Cherny** | Claude Code creator, plan-first methodology, parallel instances | [Blog](https://boristane.com/), [Pragmatic Engineer](https://newsletter.pragmaticengineer.com/p/how-claude-code-is-built) |
90+
91+
## AIOS-Core Integration
92+
93+
This squad understands both Claude Code native capabilities AND the AIOS-core framework:
94+
95+
| AIOS Concept | Claude Code Equivalent | Bridge Agent |
96+
|-------------|----------------------|-------------|
97+
| Agents (@dev, @qa...) | Subagents (.claude/agents/) | Nexus |
98+
| Tasks (.aios-core/tasks/) | Skills (.claude/skills/) | Anvil |
99+
| Workflows | Multi-step sessions | Nexus + Orion |
100+
| core-config.yaml | .claude/settings.json | Sigil |
101+
| Python hooks (monitor/) | Native hooks (command/http/prompt/agent) | Latch |
102+
| Quality gates | Hook-based validation | Latch + Sigil |
103+
| Entity registry | Tool Search + MCP registry | Piper |
104+
105+
## Directory Structure
106+
107+
```
108+
squads/claude-code-mastery/
109+
├── config.yaml # Squad configuration and tier architecture
110+
├── README.md # This file
111+
├── agents/
112+
│ ├── claude-mastery-chief.md # Tier 0: Orchestrator (Orion)
113+
│ ├── hooks-architect.md # Tier 1: Hooks (Latch)
114+
│ ├── mcp-integrator.md # Tier 1: MCP (Piper)
115+
│ ├── swarm-orchestrator.md # Tier 1: Subagents/Teams (Nexus)
116+
│ ├── config-engineer.md # Tier 1: Settings/Config (Sigil)
117+
│ ├── skill-craftsman.md # Tier 2: Skills/Plugins (Anvil)
118+
│ ├── project-integrator.md # Tier 2: Integration (Conduit)
119+
│ └── roadmap-sentinel.md # Tier 2: Roadmap (Vigil)
120+
├── tasks/ # Squad-specific tasks
121+
├── workflows/ # Multi-phase workflows
122+
├── templates/ # Output templates
123+
├── data/ # Reference data
124+
├── scripts/ # Utility scripts
125+
└── outputs/
126+
└── minds/ # Mind DNA extractions
127+
```
128+
129+
## Quality Metrics
130+
131+
| Metric | Value |
132+
|--------|-------|
133+
| Total agents | 8 |
134+
| Total lines | 6,741 |
135+
| Avg lines/agent | 843 |
136+
| Tier 0 coverage | 1 orchestrator |
137+
| Tier 1 coverage | 4 core specialists |
138+
| Tier 2 coverage | 3 strategic specialists |
139+
| Minds cloned | 8 (from 7 distinct sources) |
140+
| Research iterations | 3 (with devil's advocate) |
141+
| Naming collisions fixed | 2 (Piper, Sigil) |
142+
143+
---
144+
145+
*Claude Code Mastery Squad v1.0 — Created by Squad Architect*
146+
*Philosophy: "Master the tool to master the craft."*

0 commit comments

Comments
 (0)