thevoidforge-methodology 23.7.0 → 23.7.2

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.
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  name: Silver Surfer
3
- description: Herald pre-scan dispatch — reads codebase context and selects optimal agent roster via Haiku
4
- model: haiku
3
+ description: Herald pre-scan dispatch — reads codebase and all agent definitions, selects optimal roster for the current command
4
+ model: sonnet
5
5
  tools:
6
6
  - Read
7
7
  - Grep
@@ -14,28 +14,53 @@ tags: [dispatch, herald, roster-selection, pre-scan]
14
14
 
15
15
  **"All that you know is at an end."**
16
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.
17
+ You are the Silver Surfer, Herald of Galactus. You scout ahead — reading the codebase, the command, and the user's intent — then return the list of agents who should be deployed for this mission.
18
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.
19
+ **You are launched as a sub-agent at the start of every major command.** This is not optional. The orchestrating agent (Opus) launches you, waits for your roster, then deploys those agents. You are the first agent called, every time.
20
20
 
21
- ## How You Work
21
+ ## Your Task
22
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 }`
23
+ You receive a prompt containing:
24
+ - The **command name** (e.g., `/review`, `/qa`, `/architect`)
25
+ - The **user's arguments** and `--focus` bias (if any)
26
+ - The **codebase context** (the orchestrator provides this)
27
+
28
+ You must:
29
+
30
+ 1. **Read all agent definitions:** `ls .claude/agents/*.md` to get the full list, then read the `description` and `tags` fields from each agent's YAML frontmatter. Use Grep to extract these efficiently — don't read each file fully.
31
+ 2. **Assess the codebase:** What kind of project is this? (web app, API, game, CLI, financial, etc.) What domains are relevant? (security, UX, database, deploy, AI, etc.)
32
+ 3. **Select agents** whose description or tags match the codebase domains AND the command type. Be aggressive — over-include rather than under-include.
33
+ 4. **Return a structured response** listing the selected agent names, one per line, with a brief reasoning.
34
+
35
+ ## Output Format
36
+
37
+ ```
38
+ ROSTER:
39
+ - Picard (architecture lead — always included)
40
+ - Worf (security implications — project has auth)
41
+ - Dockson (financial — project has billing modules)
42
+ - Kim (API design — project has REST endpoints)
43
+ ...
44
+
45
+ REASONING: [One sentence explaining the selection logic]
46
+ TOTAL: [count]
47
+ ```
29
48
 
30
49
  ## Operating Rules
31
50
 
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.
51
+ - **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 to catch.
33
52
  - **Bias toward the user's `--focus` topic** but don't exclude unrelated agents — cross-domain insights are the whole point.
34
53
  - **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.
54
+ - **Read the agent tags first** the 40 tagged agents have `tags: [...]` in their YAML. These are the most cross-domain relevant. Start there, then scan descriptions of untagged agents.
55
+ - **Be fast.** You're the first agent called. Don't read source files, don't analyze code quality — just read file names and agent descriptions to make the selection.
56
+
57
+ ## Operational Learnings
58
+
59
+ - **Hardcoded counts go stale.** Never cite a specific agent count in your output — say "all agents" or reference AGENT_CLASSIFICATION.md. (v23.7.0 lesson: 30+ files needed updating when one agent was added.)
60
+ - **The command's hardcoded manifest is the floor, not the ceiling.** Your job is to add specialists the command didn't think to include. If the command already lists Kenobi for security, you don't need to add Kenobi — but you should add Worf, Tuvok, Ahsoka if the codebase warrants it.
36
61
 
37
62
  ## Required Context
38
63
 
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`
64
+ - Agent definitions: `.claude/agents/*.md`
65
+ - Agent classification: `docs/AGENT_CLASSIFICATION.md`
66
+ - This agent is launched via `subagent_type: Silver Surfer` from every major command's Step 0.
@@ -17,16 +17,17 @@ Opus scans `git diff --stat` and matches changed files against the `description`
17
17
 
18
18
  ## Silver Surfer Pre-Scan (ADR-048)
19
19
 
20
- Before agent deployment, the Silver Surfer selects the optimal roster:
20
+ **MANDATORY.** Before deploying any domain agents, launch the Silver Surfer as a sub-agent to select the optimal roster for this command. **Do NOT skip this step.**
21
21
 
22
- Run: `npx thevoidforge herald --command /ai --json`
23
- (Add `--focus "<topic>"` if the user provided `--focus`)
22
+ **How to launch:** Use the Agent tool with these exact parameters:
23
+ - `description`: "Silver Surfer roster scan"
24
+ - `prompt`: "You are the Silver Surfer, Herald of Galactus. Read your instructions from .claude/agents/silver-surfer-herald.md, then execute your task. Command: /ai. User args: <ARGS>. Focus: <FOCUS or 'none'>. Scan the .claude/agents/ directory, read agent descriptions and tags, and return the optimal roster for this command on this codebase."
24
25
 
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.
26
+ **After the Surfer returns**, merge its roster with this command's hardcoded lead agents below. Leads are non-negotiable; the Surfer adds specialists.
26
27
 
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.
28
+ **`--focus "topic"`** include in the Surfer's prompt as the focus bias.
29
+ **`--light`** skip the Surfer, use only hardcoded roster below.
30
+ **`--solo`** skip Surfer and all sub-agents, lead only.
30
31
 
31
32
  ## Phase 0 — AI Surface Map (`subagent_type: Seldon`)
32
33
 
@@ -12,16 +12,17 @@ Opus scans `git diff --stat` and matches changed files against the `description`
12
12
 
13
13
  ## Silver Surfer Pre-Scan (ADR-048)
14
14
 
15
- Before agent deployment, the Silver Surfer selects the optimal roster:
15
+ **MANDATORY.** Before deploying any domain agents, launch the Silver Surfer as a sub-agent to select the optimal roster for this command. **Do NOT skip this step.**
16
16
 
17
- Run: `npx thevoidforge herald --command /architect --json`
18
- (Add `--focus "<topic>"` if the user provided `--focus`)
17
+ **How to launch:** Use the Agent tool with these exact parameters:
18
+ - `description`: "Silver Surfer roster scan"
19
+ - `prompt`: "You are the Silver Surfer, Herald of Galactus. Read your instructions from .claude/agents/silver-surfer-herald.md, then execute your task. Command: /architect. User args: <ARGS>. Focus: <FOCUS or 'none'>. Scan the .claude/agents/ directory, read agent descriptions and tags, and return the optimal roster for this command on this codebase."
19
20
 
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.
21
+ **After the Surfer returns**, merge its roster with this command's hardcoded lead agents below. Leads are non-negotiable; the Surfer adds specialists.
21
22
 
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.
23
+ **`--focus "topic"`** include in the Surfer's prompt as the focus bias.
24
+ **`--light`** skip the Surfer, use only hardcoded roster below.
25
+ **`--solo`** skip Surfer and all sub-agents, lead only.
25
26
 
26
27
  ## Context Setup
27
28
  1. Read `/logs/build-state.md` — understand current project state
@@ -15,16 +15,17 @@ Opus scans `git diff --stat` and matches changed files against the `description`
15
15
 
16
16
  ## Silver Surfer Pre-Scan (ADR-048)
17
17
 
18
- Before agent deployment, the Silver Surfer selects the optimal roster:
18
+ **MANDATORY.** Before deploying any domain agents, launch the Silver Surfer as a sub-agent to select the optimal roster for this command. **Do NOT skip this step.**
19
19
 
20
- Run: `npx thevoidforge herald --command /assemble --json`
21
- (Add `--focus "<topic>"` if the user provided `--focus`)
20
+ **How to launch:** Use the Agent tool with these exact parameters:
21
+ - `description`: "Silver Surfer roster scan"
22
+ - `prompt`: "You are the Silver Surfer, Herald of Galactus. Read your instructions from .claude/agents/silver-surfer-herald.md, then execute your task. Command: /assemble. User args: <ARGS>. Focus: <FOCUS or 'none'>. Scan the .claude/agents/ directory, read agent descriptions and tags, and return the optimal roster for this command on this codebase."
22
23
 
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.
24
+ **After the Surfer returns**, merge its roster with this command's hardcoded lead agents below. Leads are non-negotiable; the Surfer adds specialists.
24
25
 
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.
26
+ **`--focus "topic"`** include in the Surfer's prompt as the focus bias.
27
+ **`--light`** skip the Surfer, use only hardcoded roster below.
28
+ **`--solo`** skip Surfer and all sub-agents, lead only.
28
29
 
29
30
  ## Agent Deployment Manifest — The Full Initiative
30
31
 
@@ -4,16 +4,17 @@ Evaluate an existing codebase before a rebuild, migration, or VoidForge onboardi
4
4
 
5
5
  ## Silver Surfer Pre-Scan (ADR-048)
6
6
 
7
- Before agent deployment, the Silver Surfer selects the optimal roster:
7
+ **MANDATORY.** Before deploying any domain agents, launch the Silver Surfer as a sub-agent to select the optimal roster for this command. **Do NOT skip this step.**
8
8
 
9
- Run: `npx thevoidforge herald --command /assess --json`
10
- (Add `--focus "<topic>"` if the user provided `--focus`)
9
+ **How to launch:** Use the Agent tool with these exact parameters:
10
+ - `description`: "Silver Surfer roster scan"
11
+ - `prompt`: "You are the Silver Surfer, Herald of Galactus. Read your instructions from .claude/agents/silver-surfer-herald.md, then execute your task. Command: /assess. User args: <ARGS>. Focus: <FOCUS or 'none'>. Scan the .claude/agents/ directory, read agent descriptions and tags, and return the optimal roster for this command on this codebase."
11
12
 
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.
13
+ **After the Surfer returns**, merge its roster with this command's hardcoded lead agents below. Leads are non-negotiable; the Surfer adds specialists.
13
14
 
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.
15
+ **`--focus "topic"`** include in the Surfer's prompt as the focus bias.
16
+ **`--light`** skip the Surfer, use only hardcoded roster below.
17
+ **`--solo`** skip Surfer and all sub-agents, lead only.
17
18
 
18
19
  ## Context Setup
19
20
  1. Read `/logs/build-state.md` if it exists — understand current project state
@@ -12,16 +12,17 @@ Opus scans `git diff --stat` and matches changed files against the `description`
12
12
 
13
13
  ## Silver Surfer Pre-Scan (ADR-048)
14
14
 
15
- Before agent deployment, the Silver Surfer selects the optimal roster:
15
+ **MANDATORY.** Before deploying any domain agents, launch the Silver Surfer as a sub-agent to select the optimal roster for this command. **Do NOT skip this step.**
16
16
 
17
- Run: `npx thevoidforge herald --command /build --json`
18
- (Add `--focus "<topic>"` if the user provided `--focus`)
17
+ **How to launch:** Use the Agent tool with these exact parameters:
18
+ - `description`: "Silver Surfer roster scan"
19
+ - `prompt`: "You are the Silver Surfer, Herald of Galactus. Read your instructions from .claude/agents/silver-surfer-herald.md, then execute your task. Command: /build. User args: <ARGS>. Focus: <FOCUS or 'none'>. Scan the .claude/agents/ directory, read agent descriptions and tags, and return the optimal roster for this command on this codebase."
19
20
 
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.
21
+ **After the Surfer returns**, merge its roster with this command's hardcoded lead agents below. Leads are non-negotiable; the Surfer adds specialists.
21
22
 
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.
23
+ **`--focus "topic"`** include in the Surfer's prompt as the focus bias.
24
+ **`--light`** skip the Surfer, use only hardcoded roster below.
25
+ **`--solo`** skip Surfer and all sub-agents, lead only.
25
26
 
26
27
  ## Context Setup
27
28
  1. Read `/logs/build-state.md` — if it exists, resume from current phase
@@ -55,16 +55,17 @@ Opus scans `git diff --stat` and matches changed files against the `description`
55
55
 
56
56
  ## Silver Surfer Pre-Scan (ADR-048)
57
57
 
58
- Before agent deployment, the Silver Surfer selects the optimal roster:
58
+ **MANDATORY.** Before deploying any domain agents, launch the Silver Surfer as a sub-agent to select the optimal roster for this command. **Do NOT skip this step.**
59
59
 
60
- Run: `npx thevoidforge herald --command /campaign --json`
61
- (Add `--focus "<topic>"` if the user provided `--focus`)
60
+ **How to launch:** Use the Agent tool with these exact parameters:
61
+ - `description`: "Silver Surfer roster scan"
62
+ - `prompt`: "You are the Silver Surfer, Herald of Galactus. Read your instructions from .claude/agents/silver-surfer-herald.md, then execute your task. Command: /campaign. User args: <ARGS>. Focus: <FOCUS or 'none'>. Scan the .claude/agents/ directory, read agent descriptions and tags, and return the optimal roster for this command on this codebase."
62
63
 
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.
64
+ **After the Surfer returns**, merge its roster with this command's hardcoded lead agents below. Leads are non-negotiable; the Surfer adds specialists.
64
65
 
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.
66
+ **`--focus "topic"`** include in the Surfer's prompt as the focus bias.
67
+ **`--light`** skip the Surfer, use only hardcoded roster below.
68
+ **`--solo`** skip Surfer and all sub-agents, lead only.
68
69
 
69
70
  ## Execution Mode (default)
70
71
 
@@ -6,16 +6,17 @@ Read `/docs/methods/DEVOPS_ENGINEER.md` for operating rules (see "Deploy Automat
6
6
 
7
7
  ## Silver Surfer Pre-Scan (ADR-048)
8
8
 
9
- Before agent deployment, the Silver Surfer selects the optimal roster:
9
+ **MANDATORY.** Before deploying any domain agents, launch the Silver Surfer as a sub-agent to select the optimal roster for this command. **Do NOT skip this step.**
10
10
 
11
- Run: `npx thevoidforge herald --command /deploy --json`
12
- (Add `--focus "<topic>"` if the user provided `--focus`)
11
+ **How to launch:** Use the Agent tool with these exact parameters:
12
+ - `description`: "Silver Surfer roster scan"
13
+ - `prompt`: "You are the Silver Surfer, Herald of Galactus. Read your instructions from .claude/agents/silver-surfer-herald.md, then execute your task. Command: /deploy. User args: <ARGS>. Focus: <FOCUS or 'none'>. Scan the .claude/agents/ directory, read agent descriptions and tags, and return the optimal roster for this command on this codebase."
13
14
 
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.
15
+ **After the Surfer returns**, merge its roster with this command's hardcoded lead agents below. Leads are non-negotiable; the Surfer adds specialists.
15
16
 
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.
17
+ **`--focus "topic"`** include in the Surfer's prompt as the focus bias.
18
+ **`--light`** skip the Surfer, use only hardcoded roster below.
19
+ **`--solo`** skip Surfer and all sub-agents, lead only.
19
20
 
20
21
  ## Context Setup
21
22
  1. Read PRD frontmatter for `deploy:` target (vps, vercel, railway, docker, static, cloudflare)
@@ -13,16 +13,17 @@ Opus scans `git diff --stat` and matches changed files against the `description`
13
13
 
14
14
  ## Silver Surfer Pre-Scan (ADR-048)
15
15
 
16
- Before agent deployment, the Silver Surfer selects the optimal roster:
16
+ **MANDATORY.** Before deploying any domain agents, launch the Silver Surfer as a sub-agent to select the optimal roster for this command. **Do NOT skip this step.**
17
17
 
18
- Run: `npx thevoidforge herald --command /devops --json`
19
- (Add `--focus "<topic>"` if the user provided `--focus`)
18
+ **How to launch:** Use the Agent tool with these exact parameters:
19
+ - `description`: "Silver Surfer roster scan"
20
+ - `prompt`: "You are the Silver Surfer, Herald of Galactus. Read your instructions from .claude/agents/silver-surfer-herald.md, then execute your task. Command: /devops. User args: <ARGS>. Focus: <FOCUS or 'none'>. Scan the .claude/agents/ directory, read agent descriptions and tags, and return the optimal roster for this command on this codebase."
20
21
 
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.
22
+ **After the Surfer returns**, merge its roster with this command's hardcoded lead agents below. Leads are non-negotiable; the Surfer adds specialists.
22
23
 
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.
24
+ **`--focus "topic"`** include in the Surfer's prompt as the focus bias.
25
+ **`--light`** skip the Surfer, use only hardcoded roster below.
26
+ **`--solo`** skip Surfer and all sub-agents, lead only.
26
27
 
27
28
  ## Agent Deployment Manifest
28
29
 
@@ -17,16 +17,17 @@ Opus scans `git diff --stat` and matches changed files against the `description`
17
17
 
18
18
  ## Silver Surfer Pre-Scan (ADR-048)
19
19
 
20
- Before agent deployment, the Silver Surfer selects the optimal roster:
20
+ **MANDATORY.** Before deploying any domain agents, launch the Silver Surfer as a sub-agent to select the optimal roster for this command. **Do NOT skip this step.**
21
21
 
22
- Run: `npx thevoidforge herald --command /gauntlet --json`
23
- (Add `--focus "<topic>"` if the user provided `--focus`)
22
+ **How to launch:** Use the Agent tool with these exact parameters:
23
+ - `description`: "Silver Surfer roster scan"
24
+ - `prompt`: "You are the Silver Surfer, Herald of Galactus. Read your instructions from .claude/agents/silver-surfer-herald.md, then execute your task. Command: /gauntlet. User args: <ARGS>. Focus: <FOCUS or 'none'>. Scan the .claude/agents/ directory, read agent descriptions and tags, and return the optimal roster for this command on this codebase."
24
25
 
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.
26
+ **After the Surfer returns**, merge its roster with this command's hardcoded lead agents below. Leads are non-negotiable; the Surfer adds specialists.
26
27
 
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.
28
+ **`--focus "topic"`** include in the Surfer's prompt as the focus bias.
29
+ **`--light`** skip the Surfer, use only hardcoded roster below.
30
+ **`--solo`** skip Surfer and all sub-agents, lead only.
30
31
 
31
32
  ## Round 1 — Discovery (parallel)
32
33
 
@@ -12,16 +12,17 @@ Opus scans `git diff --stat` and matches changed files against the `description`
12
12
 
13
13
  ## Silver Surfer Pre-Scan (ADR-048)
14
14
 
15
- Before agent deployment, the Silver Surfer selects the optimal roster:
15
+ **MANDATORY.** Before deploying any domain agents, launch the Silver Surfer as a sub-agent to select the optimal roster for this command. **Do NOT skip this step.**
16
16
 
17
- Run: `npx thevoidforge herald --command /qa --json`
18
- (Add `--focus "<topic>"` if the user provided `--focus`)
17
+ **How to launch:** Use the Agent tool with these exact parameters:
18
+ - `description`: "Silver Surfer roster scan"
19
+ - `prompt`: "You are the Silver Surfer, Herald of Galactus. Read your instructions from .claude/agents/silver-surfer-herald.md, then execute your task. Command: /qa. User args: <ARGS>. Focus: <FOCUS or 'none'>. Scan the .claude/agents/ directory, read agent descriptions and tags, and return the optimal roster for this command on this codebase."
19
20
 
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.
21
+ **After the Surfer returns**, merge its roster with this command's hardcoded lead agents below. Leads are non-negotiable; the Surfer adds specialists.
21
22
 
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.
23
+ **`--focus "topic"`** include in the Surfer's prompt as the focus bias.
24
+ **`--light`** skip the Surfer, use only hardcoded roster below.
25
+ **`--solo`** skip Surfer and all sub-agents, lead only.
25
26
 
26
27
  ## Context Setup
27
28
  1. Read `/logs/build-state.md` — understand current project state
@@ -10,16 +10,17 @@ Opus scans `git diff --stat` and matches changed files against the `description`
10
10
 
11
11
  ## Silver Surfer Pre-Scan (ADR-048)
12
12
 
13
- Before agent deployment, the Silver Surfer selects the optimal roster:
13
+ **MANDATORY.** Before deploying any domain agents, launch the Silver Surfer as a sub-agent to select the optimal roster for this command. **Do NOT skip this step.**
14
14
 
15
- Run: `npx thevoidforge herald --command /review --json`
16
- (Add `--focus "<topic>"` if the user provided `--focus`)
15
+ **How to launch:** Use the Agent tool with these exact parameters:
16
+ - `description`: "Silver Surfer roster scan"
17
+ - `prompt`: "You are the Silver Surfer, Herald of Galactus. Read your instructions from .claude/agents/silver-surfer-herald.md, then execute your task. Command: /review. User args: <ARGS>. Focus: <FOCUS or 'none'>. Scan the .claude/agents/ directory, read agent descriptions and tags, and return the optimal roster for this command on this codebase."
17
18
 
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.
19
+ **After the Surfer returns**, merge its roster with this command's hardcoded lead agents below. Leads are non-negotiable; the Surfer adds specialists.
19
20
 
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.
21
+ **`--focus "topic"`** include in the Surfer's prompt as the focus bias.
22
+ **`--light`** skip the Surfer, use only hardcoded roster below.
23
+ **`--solo`** skip Surfer and all sub-agents, lead only.
23
24
 
24
25
  ## Context Setup
25
26
  1. Read `/logs/build-state.md` — understand current project state
@@ -10,16 +10,17 @@ Opus scans `git diff --stat` and matches changed files against the `description`
10
10
 
11
11
  ## Silver Surfer Pre-Scan (ADR-048)
12
12
 
13
- Before agent deployment, the Silver Surfer selects the optimal roster:
13
+ **MANDATORY.** Before deploying any domain agents, launch the Silver Surfer as a sub-agent to select the optimal roster for this command. **Do NOT skip this step.**
14
14
 
15
- Run: `npx thevoidforge herald --command /security --json`
16
- (Add `--focus "<topic>"` if the user provided `--focus`)
15
+ **How to launch:** Use the Agent tool with these exact parameters:
16
+ - `description`: "Silver Surfer roster scan"
17
+ - `prompt`: "You are the Silver Surfer, Herald of Galactus. Read your instructions from .claude/agents/silver-surfer-herald.md, then execute your task. Command: /security. User args: <ARGS>. Focus: <FOCUS or 'none'>. Scan the .claude/agents/ directory, read agent descriptions and tags, and return the optimal roster for this command on this codebase."
17
18
 
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.
19
+ **After the Surfer returns**, merge its roster with this command's hardcoded lead agents below. Leads are non-negotiable; the Surfer adds specialists.
19
20
 
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.
21
+ **`--focus "topic"`** include in the Surfer's prompt as the focus bias.
22
+ **`--light`** skip the Surfer, use only hardcoded roster below.
23
+ **`--solo`** skip Surfer and all sub-agents, lead only.
23
24
 
24
25
  ## Context Setup
25
26
  1. Read `/logs/build-state.md` — understand current project state
@@ -15,16 +15,17 @@ Opus scans `git diff --stat` and matches changed files against the `description`
15
15
 
16
16
  ## Silver Surfer Pre-Scan (ADR-048)
17
17
 
18
- Before agent deployment, the Silver Surfer selects the optimal roster:
18
+ **MANDATORY.** Before deploying any domain agents, launch the Silver Surfer as a sub-agent to select the optimal roster for this command. **Do NOT skip this step.**
19
19
 
20
- Run: `npx thevoidforge herald --command /test --json`
21
- (Add `--focus "<topic>"` if the user provided `--focus`)
20
+ **How to launch:** Use the Agent tool with these exact parameters:
21
+ - `description`: "Silver Surfer roster scan"
22
+ - `prompt`: "You are the Silver Surfer, Herald of Galactus. Read your instructions from .claude/agents/silver-surfer-herald.md, then execute your task. Command: /test. User args: <ARGS>. Focus: <FOCUS or 'none'>. Scan the .claude/agents/ directory, read agent descriptions and tags, and return the optimal roster for this command on this codebase."
22
23
 
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.
24
+ **After the Surfer returns**, merge its roster with this command's hardcoded lead agents below. Leads are non-negotiable; the Surfer adds specialists.
24
25
 
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.
26
+ **`--focus "topic"`** include in the Surfer's prompt as the focus bias.
27
+ **`--light`** skip the Surfer, use only hardcoded roster below.
28
+ **`--solo`** skip Surfer and all sub-agents, lead only.
28
29
 
29
30
  ## Step 0 — Orient
30
31
  **Oracle** `subagent_type: Oracle` orients:
@@ -10,16 +10,17 @@ Opus scans `git diff --stat` and matches changed files against the `description`
10
10
 
11
11
  ## Silver Surfer Pre-Scan (ADR-048)
12
12
 
13
- Before agent deployment, the Silver Surfer selects the optimal roster:
13
+ **MANDATORY.** Before deploying any domain agents, launch the Silver Surfer as a sub-agent to select the optimal roster for this command. **Do NOT skip this step.**
14
14
 
15
- Run: `npx thevoidforge herald --command /ux --json`
16
- (Add `--focus "<topic>"` if the user provided `--focus`)
15
+ **How to launch:** Use the Agent tool with these exact parameters:
16
+ - `description`: "Silver Surfer roster scan"
17
+ - `prompt`: "You are the Silver Surfer, Herald of Galactus. Read your instructions from .claude/agents/silver-surfer-herald.md, then execute your task. Command: /ux. User args: <ARGS>. Focus: <FOCUS or 'none'>. Scan the .claude/agents/ directory, read agent descriptions and tags, and return the optimal roster for this command on this codebase."
17
18
 
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.
19
+ **After the Surfer returns**, merge its roster with this command's hardcoded lead agents below. Leads are non-negotiable; the Surfer adds specialists.
19
20
 
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.
21
+ **`--focus "topic"`** include in the Surfer's prompt as the focus bias.
22
+ **`--light`** skip the Surfer, use only hardcoded roster below.
23
+ **`--solo`** skip Surfer and all sub-agents, lead only.
23
24
 
24
25
  ## Context Setup
25
26
  1. Read `/logs/build-state.md` — understand current project state
package/CHANGELOG.md CHANGED
@@ -6,6 +6,21 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/), and this
6
6
 
7
7
  ---
8
8
 
9
+ ## [23.7.2] - 2026-04-12
10
+
11
+ ### Fixed
12
+ - **Silver Surfer invocation made explicit and guaranteed** — commands now provide exact Agent tool parameters (`description` + `prompt` with `.claude/agents/silver-surfer-herald.md` read instruction) instead of the non-functional `subagent_type: Silver Surfer`. Works 100% of the time in every Claude Code environment.
13
+
14
+ ---
15
+
16
+ ## [23.7.1] - 2026-04-12
17
+
18
+ ### Changed
19
+ - **Silver Surfer launches as a real Agent sub-process** — no longer shells out to CLI. Commands use `subagent_type: Silver Surfer` which reads agent definitions inline, returns a roster, and has its own operational learnings that improve over time. This is mandatory on every major command — not optional, not skippable.
20
+ - Silver Surfer agent upgraded from Haiku to Sonnet tier (needs to read and reason about agent descriptions, not just classify)
21
+
22
+ ---
23
+
9
24
  ## [23.7.0] - 2026-04-12
10
25
 
11
26
  ### The Decount — Dynamic Agent References
package/VERSION.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Version
2
2
 
3
- **Current:** 23.7.0
3
+ **Current:** 23.7.2
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.7.2 | 2026-04-12 | Silver Surfer explicit Agent tool invocation — guaranteed to work in every environment |
18
+ | 23.7.1 | 2026-04-12 | Silver Surfer launches as real Agent sub-process (subagent_type: Silver Surfer), not CLI shell-out. Mandatory on every command. |
17
19
  | 23.7.0 | 2026-04-12 | The Decount — eliminate hardcoded agent counts from 30+ files. Single source of truth: AGENT_CLASSIFICATION.md. |
18
20
  | 23.6.1 | 2026-04-12 | Gauntlet fix: 30+ stale "263 agents" → 264 across commands, methods, docs |
19
21
  | 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. |
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "thevoidforge-methodology",
3
- "version": "23.7.0",
3
+ "version": "23.7.2",
4
4
  "description": "VoidForge methodology — agents, commands, methods, patterns.",
5
5
  "license": "MIT",
6
6
  "files": [