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.
- package/.claude/agents/silver-surfer-herald.md +41 -16
- package/.claude/commands/ai.md +8 -7
- package/.claude/commands/architect.md +8 -7
- package/.claude/commands/assemble.md +8 -7
- package/.claude/commands/assess.md +8 -7
- package/.claude/commands/build.md +8 -7
- package/.claude/commands/campaign.md +8 -7
- package/.claude/commands/deploy.md +8 -7
- package/.claude/commands/devops.md +8 -7
- package/.claude/commands/gauntlet.md +8 -7
- package/.claude/commands/qa.md +8 -7
- package/.claude/commands/review.md +8 -7
- package/.claude/commands/security.md +8 -7
- package/.claude/commands/test.md +8 -7
- package/.claude/commands/ux.md +8 -7
- package/CHANGELOG.md +15 -0
- package/VERSION.md +3 -1
- package/package.json +1 -1
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: Silver Surfer
|
|
3
|
-
description: Herald pre-scan dispatch — reads codebase
|
|
4
|
-
model:
|
|
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
|
|
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
|
|
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
|
-
##
|
|
21
|
+
## Your Task
|
|
22
22
|
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
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
|
-
- **
|
|
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
|
-
-
|
|
40
|
-
-
|
|
41
|
-
-
|
|
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.
|
package/.claude/commands/ai.md
CHANGED
|
@@ -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
|
|
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
|
-
|
|
23
|
-
|
|
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
|
-
|
|
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"`**
|
|
28
|
-
**`--light`**
|
|
29
|
-
**`--solo`**
|
|
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
|
|
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
|
-
|
|
18
|
-
|
|
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
|
-
|
|
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"`**
|
|
23
|
-
**`--light`**
|
|
24
|
-
**`--solo`**
|
|
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
|
|
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
|
-
|
|
21
|
-
|
|
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
|
-
|
|
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"`**
|
|
26
|
-
**`--light`**
|
|
27
|
-
**`--solo`**
|
|
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
|
|
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
|
-
|
|
10
|
-
|
|
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
|
-
|
|
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"`**
|
|
15
|
-
**`--light`**
|
|
16
|
-
**`--solo`**
|
|
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
|
|
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
|
-
|
|
18
|
-
|
|
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
|
-
|
|
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"`**
|
|
23
|
-
**`--light`**
|
|
24
|
-
**`--solo`**
|
|
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
|
|
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
|
-
|
|
61
|
-
|
|
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
|
-
|
|
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"`**
|
|
66
|
-
**`--light`**
|
|
67
|
-
**`--solo`**
|
|
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
|
|
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
|
-
|
|
12
|
-
|
|
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
|
-
|
|
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"`**
|
|
17
|
-
**`--light`**
|
|
18
|
-
**`--solo`**
|
|
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
|
|
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
|
-
|
|
19
|
-
|
|
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
|
-
|
|
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"`**
|
|
24
|
-
**`--light`**
|
|
25
|
-
**`--solo`**
|
|
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
|
|
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
|
-
|
|
23
|
-
|
|
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
|
-
|
|
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"`**
|
|
28
|
-
**`--light`**
|
|
29
|
-
**`--solo`**
|
|
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
|
|
package/.claude/commands/qa.md
CHANGED
|
@@ -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
|
|
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
|
-
|
|
18
|
-
|
|
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
|
-
|
|
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"`**
|
|
23
|
-
**`--light`**
|
|
24
|
-
**`--solo`**
|
|
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
|
|
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
|
-
|
|
16
|
-
|
|
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
|
-
|
|
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"`**
|
|
21
|
-
**`--light`**
|
|
22
|
-
**`--solo`**
|
|
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
|
|
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
|
-
|
|
16
|
-
|
|
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
|
-
|
|
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"`**
|
|
21
|
-
**`--light`**
|
|
22
|
-
**`--solo`**
|
|
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/.claude/commands/test.md
CHANGED
|
@@ -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
|
|
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
|
-
|
|
21
|
-
|
|
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
|
-
|
|
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"`**
|
|
26
|
-
**`--light`**
|
|
27
|
-
**`--solo`**
|
|
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:
|
package/.claude/commands/ux.md
CHANGED
|
@@ -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
|
|
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
|
-
|
|
16
|
-
|
|
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
|
-
|
|
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"`**
|
|
21
|
-
**`--light`**
|
|
22
|
-
**`--solo`**
|
|
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.
|
|
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. |
|