thevoidforge-methodology 23.5.4 → 23.6.1
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/.claude/agents/silver-surfer-herald.md +41 -0
- package/.claude/commands/ai.md +9 -11
- package/.claude/commands/architect.md +9 -11
- package/.claude/commands/assemble.md +9 -11
- package/.claude/commands/assess.md +8 -10
- package/.claude/commands/build.md +9 -11
- package/.claude/commands/campaign.md +9 -11
- package/.claude/commands/deploy.md +8 -10
- package/.claude/commands/devops.md +9 -11
- package/.claude/commands/gauntlet.md +9 -11
- package/.claude/commands/qa.md +9 -11
- package/.claude/commands/review.md +9 -11
- package/.claude/commands/security.md +9 -11
- package/.claude/commands/test.md +9 -11
- package/.claude/commands/ux.md +9 -11
- package/CHANGELOG.md +24 -0
- package/CLAUDE.md +1 -1
- package/HOLOCRON.md +3 -3
- package/VERSION.md +3 -1
- package/docs/AGENT_CLASSIFICATION.md +3 -3
- package/docs/NAMING_REGISTRY.md +2 -1
- package/docs/methods/CAMPAIGN.md +1 -1
- package/docs/methods/GAUNTLET.md +1 -1
- package/docs/methods/MUSTER.md +1 -1
- package/docs/methods/QA_ENGINEER.md +1 -1
- package/docs/methods/SECURITY_AUDITOR.md +1 -1
- package/docs/methods/SUB_AGENTS.md +3 -3
- package/docs/methods/SYSTEMS_ARCHITECT.md +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: Silver Surfer
|
|
3
|
+
description: Herald pre-scan dispatch — reads codebase context and selects optimal agent roster via Haiku
|
|
4
|
+
model: haiku
|
|
5
|
+
tools:
|
|
6
|
+
- Read
|
|
7
|
+
- Grep
|
|
8
|
+
- Glob
|
|
9
|
+
- Bash
|
|
10
|
+
tags: [dispatch, herald, roster-selection, pre-scan]
|
|
11
|
+
---
|
|
12
|
+
|
|
13
|
+
# Silver Surfer — The Herald
|
|
14
|
+
|
|
15
|
+
**"All that you know is at an end."**
|
|
16
|
+
|
|
17
|
+
You are the Silver Surfer, Herald of Galactus. You scout ahead — reading the codebase, the command, and the user's intent — then summon the right agents for the mission. You don't fight; you select who fights. Your cosmic speed means you complete your scan in under 2 seconds for less than a fraction of a cent.
|
|
18
|
+
|
|
19
|
+
You are the bridge between the user's command and the full agent roster. Without you, every command deploys the same generic team. With you, every command gets a team tailored to the codebase.
|
|
20
|
+
|
|
21
|
+
## How You Work
|
|
22
|
+
|
|
23
|
+
1. Read the codebase file tree (top 80 files)
|
|
24
|
+
2. Read the PRD frontmatter (if exists)
|
|
25
|
+
3. Read the git diff summary (if uncommitted changes)
|
|
26
|
+
4. Read all 264 agent descriptions from the registry
|
|
27
|
+
5. Select every agent whose expertise is relevant to this codebase + this command
|
|
28
|
+
6. Output a JSON roster: `{ "roster": [...], "reasoning": "...", "estimatedAgents": N }`
|
|
29
|
+
|
|
30
|
+
## Operating Rules
|
|
31
|
+
|
|
32
|
+
- **Over-include, never under-include.** A false positive costs one sub-agent launch. A false negative costs a missed finding that requires another user prompt.
|
|
33
|
+
- **Bias toward the user's `--focus` topic** but don't exclude unrelated agents — cross-domain insights are the whole point.
|
|
34
|
+
- **Never remove the command's lead agents.** You add specialists; leads are non-negotiable.
|
|
35
|
+
- **If you can't run (no API key, timeout, error), return empty roster.** The command falls back to its hardcoded manifest. You are additive, never blocking.
|
|
36
|
+
|
|
37
|
+
## Required Context
|
|
38
|
+
|
|
39
|
+
- CLI entry: `npx thevoidforge herald --command /<name> --focus "<topic>" --json`
|
|
40
|
+
- Library: `packages/voidforge/wizard/lib/herald.ts`
|
|
41
|
+
- Registry: `packages/voidforge/wizard/lib/agent-registry.ts`
|
package/.claude/commands/ai.md
CHANGED
|
@@ -11,24 +11,22 @@ The AI Intelligence Audit reviews every LLM-powered component in your applicatio
|
|
|
11
11
|
|
|
12
12
|
## Dynamic Dispatch (ADR-044)
|
|
13
13
|
|
|
14
|
-
Opus scans `git diff --stat` and matches changed files against the `description` fields of all
|
|
14
|
+
Opus scans `git diff --stat` and matches changed files against the `description` fields of all 264 agents in `.claude/agents/`. Matching specialists launch alongside the core agents below.
|
|
15
15
|
|
|
16
16
|
**Dispatch control:** `--light` skips dynamic dispatch (core only). `--solo` runs lead agent only.
|
|
17
17
|
|
|
18
|
-
##
|
|
18
|
+
## Silver Surfer Pre-Scan (ADR-048)
|
|
19
19
|
|
|
20
|
-
Before agent deployment,
|
|
20
|
+
Before agent deployment, the Silver Surfer selects the optimal roster:
|
|
21
21
|
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
3. Call `runHerald(context, registry)` to get the optimal roster
|
|
25
|
-
4. Merge Herald's roster with this command's hardcoded lead agents (Herald adds, never removes leads)
|
|
26
|
-
5. Deploy the merged roster per the command's normal parallel/sequential protocol
|
|
22
|
+
Run: `npx thevoidforge herald --command /ai --json`
|
|
23
|
+
(Add `--focus "<topic>"` if the user provided `--focus`)
|
|
27
24
|
|
|
28
|
-
|
|
25
|
+
Parse the JSON output. The `roster` array contains agent IDs to deploy alongside this command's lead agents. If the command fails or returns an empty roster, use the hardcoded manifest below.
|
|
29
26
|
|
|
30
|
-
**`--
|
|
31
|
-
**`--
|
|
27
|
+
**`--focus "topic"`** biases the Surfer toward agents matching the topic.
|
|
28
|
+
**`--light`** skips the Surfer — uses only hardcoded core roster.
|
|
29
|
+
**`--solo`** skips Surfer and all sub-agents — lead only.
|
|
32
30
|
|
|
33
31
|
## Phase 0 — AI Surface Map (`subagent_type: Seldon`)
|
|
34
32
|
|
|
@@ -4,26 +4,24 @@
|
|
|
4
4
|
|
|
5
5
|
## Dynamic Dispatch (ADR-044)
|
|
6
6
|
|
|
7
|
-
Opus scans `git diff --stat` and matches changed files against the `description` fields of all
|
|
7
|
+
Opus scans `git diff --stat` and matches changed files against the `description` fields of all 264 agents in `.claude/agents/`. Matching specialists launch alongside the core agents below.
|
|
8
8
|
|
|
9
9
|
**Dispatch control:** `--light` skips dynamic dispatch (core only). `--solo` runs lead agent only.
|
|
10
10
|
|
|
11
11
|
**Promoted agent:** **Riker** `subagent_type: Riker` runs on every ADR written — challenges trade-offs.
|
|
12
12
|
|
|
13
|
-
##
|
|
13
|
+
## Silver Surfer Pre-Scan (ADR-048)
|
|
14
14
|
|
|
15
|
-
Before agent deployment,
|
|
15
|
+
Before agent deployment, the Silver Surfer selects the optimal roster:
|
|
16
16
|
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
3. Call `runHerald(context, registry)` to get the optimal roster
|
|
20
|
-
4. Merge Herald's roster with this command's hardcoded lead agents (Herald adds, never removes leads)
|
|
21
|
-
5. Deploy the merged roster per the command's normal parallel/sequential protocol
|
|
17
|
+
Run: `npx thevoidforge herald --command /architect --json`
|
|
18
|
+
(Add `--focus "<topic>"` if the user provided `--focus`)
|
|
22
19
|
|
|
23
|
-
|
|
20
|
+
Parse the JSON output. The `roster` array contains agent IDs to deploy alongside this command's lead agents. If the command fails or returns an empty roster, use the hardcoded manifest below.
|
|
24
21
|
|
|
25
|
-
**`--
|
|
26
|
-
**`--
|
|
22
|
+
**`--focus "topic"`** biases the Surfer toward agents matching the topic.
|
|
23
|
+
**`--light`** skips the Surfer — uses only hardcoded core roster.
|
|
24
|
+
**`--solo`** skips Surfer and all sub-agents — lead only.
|
|
27
25
|
|
|
28
26
|
## Context Setup
|
|
29
27
|
1. Read `/logs/build-state.md` — understand current project state
|
|
@@ -9,24 +9,22 @@ Avengers, assemble. Full pipeline from architecture to launch — one command to
|
|
|
9
9
|
|
|
10
10
|
## Dynamic Dispatch (ADR-044)
|
|
11
11
|
|
|
12
|
-
Opus scans `git diff --stat` and matches changed files against the `description` fields of all
|
|
12
|
+
Opus scans `git diff --stat` and matches changed files against the `description` fields of all 264 agents in `.claude/agents/`. Matching specialists launch alongside the core agents below.
|
|
13
13
|
|
|
14
14
|
**Dispatch control:** `--light` skips dynamic dispatch (core only). `--solo` runs lead agent only.
|
|
15
15
|
|
|
16
|
-
##
|
|
16
|
+
## Silver Surfer Pre-Scan (ADR-048)
|
|
17
17
|
|
|
18
|
-
Before agent deployment,
|
|
18
|
+
Before agent deployment, the Silver Surfer selects the optimal roster:
|
|
19
19
|
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
3. Call `runHerald(context, registry)` to get the optimal roster
|
|
23
|
-
4. Merge Herald's roster with this command's hardcoded lead agents (Herald adds, never removes leads)
|
|
24
|
-
5. Deploy the merged roster per the command's normal parallel/sequential protocol
|
|
20
|
+
Run: `npx thevoidforge herald --command /assemble --json`
|
|
21
|
+
(Add `--focus "<topic>"` if the user provided `--focus`)
|
|
25
22
|
|
|
26
|
-
|
|
23
|
+
Parse the JSON output. The `roster` array contains agent IDs to deploy alongside this command's lead agents. If the command fails or returns an empty roster, use the hardcoded manifest below.
|
|
27
24
|
|
|
28
|
-
**`--
|
|
29
|
-
**`--
|
|
25
|
+
**`--focus "topic"`** biases the Surfer toward agents matching the topic.
|
|
26
|
+
**`--light`** skips the Surfer — uses only hardcoded core roster.
|
|
27
|
+
**`--solo`** skips Surfer and all sub-agents — lead only.
|
|
30
28
|
|
|
31
29
|
## Agent Deployment Manifest — The Full Initiative
|
|
32
30
|
|
|
@@ -2,20 +2,18 @@
|
|
|
2
2
|
|
|
3
3
|
Evaluate an existing codebase before a rebuild, migration, or VoidForge onboarding. Chains architecture review, assessment-mode Gauntlet, and PRD gap analysis into a unified "State of the Codebase" report.
|
|
4
4
|
|
|
5
|
-
##
|
|
5
|
+
## Silver Surfer Pre-Scan (ADR-048)
|
|
6
6
|
|
|
7
|
-
Before agent deployment,
|
|
7
|
+
Before agent deployment, the Silver Surfer selects the optimal roster:
|
|
8
8
|
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
3. Call `runHerald(context, registry)` to get the optimal roster
|
|
12
|
-
4. Merge Herald's roster with this command's hardcoded lead agents (Herald adds, never removes leads)
|
|
13
|
-
5. Deploy the merged roster per the command's normal parallel/sequential protocol
|
|
9
|
+
Run: `npx thevoidforge herald --command /assess --json`
|
|
10
|
+
(Add `--focus "<topic>"` if the user provided `--focus`)
|
|
14
11
|
|
|
15
|
-
|
|
12
|
+
Parse the JSON output. The `roster` array contains agent IDs to deploy alongside this command's lead agents. If the command fails or returns an empty roster, use the hardcoded manifest below.
|
|
16
13
|
|
|
17
|
-
**`--
|
|
18
|
-
**`--
|
|
14
|
+
**`--focus "topic"`** biases the Surfer toward agents matching the topic.
|
|
15
|
+
**`--light`** skips the Surfer — uses only hardcoded core roster.
|
|
16
|
+
**`--solo`** skips Surfer and all sub-agents — lead only.
|
|
19
17
|
|
|
20
18
|
## Context Setup
|
|
21
19
|
1. Read `/logs/build-state.md` if it exists — understand current project state
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
## Dynamic Dispatch (ADR-044)
|
|
4
4
|
|
|
5
|
-
Opus scans `git diff --stat` and matches changed files against the `description` fields of all
|
|
5
|
+
Opus scans `git diff --stat` and matches changed files against the `description` fields of all 264 agents in `.claude/agents/`. Matching specialists launch alongside the core agents below.
|
|
6
6
|
|
|
7
7
|
**Dispatch control:** `--light` skips dynamic dispatch (core only). `--solo` runs lead agent only.
|
|
8
8
|
|
|
@@ -10,20 +10,18 @@ Opus scans `git diff --stat` and matches changed files against the `description`
|
|
|
10
10
|
- **Troi** `subagent_type: Troi` runs after every build mission completion — catches PRD drift before it compounds.
|
|
11
11
|
- **Riker** `subagent_type: Riker` runs whenever an ADR is written during the build — prevents rubber-stamped decisions.
|
|
12
12
|
|
|
13
|
-
##
|
|
13
|
+
## Silver Surfer Pre-Scan (ADR-048)
|
|
14
14
|
|
|
15
|
-
Before agent deployment,
|
|
15
|
+
Before agent deployment, the Silver Surfer selects the optimal roster:
|
|
16
16
|
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
3. Call `runHerald(context, registry)` to get the optimal roster
|
|
20
|
-
4. Merge Herald's roster with this command's hardcoded lead agents (Herald adds, never removes leads)
|
|
21
|
-
5. Deploy the merged roster per the command's normal parallel/sequential protocol
|
|
17
|
+
Run: `npx thevoidforge herald --command /build --json`
|
|
18
|
+
(Add `--focus "<topic>"` if the user provided `--focus`)
|
|
22
19
|
|
|
23
|
-
|
|
20
|
+
Parse the JSON output. The `roster` array contains agent IDs to deploy alongside this command's lead agents. If the command fails or returns an empty roster, use the hardcoded manifest below.
|
|
24
21
|
|
|
25
|
-
**`--
|
|
26
|
-
**`--
|
|
22
|
+
**`--focus "topic"`** biases the Surfer toward agents matching the topic.
|
|
23
|
+
**`--light`** skips the Surfer — uses only hardcoded core roster.
|
|
24
|
+
**`--solo`** skips Surfer and all sub-agents — lead only.
|
|
27
25
|
|
|
28
26
|
## Context Setup
|
|
29
27
|
1. Read `/logs/build-state.md` — if it exists, resume from current phase
|
|
@@ -49,24 +49,22 @@ After planning mode completes, the user can run `/campaign` (no flags) to start
|
|
|
49
49
|
|
|
50
50
|
## Dynamic Dispatch (ADR-044)
|
|
51
51
|
|
|
52
|
-
Opus scans `git diff --stat` and matches changed files against the `description` fields of all
|
|
52
|
+
Opus scans `git diff --stat` and matches changed files against the `description` fields of all 264 agents in `.claude/agents/`. Matching specialists launch alongside the core agents below.
|
|
53
53
|
|
|
54
54
|
**Dispatch control:** `--light` skips dynamic dispatch (core only). `--solo` runs lead agent only.
|
|
55
55
|
|
|
56
|
-
##
|
|
56
|
+
## Silver Surfer Pre-Scan (ADR-048)
|
|
57
57
|
|
|
58
|
-
Before agent deployment,
|
|
58
|
+
Before agent deployment, the Silver Surfer selects the optimal roster:
|
|
59
59
|
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
3. Call `runHerald(context, registry)` to get the optimal roster
|
|
63
|
-
4. Merge Herald's roster with this command's hardcoded lead agents (Herald adds, never removes leads)
|
|
64
|
-
5. Deploy the merged roster per the command's normal parallel/sequential protocol
|
|
60
|
+
Run: `npx thevoidforge herald --command /campaign --json`
|
|
61
|
+
(Add `--focus "<topic>"` if the user provided `--focus`)
|
|
65
62
|
|
|
66
|
-
|
|
63
|
+
Parse the JSON output. The `roster` array contains agent IDs to deploy alongside this command's lead agents. If the command fails or returns an empty roster, use the hardcoded manifest below.
|
|
67
64
|
|
|
68
|
-
**`--
|
|
69
|
-
**`--
|
|
65
|
+
**`--focus "topic"`** biases the Surfer toward agents matching the topic.
|
|
66
|
+
**`--light`** skips the Surfer — uses only hardcoded core roster.
|
|
67
|
+
**`--solo`** skips Surfer and all sub-agents — lead only.
|
|
70
68
|
|
|
71
69
|
## Execution Mode (default)
|
|
72
70
|
|
|
@@ -4,20 +4,18 @@
|
|
|
4
4
|
|
|
5
5
|
Read `/docs/methods/DEVOPS_ENGINEER.md` for operating rules (see "Deploy Automation" section).
|
|
6
6
|
|
|
7
|
-
##
|
|
7
|
+
## Silver Surfer Pre-Scan (ADR-048)
|
|
8
8
|
|
|
9
|
-
Before agent deployment,
|
|
9
|
+
Before agent deployment, the Silver Surfer selects the optimal roster:
|
|
10
10
|
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
3. Call `runHerald(context, registry)` to get the optimal roster
|
|
14
|
-
4. Merge Herald's roster with this command's hardcoded lead agents (Herald adds, never removes leads)
|
|
15
|
-
5. Deploy the merged roster per the command's normal parallel/sequential protocol
|
|
11
|
+
Run: `npx thevoidforge herald --command /deploy --json`
|
|
12
|
+
(Add `--focus "<topic>"` if the user provided `--focus`)
|
|
16
13
|
|
|
17
|
-
|
|
14
|
+
Parse the JSON output. The `roster` array contains agent IDs to deploy alongside this command's lead agents. If the command fails or returns an empty roster, use the hardcoded manifest below.
|
|
18
15
|
|
|
19
|
-
**`--
|
|
20
|
-
**`--
|
|
16
|
+
**`--focus "topic"`** biases the Surfer toward agents matching the topic.
|
|
17
|
+
**`--light`** skips the Surfer — uses only hardcoded core roster.
|
|
18
|
+
**`--solo`** skips Surfer and all sub-agents — lead only.
|
|
21
19
|
|
|
22
20
|
## Context Setup
|
|
23
21
|
1. Read PRD frontmatter for `deploy:` target (vps, vercel, railway, docker, static, cloudflare)
|
|
@@ -7,24 +7,22 @@
|
|
|
7
7
|
|
|
8
8
|
## Dynamic Dispatch (ADR-044)
|
|
9
9
|
|
|
10
|
-
Opus scans `git diff --stat` and matches changed files against the `description` fields of all
|
|
10
|
+
Opus scans `git diff --stat` and matches changed files against the `description` fields of all 264 agents in `.claude/agents/`. Matching specialists launch alongside the core agents below.
|
|
11
11
|
|
|
12
12
|
**Dispatch control:** `--light` skips dynamic dispatch (core only). `--solo` runs lead agent only.
|
|
13
13
|
|
|
14
|
-
##
|
|
14
|
+
## Silver Surfer Pre-Scan (ADR-048)
|
|
15
15
|
|
|
16
|
-
Before agent deployment,
|
|
16
|
+
Before agent deployment, the Silver Surfer selects the optimal roster:
|
|
17
17
|
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
3. Call `runHerald(context, registry)` to get the optimal roster
|
|
21
|
-
4. Merge Herald's roster with this command's hardcoded lead agents (Herald adds, never removes leads)
|
|
22
|
-
5. Deploy the merged roster per the command's normal parallel/sequential protocol
|
|
18
|
+
Run: `npx thevoidforge herald --command /devops --json`
|
|
19
|
+
(Add `--focus "<topic>"` if the user provided `--focus`)
|
|
23
20
|
|
|
24
|
-
|
|
21
|
+
Parse the JSON output. The `roster` array contains agent IDs to deploy alongside this command's lead agents. If the command fails or returns an empty roster, use the hardcoded manifest below.
|
|
25
22
|
|
|
26
|
-
**`--
|
|
27
|
-
**`--
|
|
23
|
+
**`--focus "topic"`** biases the Surfer toward agents matching the topic.
|
|
24
|
+
**`--light`** skips the Surfer — uses only hardcoded core roster.
|
|
25
|
+
**`--solo`** skips Surfer and all sub-agents — lead only.
|
|
28
26
|
|
|
29
27
|
## Agent Deployment Manifest
|
|
30
28
|
|
|
@@ -11,24 +11,22 @@ The Gauntlet tests everything. Every domain. Multiple rounds. Escalating intensi
|
|
|
11
11
|
|
|
12
12
|
## Dynamic Dispatch (ADR-044)
|
|
13
13
|
|
|
14
|
-
Opus scans `git diff --stat` and matches changed files against the `description` fields of all
|
|
14
|
+
Opus scans `git diff --stat` and matches changed files against the `description` fields of all 264 agents in `.claude/agents/`. Matching specialists launch alongside the core agents below.
|
|
15
15
|
|
|
16
16
|
**Dispatch control:** `--light` skips dynamic dispatch (core only). `--solo` runs lead agent only.
|
|
17
17
|
|
|
18
|
-
##
|
|
18
|
+
## Silver Surfer Pre-Scan (ADR-048)
|
|
19
19
|
|
|
20
|
-
Before agent deployment,
|
|
20
|
+
Before agent deployment, the Silver Surfer selects the optimal roster:
|
|
21
21
|
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
3. Call `runHerald(context, registry)` to get the optimal roster
|
|
25
|
-
4. Merge Herald's roster with this command's hardcoded lead agents (Herald adds, never removes leads)
|
|
26
|
-
5. Deploy the merged roster per the command's normal parallel/sequential protocol
|
|
22
|
+
Run: `npx thevoidforge herald --command /gauntlet --json`
|
|
23
|
+
(Add `--focus "<topic>"` if the user provided `--focus`)
|
|
27
24
|
|
|
28
|
-
|
|
25
|
+
Parse the JSON output. The `roster` array contains agent IDs to deploy alongside this command's lead agents. If the command fails or returns an empty roster, use the hardcoded manifest below.
|
|
29
26
|
|
|
30
|
-
**`--
|
|
31
|
-
**`--
|
|
27
|
+
**`--focus "topic"`** biases the Surfer toward agents matching the topic.
|
|
28
|
+
**`--light`** skips the Surfer — uses only hardcoded core roster.
|
|
29
|
+
**`--solo`** skips Surfer and all sub-agents — lead only.
|
|
32
30
|
|
|
33
31
|
## Round 1 — Discovery (parallel)
|
|
34
32
|
|
package/.claude/commands/qa.md
CHANGED
|
@@ -4,26 +4,24 @@
|
|
|
4
4
|
|
|
5
5
|
## Dynamic Dispatch (ADR-044)
|
|
6
6
|
|
|
7
|
-
Opus scans `git diff --stat` and matches changed files against the `description` fields of all
|
|
7
|
+
Opus scans `git diff --stat` and matches changed files against the `description` fields of all 264 agents in `.claude/agents/`. Matching specialists launch alongside the core agents below.
|
|
8
8
|
|
|
9
9
|
**Dispatch control:** `--light` skips dynamic dispatch (core only). `--solo` runs lead agent only.
|
|
10
10
|
|
|
11
11
|
**Promoted agent:** **Constantine** `subagent_type: Constantine` runs on every `/qa` final pass — finds code that works by accident.
|
|
12
12
|
|
|
13
|
-
##
|
|
13
|
+
## Silver Surfer Pre-Scan (ADR-048)
|
|
14
14
|
|
|
15
|
-
Before agent deployment,
|
|
15
|
+
Before agent deployment, the Silver Surfer selects the optimal roster:
|
|
16
16
|
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
3. Call `runHerald(context, registry)` to get the optimal roster
|
|
20
|
-
4. Merge Herald's roster with this command's hardcoded lead agents (Herald adds, never removes leads)
|
|
21
|
-
5. Deploy the merged roster per the command's normal parallel/sequential protocol
|
|
17
|
+
Run: `npx thevoidforge herald --command /qa --json`
|
|
18
|
+
(Add `--focus "<topic>"` if the user provided `--focus`)
|
|
22
19
|
|
|
23
|
-
|
|
20
|
+
Parse the JSON output. The `roster` array contains agent IDs to deploy alongside this command's lead agents. If the command fails or returns an empty roster, use the hardcoded manifest below.
|
|
24
21
|
|
|
25
|
-
**`--
|
|
26
|
-
**`--
|
|
22
|
+
**`--focus "topic"`** biases the Surfer toward agents matching the topic.
|
|
23
|
+
**`--light`** skips the Surfer — uses only hardcoded core roster.
|
|
24
|
+
**`--solo`** skips Surfer and all sub-agents — lead only.
|
|
27
25
|
|
|
28
26
|
## Context Setup
|
|
29
27
|
1. Read `/logs/build-state.md` — understand current project state
|
|
@@ -4,24 +4,22 @@
|
|
|
4
4
|
|
|
5
5
|
## Dynamic Dispatch (ADR-044)
|
|
6
6
|
|
|
7
|
-
Opus scans `git diff --stat` and matches changed files against the `description` fields of all
|
|
7
|
+
Opus scans `git diff --stat` and matches changed files against the `description` fields of all 264 agents in `.claude/agents/`. Matching specialists launch alongside the core agents below.
|
|
8
8
|
|
|
9
9
|
**Dispatch control:** `--light` skips dynamic dispatch (core only). `--solo` runs lead agent only.
|
|
10
10
|
|
|
11
|
-
##
|
|
11
|
+
## Silver Surfer Pre-Scan (ADR-048)
|
|
12
12
|
|
|
13
|
-
Before agent deployment,
|
|
13
|
+
Before agent deployment, the Silver Surfer selects the optimal roster:
|
|
14
14
|
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
3. Call `runHerald(context, registry)` to get the optimal roster
|
|
18
|
-
4. Merge Herald's roster with this command's hardcoded lead agents (Herald adds, never removes leads)
|
|
19
|
-
5. Deploy the merged roster per the command's normal parallel/sequential protocol
|
|
15
|
+
Run: `npx thevoidforge herald --command /review --json`
|
|
16
|
+
(Add `--focus "<topic>"` if the user provided `--focus`)
|
|
20
17
|
|
|
21
|
-
|
|
18
|
+
Parse the JSON output. The `roster` array contains agent IDs to deploy alongside this command's lead agents. If the command fails or returns an empty roster, use the hardcoded manifest below.
|
|
22
19
|
|
|
23
|
-
**`--
|
|
24
|
-
**`--
|
|
20
|
+
**`--focus "topic"`** biases the Surfer toward agents matching the topic.
|
|
21
|
+
**`--light`** skips the Surfer — uses only hardcoded core roster.
|
|
22
|
+
**`--solo`** skips Surfer and all sub-agents — lead only.
|
|
25
23
|
|
|
26
24
|
## Context Setup
|
|
27
25
|
1. Read `/logs/build-state.md` — understand current project state
|
|
@@ -4,24 +4,22 @@
|
|
|
4
4
|
|
|
5
5
|
## Dynamic Dispatch (ADR-044)
|
|
6
6
|
|
|
7
|
-
Opus scans `git diff --stat` and matches changed files against the `description` fields of all
|
|
7
|
+
Opus scans `git diff --stat` and matches changed files against the `description` fields of all 264 agents in `.claude/agents/`. Matching specialists launch alongside the core agents below.
|
|
8
8
|
|
|
9
9
|
**Dispatch control:** `--light` skips dynamic dispatch (core only). `--solo` runs lead agent only.
|
|
10
10
|
|
|
11
|
-
##
|
|
11
|
+
## Silver Surfer Pre-Scan (ADR-048)
|
|
12
12
|
|
|
13
|
-
Before agent deployment,
|
|
13
|
+
Before agent deployment, the Silver Surfer selects the optimal roster:
|
|
14
14
|
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
3. Call `runHerald(context, registry)` to get the optimal roster
|
|
18
|
-
4. Merge Herald's roster with this command's hardcoded lead agents (Herald adds, never removes leads)
|
|
19
|
-
5. Deploy the merged roster per the command's normal parallel/sequential protocol
|
|
15
|
+
Run: `npx thevoidforge herald --command /security --json`
|
|
16
|
+
(Add `--focus "<topic>"` if the user provided `--focus`)
|
|
20
17
|
|
|
21
|
-
|
|
18
|
+
Parse the JSON output. The `roster` array contains agent IDs to deploy alongside this command's lead agents. If the command fails or returns an empty roster, use the hardcoded manifest below.
|
|
22
19
|
|
|
23
|
-
**`--
|
|
24
|
-
**`--
|
|
20
|
+
**`--focus "topic"`** biases the Surfer toward agents matching the topic.
|
|
21
|
+
**`--light`** skips the Surfer — uses only hardcoded core roster.
|
|
22
|
+
**`--solo`** skips Surfer and all sub-agents — lead only.
|
|
25
23
|
|
|
26
24
|
## Context Setup
|
|
27
25
|
1. Read `/logs/build-state.md` — understand current project state
|
package/.claude/commands/test.md
CHANGED
|
@@ -9,24 +9,22 @@
|
|
|
9
9
|
|
|
10
10
|
## Dynamic Dispatch (ADR-044)
|
|
11
11
|
|
|
12
|
-
Opus scans `git diff --stat` and matches changed files against the `description` fields of all
|
|
12
|
+
Opus scans `git diff --stat` and matches changed files against the `description` fields of all 264 agents in `.claude/agents/`. Matching specialists launch alongside the core agents below.
|
|
13
13
|
|
|
14
14
|
**Dispatch control:** `--light` skips dynamic dispatch (core only). `--solo` runs lead agent only.
|
|
15
15
|
|
|
16
|
-
##
|
|
16
|
+
## Silver Surfer Pre-Scan (ADR-048)
|
|
17
17
|
|
|
18
|
-
Before agent deployment,
|
|
18
|
+
Before agent deployment, the Silver Surfer selects the optimal roster:
|
|
19
19
|
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
3. Call `runHerald(context, registry)` to get the optimal roster
|
|
23
|
-
4. Merge Herald's roster with this command's hardcoded lead agents (Herald adds, never removes leads)
|
|
24
|
-
5. Deploy the merged roster per the command's normal parallel/sequential protocol
|
|
20
|
+
Run: `npx thevoidforge herald --command /test --json`
|
|
21
|
+
(Add `--focus "<topic>"` if the user provided `--focus`)
|
|
25
22
|
|
|
26
|
-
|
|
23
|
+
Parse the JSON output. The `roster` array contains agent IDs to deploy alongside this command's lead agents. If the command fails or returns an empty roster, use the hardcoded manifest below.
|
|
27
24
|
|
|
28
|
-
**`--
|
|
29
|
-
**`--
|
|
25
|
+
**`--focus "topic"`** biases the Surfer toward agents matching the topic.
|
|
26
|
+
**`--light`** skips the Surfer — uses only hardcoded core roster.
|
|
27
|
+
**`--solo`** skips Surfer and all sub-agents — lead only.
|
|
30
28
|
|
|
31
29
|
## Step 0 — Orient
|
|
32
30
|
**Oracle** `subagent_type: Oracle` orients:
|
package/.claude/commands/ux.md
CHANGED
|
@@ -4,24 +4,22 @@
|
|
|
4
4
|
|
|
5
5
|
## Dynamic Dispatch (ADR-044)
|
|
6
6
|
|
|
7
|
-
Opus scans `git diff --stat` and matches changed files against the `description` fields of all
|
|
7
|
+
Opus scans `git diff --stat` and matches changed files against the `description` fields of all 264 agents in `.claude/agents/`. Matching specialists launch alongside the core agents below.
|
|
8
8
|
|
|
9
9
|
**Dispatch control:** `--light` skips dynamic dispatch (core only). `--solo` runs lead agent only.
|
|
10
10
|
|
|
11
|
-
##
|
|
11
|
+
## Silver Surfer Pre-Scan (ADR-048)
|
|
12
12
|
|
|
13
|
-
Before agent deployment,
|
|
13
|
+
Before agent deployment, the Silver Surfer selects the optimal roster:
|
|
14
14
|
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
3. Call `runHerald(context, registry)` to get the optimal roster
|
|
18
|
-
4. Merge Herald's roster with this command's hardcoded lead agents (Herald adds, never removes leads)
|
|
19
|
-
5. Deploy the merged roster per the command's normal parallel/sequential protocol
|
|
15
|
+
Run: `npx thevoidforge herald --command /ux --json`
|
|
16
|
+
(Add `--focus "<topic>"` if the user provided `--focus`)
|
|
20
17
|
|
|
21
|
-
|
|
18
|
+
Parse the JSON output. The `roster` array contains agent IDs to deploy alongside this command's lead agents. If the command fails or returns an empty roster, use the hardcoded manifest below.
|
|
22
19
|
|
|
23
|
-
**`--
|
|
24
|
-
**`--
|
|
20
|
+
**`--focus "topic"`** biases the Surfer toward agents matching the topic.
|
|
21
|
+
**`--light`** skips the Surfer — uses only hardcoded core roster.
|
|
22
|
+
**`--solo`** skips Surfer and all sub-agents — lead only.
|
|
25
23
|
|
|
26
24
|
## Context Setup
|
|
27
25
|
1. Read `/logs/build-state.md` — understand current project state
|
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,30 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/), and this
|
|
|
6
6
|
|
|
7
7
|
---
|
|
8
8
|
|
|
9
|
+
## [23.6.1] - 2026-04-12
|
|
10
|
+
|
|
11
|
+
### Fixed
|
|
12
|
+
- **30+ stale "263 agents" references** — updated to 264 across 13 command files, 8 method docs, HOLOCRON.md, AGENT_CLASSIFICATION.md, ROADMAP.md, wizard UI, herald.ts, SUB_AGENTS.md, and NAMING_REGISTRY.md. Gauntlet caught incomplete count propagation from Silver Surfer addition.
|
|
13
|
+
- **herald.ts ADR reference** — ADR-047 → ADR-048
|
|
14
|
+
|
|
15
|
+
---
|
|
16
|
+
|
|
17
|
+
## [23.6.0] - 2026-04-12
|
|
18
|
+
|
|
19
|
+
### The Silver Surfer (ADR-048, Campaign 38)
|
|
20
|
+
|
|
21
|
+
### Added
|
|
22
|
+
- **Silver Surfer** (Norrin Radd) — agent #264. Herald of Galactus. Pre-scan dispatch that reads codebase context and selects the optimal agent roster via Haiku.
|
|
23
|
+
- **`voidforge herald` CLI subcommand** — the invocation bridge. Runs the Silver Surfer pre-scan from the command line: `npx thevoidforge herald --command /review --json`. Outputs JSON roster for Claude to deploy.
|
|
24
|
+
- Silver Surfer agent definition with Haiku tier, scout tools, and dispatch tags.
|
|
25
|
+
|
|
26
|
+
### Changed
|
|
27
|
+
- All 14 major commands updated: "Herald Pre-Scan (ADR-047)" replaced with "Silver Surfer Pre-Scan (ADR-048)" using actual CLI invocation instead of pseudocode.
|
|
28
|
+
- Agent count: 263 → 264.
|
|
29
|
+
- CLAUDE.md and NAMING_REGISTRY.md updated with Silver Surfer identity.
|
|
30
|
+
|
|
31
|
+
---
|
|
32
|
+
|
|
9
33
|
## [23.5.4] - 2026-04-12
|
|
10
34
|
|
|
11
35
|
### Fixed
|
package/CLAUDE.md
CHANGED
|
@@ -234,7 +234,7 @@ See `/docs/methods/MUSTER.md` for the full Muster Protocol.
|
|
|
234
234
|
| Deploy Wizard | **Haku** (Anime) | Browser-based deploy wizard, infrastructure provisioning |
|
|
235
235
|
| Setup Wizard | **Gandalf** (Tolkien) | Project scaffolding, initialization, dependency setup |
|
|
236
236
|
|
|
237
|
-
|
|
237
|
+
264 sub-agent names in `/docs/NAMING_REGISTRY.md`. No duplicates across active sessions. All agents materialized as subagent definitions in `.claude/agents/` (ADR-044). Silver Surfer (ADR-048) dispatches the optimal roster via Haiku pre-scan.
|
|
238
238
|
|
|
239
239
|
## Distribution
|
|
240
240
|
|
package/HOLOCRON.md
CHANGED
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
|
|
25
25
|
### What VoidForge Is
|
|
26
26
|
|
|
27
|
-
VoidForge is a **methodology framework** for building full-stack applications with Claude Code. It's not a code template — it's a *process* template. Drop in a Product Requirements Document, and a named team of
|
|
27
|
+
VoidForge is a **methodology framework** for building full-stack applications with Claude Code. It's not a code template — it's a *process* template. Drop in a Product Requirements Document, and a named team of 264 AI agents across 9 fictional universes builds your application through a 13-phase protocol.
|
|
28
28
|
|
|
29
29
|
**From nothing, everything.**
|
|
30
30
|
|
|
@@ -82,7 +82,7 @@ Every tier includes:
|
|
|
82
82
|
- **28 slash commands** — `/prd`, `/blueprint`, `/build`, `/qa`, `/test`, `/security`, `/ux`, `/review`, `/deploy`, `/devops`, `/architect`, `/assess`, `/git`, `/void`, `/vault`, `/thumper`, `/assemble`, `/gauntlet`, `/campaign`, `/imagine`, `/debrief`, `/dangerroom`, `/cultivation`, `/grow`, `/current`, `/treasury`, `/portfolio`, `/ai`
|
|
83
83
|
- **13-phase build protocol** — PRD to production with verification gates
|
|
84
84
|
- **18 specialist agent protocols** — Each lead has behavioral directives and a sub-agent roster
|
|
85
|
-
- **
|
|
85
|
+
- **264 named characters** — From Tolkien, Marvel, DC, Star Wars, Star Trek, Dune, Anime, Cosmere, and Foundation — each materialized as a subagent definition in `.claude/agents/`
|
|
86
86
|
- **35 code patterns** — Reference implementations with framework adaptations (including E2E testing)
|
|
87
87
|
- **No Stubs Doctrine** — Zero placeholder code. Every file does what it claims. Enforced across all method docs.
|
|
88
88
|
- **E2E browser testing** — Playwright + axe-core. Agents take screenshots, capture console errors, and interact with running applications.
|
|
@@ -366,7 +366,7 @@ Each lead has a deep bench. Here are some standouts:
|
|
|
366
366
|
- **Idaho** keeps the connection alive — the eternal ghola who always returns
|
|
367
367
|
- **Thufir** parses every signal — Mentat precision, a million calculations per second
|
|
368
368
|
|
|
369
|
-
The full roster of
|
|
369
|
+
The full roster of 264 characters lives in `docs/NAMING_REGISTRY.md`. Each agent is materialized as a subagent definition in `.claude/agents/` with model tiering (Opus leads, Sonnet specialists, Haiku scouts) and tool restrictions (Builder, Reviewer, Scout, Adversarial). See `docs/AGENT_CLASSIFICATION.md` for the full manifest.
|
|
370
370
|
|
|
371
371
|
### How Handoffs Work
|
|
372
372
|
|
package/VERSION.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Version
|
|
2
2
|
|
|
3
|
-
**Current:** 23.
|
|
3
|
+
**Current:** 23.6.1
|
|
4
4
|
|
|
5
5
|
## Versioning Scheme
|
|
6
6
|
|
|
@@ -14,6 +14,8 @@ This project uses [Semantic Versioning](https://semver.org/):
|
|
|
14
14
|
|
|
15
15
|
| Version | Date | Summary |
|
|
16
16
|
|---------|------|---------|
|
|
17
|
+
| 23.6.1 | 2026-04-12 | Gauntlet fix: 30+ stale "263 agents" → 264 across commands, methods, docs |
|
|
18
|
+
| 23.6.0 | 2026-04-12 | The Silver Surfer — Herald invocation bridge, CLI subcommand, agent #264, end-to-end dispatch pipeline. ADR-048. Campaign 38. |
|
|
17
19
|
| 23.5.4 | 2026-04-12 | Command-doc sync: build.md Phase 12.75, ux.md screenshots, qa.md dynamic counts |
|
|
18
20
|
| 23.5.3 | 2026-04-12 | Fix 201 broken subagent_type refs (filename→YAML name) + /campaign as default start command |
|
|
19
21
|
| 23.5.2 | 2026-04-12 | /void auto-cleanup ~/.claude/ duplicates + git init stack trace fix |
|
|
@@ -7,13 +7,13 @@
|
|
|
7
7
|
|
|
8
8
|
| Metric | Count |
|
|
9
9
|
|--------|-------|
|
|
10
|
-
| **Total agents** | **
|
|
10
|
+
| **Total agents** | **264** |
|
|
11
11
|
| Leads (Opus/inherit, Builder) | 20 |
|
|
12
12
|
| Specialists (Sonnet, Reviewer) | 190 |
|
|
13
13
|
| Scouts (Haiku, Scout/Reviewer) | 38 |
|
|
14
14
|
| Adversarial (Sonnet, Adversarial) | 15 |
|
|
15
15
|
|
|
16
|
-
**Note:** The authoritative count from NAMING_REGISTRY.md is
|
|
16
|
+
**Note:** The authoritative count from NAMING_REGISTRY.md is 264. All methodology docs updated in M7. ADR-044 and ADR-042 retain their original "259" count as historical records.
|
|
17
17
|
|
|
18
18
|
## Tiers (Model Assignment)
|
|
19
19
|
|
|
@@ -468,7 +468,7 @@
|
|
|
468
468
|
| Dune | 1 | 14 | 4 | 2 | 21 |
|
|
469
469
|
| Cosmere | 2 | 16 | 0 | 0 | 18 |
|
|
470
470
|
| Foundation | 1 | 10 | 1 | 1 | 13 |
|
|
471
|
-
| **TOTAL** | **20** | **190** | **
|
|
471
|
+
| **TOTAL** | **20** | **190** | **39** | **15** | **264** |
|
|
472
472
|
|
|
473
473
|
## Riker's Review — Edge Case Challenges
|
|
474
474
|
|
package/docs/NAMING_REGISTRY.md
CHANGED
|
@@ -113,8 +113,9 @@
|
|
|
113
113
|
28. Jarvis — AI assistant, status reporting, progress summaries
|
|
114
114
|
|
|
115
115
|
29. Thanos — **Lead: The Gauntlet.** Comprehensive multi-round review. Tests every domain, every stone. "I am inevitable."
|
|
116
|
+
30. Silver Surfer (Norrin Radd) — **The Herald.** Pre-scan dispatch — reads codebase and selects optimal agent roster via Haiku. Scouts ahead, summons the right team. "All that you know is at an end."
|
|
116
117
|
|
|
117
|
-
**Reserved:** Stark (lead — backend), Coulson (lead — release), Fury (lead — the initiative), Thanos (lead — the gauntlet)
|
|
118
|
+
**Reserved:** Stark (lead — backend), Coulson (lead — release), Fury (lead — the initiative), Thanos (lead — the gauntlet), Silver Surfer (herald — dispatch)
|
|
118
119
|
|
|
119
120
|
---
|
|
120
121
|
|
package/docs/methods/CAMPAIGN.md
CHANGED
|
@@ -239,7 +239,7 @@ User confirms, redirects, or overrides. On confirm → Step 4.
|
|
|
239
239
|
|
|
240
240
|
**Post-infrastructure enforcement gate:** For infrastructure campaigns (deploy targets, CI/CD, monitoring, staging environments): after the infrastructure is provisioned, run `/architect --plan` to verify workflow enforcement gates exist — not just infrastructure existence. Infrastructure without process gates is incomplete.
|
|
241
241
|
|
|
242
|
-
**Dispatch model (ADR-044):** Per-mission `/assemble` runs SHOULD dispatch phases to sub-agents per `SUB_AGENTS.md` "Parallel Agent Standard." Agents are launched as named subagent types defined in `.claude/agents/` with description-driven dispatch — Opus scans `git diff --stat` and matches changed files against agent descriptions to auto-select specialists. The campaign orchestrator (main thread) manages the mission sequence, inter-mission gates, and campaign state — it does NOT perform inline code analysis. Pass findings summaries between missions, not raw code. See `docs/AGENT_CLASSIFICATION.md` for the full
|
|
242
|
+
**Dispatch model (ADR-044):** Per-mission `/assemble` runs SHOULD dispatch phases to sub-agents per `SUB_AGENTS.md` "Parallel Agent Standard." Agents are launched as named subagent types defined in `.claude/agents/` with description-driven dispatch — Opus scans `git diff --stat` and matches changed files against agent descriptions to auto-select specialists. The campaign orchestrator (main thread) manages the mission sequence, inter-mission gates, and campaign state — it does NOT perform inline code analysis. Pass findings summaries between missions, not raw code. See `docs/AGENT_CLASSIFICATION.md` for the full 264-agent manifest. (Field report #270)
|
|
243
243
|
|
|
244
244
|
### Campaign-Mode Pipeline
|
|
245
245
|
|
package/docs/methods/GAUNTLET.md
CHANGED
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
- When the project has significant attack surface (auth, payments, user data, WebSocket, file uploads)
|
|
19
19
|
- Before a public launch or investor demo
|
|
20
20
|
|
|
21
|
-
**Dispatch model:** All Gauntlet rounds MUST dispatch to sub-agents per `SUB_AGENTS.md` "Parallel Agent Standard." Agents are launched as named subagent types defined in `.claude/agents/` with model tiering (Opus leads, Sonnet specialists, Haiku scouts) and tool restrictions. The main thread manages rounds, triages findings between rounds, and applies fixes — it does NOT read source files or analyze code inline. Each round launches agents in waves of 3 (max concurrent). Findings pass between rounds as summary tables, not raw code. See `docs/AGENT_CLASSIFICATION.md` for the full
|
|
21
|
+
**Dispatch model:** All Gauntlet rounds MUST dispatch to sub-agents per `SUB_AGENTS.md` "Parallel Agent Standard." Agents are launched as named subagent types defined in `.claude/agents/` with model tiering (Opus leads, Sonnet specialists, Haiku scouts) and tool restrictions. The main thread manages rounds, triages findings between rounds, and applies fixes — it does NOT read source files or analyze code inline. Each round launches agents in waves of 3 (max concurrent). Findings pass between rounds as summary tables, not raw code. See `docs/AGENT_CLASSIFICATION.md` for the full 264-agent manifest. (Field report #270)
|
|
22
22
|
|
|
23
23
|
**When NOT to use /gauntlet:**
|
|
24
24
|
- During active development (use `/assemble` instead — it includes building)
|
package/docs/methods/MUSTER.md
CHANGED
|
@@ -143,7 +143,7 @@ Synthesize all findings:
|
|
|
143
143
|
|
|
144
144
|
## Subagent Definitions (ADR-044)
|
|
145
145
|
|
|
146
|
-
Muster agents are now launched as named subagent types defined in `.claude/agents/`. Instead of inline prompts, each agent invocation uses `subagent_type: {agent-id}` to reference a materialized definition with model tiering (Opus leads, Sonnet specialists, Haiku scouts) and tool restrictions. See `docs/AGENT_CLASSIFICATION.md` for the full
|
|
146
|
+
Muster agents are now launched as named subagent types defined in `.claude/agents/`. Instead of inline prompts, each agent invocation uses `subagent_type: {agent-id}` to reference a materialized definition with model tiering (Opus leads, Sonnet specialists, Haiku scouts) and tool restrictions. See `docs/AGENT_CLASSIFICATION.md` for the full 264-agent classification manifest.
|
|
147
147
|
|
|
148
148
|
## Cost Awareness
|
|
149
149
|
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
|
|
28
28
|
## Dynamic Dispatch (ADR-044)
|
|
29
29
|
|
|
30
|
-
Agent dispatch is now description-driven. When Opus processes a command, it scans `git diff --stat` and matches changed files against the `description` fields of all
|
|
30
|
+
Agent dispatch is now description-driven. When Opus processes a command, it scans `git diff --stat` and matches changed files against the `description` fields of all 264 agents in `.claude/agents/`. Matching specialists launch automatically alongside core agents. No static dispatch tables needed.
|
|
31
31
|
|
|
32
32
|
See `docs/AGENT_CLASSIFICATION.md` for the full classification and `docs/adrs/ADR-044-subagent-materialization.md` for the architecture.
|
|
33
33
|
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
|
|
29
29
|
## Dynamic Dispatch (ADR-044)
|
|
30
30
|
|
|
31
|
-
Agent dispatch is now description-driven. When Opus processes a command, it scans `git diff --stat` and matches changed files against the `description` fields of all
|
|
31
|
+
Agent dispatch is now description-driven. When Opus processes a command, it scans `git diff --stat` and matches changed files against the `description` fields of all 264 agents in `.claude/agents/`. Matching specialists launch automatically alongside core agents. No static dispatch tables needed.
|
|
32
32
|
|
|
33
33
|
See `docs/AGENT_CLASSIFICATION.md` for the full classification and `docs/adrs/ADR-044-subagent-materialization.md` for the architecture.
|
|
34
34
|
|
|
@@ -10,7 +10,7 @@ Parallelize development across multiple Claude Code sessions. Each session runs
|
|
|
10
10
|
|
|
11
11
|
**All orchestration uses the build journal.** Every delegation, handoff, and resolution is logged to `/logs/handoffs.md`. Agents read journal files to recover context. See `/docs/methods/BUILD_JOURNAL.md`.
|
|
12
12
|
|
|
13
|
-
**Full character roster: `/docs/NAMING_REGISTRY.md`** —
|
|
13
|
+
**Full character roster: `/docs/NAMING_REGISTRY.md`** — 264 named characters across 9 universes. No duplicates allowed. All agents materialized as subagent definitions in `.claude/agents/`.
|
|
14
14
|
|
|
15
15
|
---
|
|
16
16
|
|
|
@@ -176,7 +176,7 @@ Users can create project-specific sub-agents that carry domain knowledge. Define
|
|
|
176
176
|
|
|
177
177
|
## Subagent Definitions (ADR-044)
|
|
178
178
|
|
|
179
|
-
All
|
|
179
|
+
All 264 agents are materialized as `.claude/agents/{name}.md` files. Commands now use `subagent_type: {agent-id}` instead of inline prompts. Each definition contains the agent's identity, behavioral directives, domain expertise, and output format.
|
|
180
180
|
|
|
181
181
|
### The `.claude/agents/` Directory
|
|
182
182
|
|
|
@@ -206,7 +206,7 @@ Leads inherit the main session's model (Opus). Specialists run on Sonnet for cos
|
|
|
206
206
|
Commands no longer use static dispatch tables (the old ADR-042 Cross-Domain Triggers). Instead, when Opus processes a command, it:
|
|
207
207
|
|
|
208
208
|
1. Scans `git diff --stat` to identify changed files
|
|
209
|
-
2. Matches changed file paths against the `description` fields of all
|
|
209
|
+
2. Matches changed file paths against the `description` fields of all 264 agents
|
|
210
210
|
3. Launches matching specialists automatically alongside core agents
|
|
211
211
|
|
|
212
212
|
This means a security audit that touches database migrations automatically picks up Spock (schema) without a hardcoded trigger table. The descriptions in `.claude/agents/*.md` ARE the dispatch rules.
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
|
|
26
26
|
## Dynamic Dispatch (ADR-044)
|
|
27
27
|
|
|
28
|
-
Agent dispatch is now description-driven. When Opus processes a command, it scans `git diff --stat` and matches changed files against the `description` fields of all
|
|
28
|
+
Agent dispatch is now description-driven. When Opus processes a command, it scans `git diff --stat` and matches changed files against the `description` fields of all 264 agents in `.claude/agents/`. Matching specialists launch automatically alongside core agents. No static dispatch tables needed.
|
|
29
29
|
|
|
30
30
|
See `docs/AGENT_CLASSIFICATION.md` for the full classification and `docs/adrs/ADR-044-subagent-materialization.md` for the architecture.
|
|
31
31
|
|