sinapse-ai 7.0.5 → 7.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.sinapse-ai/core-config.yaml +2 -26
- package/.sinapse-ai/data/entity-registry.yaml +742 -917
- package/.sinapse-ai/data/registry-update-log.jsonl +22 -0
- package/.sinapse-ai/infrastructure/scripts/ide-sync/index.js +1 -49
- package/.sinapse-ai/infrastructure/scripts/validate-parity.js +0 -7
- package/.sinapse-ai/install-manifest.yaml +11 -43
- package/README.en.md +6 -11
- package/README.md +6 -11
- package/bin/cli.js +116 -75
- package/bin/modules/env-config.js +1 -2
- package/bin/sinapse-init.js +23 -188
- package/docs/ide-integration.md +22 -263
- package/docs/installation/README.md +4 -6
- package/docs/installation/faq.md +10 -33
- package/docs/installation/linux.md +0 -23
- package/docs/installation/macos.md +0 -10
- package/docs/installation/troubleshooting.md +5 -9
- package/docs/installation/v4-quick-start.md +1 -1
- package/docs/installation/windows.md +0 -18
- package/package.json +2 -9
- package/packages/installer/src/config/ide-configs.js +3 -49
- package/squads/claude-code-mastery/CHANGELOG.md +22 -0
- package/squads/claude-code-mastery/README.md +146 -0
- package/squads/claude-code-mastery/agents/claude-mastery-chief.md +554 -0
- package/squads/claude-code-mastery/agents/config-engineer.md +865 -0
- package/squads/claude-code-mastery/agents/hooks-architect.md +1013 -0
- package/squads/claude-code-mastery/agents/mcp-integrator.md +791 -0
- package/squads/claude-code-mastery/agents/project-integrator.md +1196 -0
- package/squads/claude-code-mastery/agents/roadmap-sentinel.md +931 -0
- package/squads/claude-code-mastery/agents/skill-craftsman.md +1250 -0
- package/squads/claude-code-mastery/agents/swarm-orqx.md +1008 -0
- package/squads/claude-code-mastery/checklists/agent-team-readiness-checklist.md +88 -0
- package/squads/claude-code-mastery/checklists/brownfield-readiness-checklist.md +91 -0
- package/squads/claude-code-mastery/checklists/change-checklist.md +75 -0
- package/squads/claude-code-mastery/checklists/context-rot-checklist.md +114 -0
- package/squads/claude-code-mastery/checklists/integration-audit-checklist.md +104 -0
- package/squads/claude-code-mastery/checklists/multi-agent-review-checklist.md +77 -0
- package/squads/claude-code-mastery/checklists/pre-push-checklist.md +79 -0
- package/squads/claude-code-mastery/data/ci-cd-patterns.yaml +412 -0
- package/squads/claude-code-mastery/data/claude-code-quick-ref.yaml +314 -0
- package/squads/claude-code-mastery/data/hook-patterns.yaml +512 -0
- package/squads/claude-code-mastery/data/mcp-integration-catalog.yaml +323 -0
- package/squads/claude-code-mastery/data/project-type-signatures.yaml +335 -0
- package/squads/claude-code-mastery/scripts/validate-setup.js +163 -0
- package/squads/claude-code-mastery/squad.yaml +205 -0
- package/squads/claude-code-mastery/tasks/audit-integration.md +219 -0
- package/squads/claude-code-mastery/tasks/audit-settings.md +206 -0
- package/squads/claude-code-mastery/tasks/audit-setup.md +225 -0
- package/squads/claude-code-mastery/tasks/brownfield-setup.md +322 -0
- package/squads/claude-code-mastery/tasks/ci-cd-setup.md +335 -0
- package/squads/claude-code-mastery/tasks/claude-md-engineer.md +334 -0
- package/squads/claude-code-mastery/tasks/configure-claude-code.md +215 -0
- package/squads/claude-code-mastery/tasks/context-rot-audit.md +329 -0
- package/squads/claude-code-mastery/tasks/create-agent-definition.md +278 -0
- package/squads/claude-code-mastery/tasks/create-rules.md +206 -0
- package/squads/claude-code-mastery/tasks/create-team-topology.md +258 -0
- package/squads/claude-code-mastery/tasks/diagnose.md +166 -0
- package/squads/claude-code-mastery/tasks/enterprise-config.md +346 -0
- package/squads/claude-code-mastery/tasks/hook-designer.md +272 -0
- package/squads/claude-code-mastery/tasks/integrate-project.md +304 -0
- package/squads/claude-code-mastery/tasks/mcp-integration-plan.md +229 -0
- package/squads/claude-code-mastery/tasks/mcp-workflow.md +285 -0
- package/squads/claude-code-mastery/tasks/multi-project-setup.md +228 -0
- package/squads/claude-code-mastery/tasks/optimize-context.md +217 -0
- package/squads/claude-code-mastery/tasks/optimize-workflow.md +226 -0
- package/squads/claude-code-mastery/tasks/parallel-decomposition.md +293 -0
- package/squads/claude-code-mastery/tasks/permission-strategy.md +266 -0
- package/squads/claude-code-mastery/tasks/sandbox-setup.md +279 -0
- package/squads/claude-code-mastery/tasks/setup-repository.md +230 -0
- package/squads/claude-code-mastery/tasks/setup-wizard.md +236 -0
- package/squads/claude-code-mastery/tasks/worktree-strategy.md +320 -0
- package/squads/claude-code-mastery/templates/claude-md-fullstack.md +147 -0
- package/squads/claude-code-mastery/templates/claude-md-library.md +175 -0
- package/squads/claude-code-mastery/templates/claude-md-microservices.md +186 -0
- package/squads/claude-code-mastery/templates/claude-md-mobile.md +198 -0
- package/squads/claude-code-mastery/templates/claude-md-monorepo.md +139 -0
- package/squads/claude-code-mastery/templates/github-actions-claude-ci.yml +348 -0
- package/squads/claude-code-mastery/templates/github-actions-claude-review.yml +179 -0
- package/squads/claude-code-mastery/workflows/wf-audit-complete.yaml +140 -0
- package/squads/claude-code-mastery/workflows/wf-knowledge-update.yaml +165 -0
- package/squads/claude-code-mastery/workflows/wf-project-setup.yaml +192 -0
- package/.sinapse-ai/infrastructure/scripts/ide-sync/transformers/antigravity.js +0 -105
- package/.sinapse-ai/infrastructure/scripts/ide-sync/transformers/cursor.js +0 -94
- package/.sinapse-ai/infrastructure/scripts/ide-sync/transformers/github-copilot.js +0 -184
- package/.sinapse-ai/infrastructure/scripts/validate-gemini-integration.js +0 -151
- package/.sinapse-ai/product/templates/ide-rules/antigravity-rules.md +0 -115
- package/.sinapse-ai/product/templates/ide-rules/copilot-rules.md +0 -92
- package/.sinapse-ai/product/templates/ide-rules/cursor-rules.md +0 -115
- package/.sinapse-ai/product/templates/ide-rules/gemini-rules.md +0 -87
- package/docs/pt/platforms/antigravity.md +0 -508
- package/docs/pt/platforms/cursor.md +0 -633
- package/docs/pt/platforms/gemini-cli.md +0 -481
- package/docs/pt/platforms/github-copilot.md +0 -478
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "sinapse-ai",
|
|
3
|
-
"version": "7.0
|
|
3
|
+
"version": "7.2.0",
|
|
4
4
|
"description": "SINAPSE AI: Framework de orquestracao de IA — 18 squads, 174 agentes especializados",
|
|
5
5
|
"bin": {
|
|
6
6
|
"sinapse": "bin/sinapse.js",
|
|
@@ -21,6 +21,7 @@
|
|
|
21
21
|
".claude/rules/",
|
|
22
22
|
".claude/hooks/",
|
|
23
23
|
"squads/squad-*/**",
|
|
24
|
+
"squads/claude-code-mastery/**",
|
|
24
25
|
"squads/sinapse/**",
|
|
25
26
|
"sinapse/**",
|
|
26
27
|
"install-squads.sh",
|
|
@@ -67,17 +68,10 @@
|
|
|
67
68
|
"sync:ide:check": "node .sinapse-ai/infrastructure/scripts/ide-sync/index.js validate --strict",
|
|
68
69
|
"sync:ide:claude": "node .sinapse-ai/infrastructure/scripts/ide-sync/index.js sync --ide claude-code",
|
|
69
70
|
"sync:ide:codex": "node .sinapse-ai/infrastructure/scripts/ide-sync/index.js sync --ide codex",
|
|
70
|
-
"sync:ide:gemini": "node .sinapse-ai/infrastructure/scripts/ide-sync/index.js sync --ide gemini",
|
|
71
|
-
"sync:ide:github-copilot": "node .sinapse-ai/infrastructure/scripts/ide-sync/index.js sync --ide github-copilot",
|
|
72
|
-
"sync:ide:antigravity": "node .sinapse-ai/infrastructure/scripts/ide-sync/index.js sync --ide antigravity",
|
|
73
71
|
"validate:claude-sync": "node .sinapse-ai/infrastructure/scripts/ide-sync/index.js validate --ide claude-code --strict",
|
|
74
72
|
"validate:claude-integration": "node .sinapse-ai/infrastructure/scripts/validate-claude-integration.js",
|
|
75
73
|
"validate:codex-sync": "node .sinapse-ai/infrastructure/scripts/ide-sync/index.js validate --ide codex --strict",
|
|
76
74
|
"validate:codex-integration": "node .sinapse-ai/infrastructure/scripts/validate-codex-integration.js",
|
|
77
|
-
"validate:gemini-sync": "node .sinapse-ai/infrastructure/scripts/ide-sync/index.js validate --ide gemini --strict",
|
|
78
|
-
"validate:github-copilot-sync": "node .sinapse-ai/infrastructure/scripts/ide-sync/index.js validate --ide github-copilot --strict",
|
|
79
|
-
"validate:antigravity-sync": "node .sinapse-ai/infrastructure/scripts/ide-sync/index.js validate --ide antigravity --strict",
|
|
80
|
-
"validate:gemini-integration": "node .sinapse-ai/infrastructure/scripts/validate-gemini-integration.js",
|
|
81
75
|
"sync:skills:codex": "node .sinapse-ai/infrastructure/scripts/codex-skills-sync/index.js",
|
|
82
76
|
"sync:skills:codex:global": "node .sinapse-ai/infrastructure/scripts/codex-skills-sync/index.js --global --global-only",
|
|
83
77
|
"validate:codex-skills": "node .sinapse-ai/infrastructure/scripts/codex-skills-sync/validate.js --strict",
|
|
@@ -85,7 +79,6 @@
|
|
|
85
79
|
"validate:parity": "node .sinapse-ai/infrastructure/scripts/validate-parity.js",
|
|
86
80
|
"validate:semantic-lint": "node scripts/semantic-lint.js",
|
|
87
81
|
"manifest:ensure": "node scripts/ensure-manifest.js",
|
|
88
|
-
"sync:ide:cursor": "node .sinapse-ai/infrastructure/scripts/ide-sync/index.js sync --ide cursor",
|
|
89
82
|
"validate:publish": "node bin/utils/validate-publish.js",
|
|
90
83
|
"brand": "node scripts/sinapse-patch.js",
|
|
91
84
|
"prepublishOnly": "node bin/utils/validate-publish.js && npm run generate:manifest && npm run validate:manifest",
|
|
@@ -25,13 +25,9 @@ const path = require('path');
|
|
|
25
25
|
/**
|
|
26
26
|
* IDE Configuration Metadata
|
|
27
27
|
*
|
|
28
|
-
* SINAPSE v4 supports
|
|
28
|
+
* SINAPSE v4 supports 2 main IDEs:
|
|
29
29
|
* - Claude Code (Anthropic's official CLI) - Recommended
|
|
30
30
|
* - Codex CLI (OpenAI coding CLI)
|
|
31
|
-
* - Gemini CLI (Google AI coding CLI)
|
|
32
|
-
* - Cursor (AI-first code editor)
|
|
33
|
-
* - GitHub Copilot (GitHub's AI pair programmer)
|
|
34
|
-
* - AntiGravity (Google agentic platform)
|
|
35
31
|
*/
|
|
36
32
|
const IDE_CONFIGS = {
|
|
37
33
|
'claude-code': {
|
|
@@ -47,55 +43,13 @@ const IDE_CONFIGS = {
|
|
|
47
43
|
codex: {
|
|
48
44
|
name: 'Codex CLI',
|
|
49
45
|
description: '',
|
|
50
|
-
configFile: '
|
|
46
|
+
configFile: '.codex/instructions.md',
|
|
51
47
|
template: 'ide-rules/codex-rules.md',
|
|
52
|
-
requiresDirectory:
|
|
48
|
+
requiresDirectory: true,
|
|
53
49
|
format: 'text',
|
|
54
50
|
recommended: true,
|
|
55
51
|
agentFolder: path.join('.codex', 'agents'),
|
|
56
52
|
},
|
|
57
|
-
gemini: {
|
|
58
|
-
name: 'Gemini CLI',
|
|
59
|
-
description: '',
|
|
60
|
-
configFile: path.join('.gemini', 'rules.md'),
|
|
61
|
-
template: 'ide-rules/gemini-rules.md',
|
|
62
|
-
requiresDirectory: true,
|
|
63
|
-
format: 'text',
|
|
64
|
-
agentFolder: path.join('.gemini', 'rules', 'SINAPSE', 'agents'),
|
|
65
|
-
},
|
|
66
|
-
cursor: {
|
|
67
|
-
name: 'Cursor',
|
|
68
|
-
description: '',
|
|
69
|
-
configFile: path.join('.cursor', 'rules.md'),
|
|
70
|
-
template: 'ide-rules/cursor-rules.md',
|
|
71
|
-
requiresDirectory: true,
|
|
72
|
-
format: 'text',
|
|
73
|
-
agentFolder: path.join('.cursor', 'rules'),
|
|
74
|
-
},
|
|
75
|
-
'github-copilot': {
|
|
76
|
-
name: 'GitHub Copilot',
|
|
77
|
-
description: '',
|
|
78
|
-
configFile: path.join('.github', 'copilot-instructions.md'),
|
|
79
|
-
template: 'ide-rules/copilot-rules.md',
|
|
80
|
-
requiresDirectory: true,
|
|
81
|
-
format: 'text',
|
|
82
|
-
agentFolder: path.join('.github', 'agents'),
|
|
83
|
-
},
|
|
84
|
-
antigravity: {
|
|
85
|
-
name: 'AntiGravity',
|
|
86
|
-
description: '',
|
|
87
|
-
configFile: path.join('.antigravity', 'rules.md'),
|
|
88
|
-
template: 'ide-rules/antigravity-rules.md',
|
|
89
|
-
requiresDirectory: true,
|
|
90
|
-
format: 'text',
|
|
91
|
-
agentFolder: path.join('.agent', 'workflows'),
|
|
92
|
-
specialConfig: {
|
|
93
|
-
type: 'antigravity',
|
|
94
|
-
configJsonPath: path.join('.antigravity', 'antigravity.json'),
|
|
95
|
-
workflowsFolder: path.join('.agent', 'workflows'),
|
|
96
|
-
agentsFolder: path.join('.antigravity', 'agents'),
|
|
97
|
-
},
|
|
98
|
-
},
|
|
99
53
|
};
|
|
100
54
|
|
|
101
55
|
/**
|
|
@@ -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-orqx (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
|
+
- SINAPSE 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 SINAPSE architecture
|
|
22
|
+
- Knowledge sources: Claude Code changelog, official docs, community resources
|
|
@@ -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-orqx | 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, SINAPSE 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 SINAPSE activation:
|
|
48
|
+
```
|
|
49
|
+
/SINAPSE:agents:claude-mastery-chief
|
|
50
|
+
```
|
|
51
|
+
|
|
52
|
+
### Direct Specialist Access
|
|
53
|
+
```
|
|
54
|
+
/SINAPSE:agents:hooks-architect # Hook automation
|
|
55
|
+
/SINAPSE:agents:mcp-integrator # MCP servers
|
|
56
|
+
/SINAPSE:agents:swarm-orqx # Multi-agent orchestration
|
|
57
|
+
/SINAPSE:agents:config-engineer # Settings & permissions
|
|
58
|
+
/SINAPSE:agents:skill-craftsman # Skills & plugins
|
|
59
|
+
/SINAPSE:agents:project-integrator # Project integration
|
|
60
|
+
/SINAPSE: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
|
+
| SINAPSE Bridge | Orion + Conduit | `*sinapse-bridge`, `*sinapse-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
|
+
## SINAPSE Integration
|
|
92
|
+
|
|
93
|
+
This squad understands both Claude Code native capabilities AND the SINAPSE framework:
|
|
94
|
+
|
|
95
|
+
| SINAPSE Concept | Claude Code Equivalent | Bridge Agent |
|
|
96
|
+
|-------------|----------------------|-------------|
|
|
97
|
+
| Agents (@developer, @qa...) | Subagents (.claude/agents/) | Nexus |
|
|
98
|
+
| Tasks (.sinapse-ai/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-orqx.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."*
|