@grant-vine/wunderkind 0.17.0 → 0.18.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-plugin/plugin.json +1 -1
- package/README.md +14 -3
- package/agents/ciso.md +4 -1
- package/agents/creative-director.md +1 -1
- package/agents/fullstack-wunderkind.md +15 -1
- package/agents/legal-counsel.md +1 -1
- package/agents/marketing-wunderkind.md +1 -1
- package/agents/product-wunderkind.md +4 -1
- package/commands/docs-index.md +1 -0
- package/commands/dream.md +1 -0
- package/dist/agents/fullstack-wunderkind.d.ts.map +1 -1
- package/dist/agents/fullstack-wunderkind.js +3 -1
- package/dist/agents/fullstack-wunderkind.js.map +1 -1
- package/dist/agents/shared-prompt-sections.d.ts.map +1 -1
- package/dist/agents/shared-prompt-sections.js +3 -0
- package/dist/agents/shared-prompt-sections.js.map +1 -1
- package/dist/agents/slash-commands.d.ts +5 -1
- package/dist/agents/slash-commands.d.ts.map +1 -1
- package/dist/agents/slash-commands.js +7 -0
- package/dist/agents/slash-commands.js.map +1 -1
- package/dist/cli/gitignore-manager.d.ts.map +1 -1
- package/dist/cli/gitignore-manager.js +1 -0
- package/dist/cli/gitignore-manager.js.map +1 -1
- package/dist/cli/index.js +2 -2
- package/dist/cli/index.js.map +1 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +2 -1
- package/dist/index.js.map +1 -1
- package/package.json +4 -3
- package/skills/SKILL-STANDARD.md +1 -0
- package/skills/diagnose/SKILL.md +84 -0
package/README.md
CHANGED
|
@@ -363,7 +363,7 @@ The `/dream` native command is a mixed-domain workflow for ideation, soul synthe
|
|
|
363
363
|
|
|
364
364
|
Wunderkind installs native markdown assets into OpenCode's supported directories. Removing Wunderkind leaves any separate oh-my-openagent installation intact.
|
|
365
365
|
|
|
366
|
-
> **Native asset install note**: Wunderkind registers its specialist agents and skills through OpenCode-native markdown files. Global installs and upgrades refresh the shared native assets, and
|
|
366
|
+
> **Native asset install note**: Wunderkind registers its specialist agents and skills through OpenCode-native markdown files. Global installs and upgrades refresh the shared native assets, and shipped native commands such as `/docs-index` and `/dream` are refreshed globally as native command assets. These command assets now opt into OpenCode's `subtask: true` mode so they can execute as isolated command subtasks instead of polluting the caller's primary context.
|
|
367
367
|
|
|
368
368
|
---
|
|
369
369
|
|
|
@@ -403,6 +403,7 @@ Skill authoring and review in this repo follow `skills/SKILL-STANDARD.md`. New o
|
|
|
403
403
|
| `write-a-skill` | product-wunderkind | Wunderkind-native skill authoring and adaptation |
|
|
404
404
|
| `caveman` | product-wunderkind | Opt-in terse response mode for low-token, high-signal output |
|
|
405
405
|
| `db-architect` | fullstack-wunderkind | Drizzle ORM, PostgreSQL, Neon DB |
|
|
406
|
+
| `diagnose` | fullstack-wunderkind | Deterministic defect isolation, ranked hypotheses, and proving regression surfaces |
|
|
406
407
|
| `code-health` | fullstack-wunderkind | Severity-ranked code health audit reports (coupling, testability, dependency risk) |
|
|
407
408
|
| `vercel-architect` | fullstack-wunderkind | Vercel, Next.js App Router, Edge Runtime |
|
|
408
409
|
| `improve-codebase-architecture` | fullstack-wunderkind | Architecture RFCs, seam design, deep modules, and deletion-test reviews |
|
|
@@ -561,7 +562,7 @@ Wunderkind's evolving workflow strategy is informed in part by Matt Pocock's pub
|
|
|
561
562
|
|
|
562
563
|
- https://github.com/mattpocock/skills
|
|
563
564
|
|
|
564
|
-
We plan to adapt selected ideas such as ubiquitous language, structured questioning, and PRD/planning flows to Wunderkind's filesystem-first `.sisyphus/` workflow rather than adopting GitHub-issue-centric assumptions directly.
|
|
565
|
+
We plan to adapt selected ideas such as ubiquitous language, structured questioning, deterministic diagnosis, and PRD/planning flows to Wunderkind's filesystem-first `.sisyphus/` workflow rather than adopting GitHub-issue-centric assumptions directly.
|
|
565
566
|
|
|
566
567
|
---
|
|
567
568
|
|
|
@@ -585,7 +586,17 @@ Run this command to ensure `.wunderkind/` and other AI tooling directories are g
|
|
|
585
586
|
wunderkind gitignore
|
|
586
587
|
```
|
|
587
588
|
|
|
588
|
-
This adds `.wunderkind/`, `AGENTS.md`, `.sisyphus/`, and `.opencode/` to your `.gitignore` if they aren't already present.
|
|
589
|
+
This adds `.wunderkind/`, `AGENTS.md`, `.sisyphus/`, `.omo/`, and `.opencode/` to your `.gitignore` if they aren't already present.
|
|
590
|
+
|
|
591
|
+
### `.omo/` vs `.opencode/`
|
|
592
|
+
|
|
593
|
+
Wunderkind now treats `.omo/` as a first-class upstream AI trace directory because current oh-my-openagent workflows store project-local rules and task-system state there. At the same time, OpenCode project plugin/config surfaces still live under `.opencode/`.
|
|
594
|
+
|
|
595
|
+
In practice:
|
|
596
|
+
|
|
597
|
+
- keep `.omo/` for OMO-managed rules and task artifacts
|
|
598
|
+
- keep `.opencode/` for OpenCode project plugins, commands, skills, and config
|
|
599
|
+
- keep both gitignored unless you intentionally want to version-control a specific upstream workflow surface
|
|
589
600
|
|
|
590
601
|
---
|
|
591
602
|
|
package/agents/ciso.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
description: >
|
|
3
3
|
CISO — Security and compliance lead for threat modeling, controls, and risk decisions.
|
|
4
|
-
wunderkind_version: "0.
|
|
4
|
+
wunderkind_version: "0.18.2"
|
|
5
5
|
mode: all
|
|
6
6
|
temperature: 0.1
|
|
7
7
|
permission:
|
|
@@ -119,6 +119,9 @@ Use this contract to choose the right delegation mechanism.
|
|
|
119
119
|
### Hard rules for delegation
|
|
120
120
|
|
|
121
121
|
- Prefer **parallel delegation** when subtasks are independent and touch different concerns.
|
|
122
|
+
- When you launch background work, record the returned background task id (`bg_...`) separately from any session id (`ses_...`). Do not confuse them.
|
|
123
|
+
- After launching a background task, wait for the upstream completion signal before collecting output. Do not call `background_output` immediately after launch.
|
|
124
|
+
- When the runtime signals completion, call `background_output` with the **background task id** and synthesize the delegated result before taking the next major step.
|
|
122
125
|
- After delegating research or exploration, **wait for the delegated result and synthesize it**. Do not repeat the same search locally unless the delegated output is clearly insufficient.
|
|
123
126
|
- Avoid unnecessary nested delegation. Use another layer of subagents only when the specialist adds clear value, because upstream background-agent depth is limited.
|
|
124
127
|
- Name the target domain up front in the prompt so the receiving agent can act without re-triaging the same request.
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
description: >
|
|
3
3
|
Fullstack Wunderkind — CTO-calibre engineer for architecture, implementation, and systems tradeoffs.
|
|
4
|
-
wunderkind_version: "0.
|
|
4
|
+
wunderkind_version: "0.18.2"
|
|
5
5
|
mode: all
|
|
6
6
|
temperature: 0.1
|
|
7
7
|
---
|
|
@@ -139,6 +139,8 @@ You make precise, pragmatic engineering decisions. You know when to be pragmatic
|
|
|
139
139
|
|
|
140
140
|
**Regression depth follows boundary crossings.** Start at the narrowest failing surface, then widen to integration or end-to-end coverage only when the defect crosses persistence, auth, messaging, queueing, or deployment boundaries.
|
|
141
141
|
|
|
142
|
+
**Use the `diagnose` skill before speculative rewriting.** Deterministic reproduction, ranked hypotheses, narrow instrumentation, and the smallest proving regression surface should happen before broad implementation changes when the fault is still unclear.
|
|
143
|
+
|
|
142
144
|
**Use the `tdd` skill for execution-heavy quality work.** Red-green-refactor, regression hardening, and defect-driven delivery stay under `fullstack-wunderkind` ownership even when the issue originated as product intake.
|
|
143
145
|
|
|
144
146
|
---
|
|
@@ -181,6 +183,9 @@ Use this contract to choose the right delegation mechanism.
|
|
|
181
183
|
### Hard rules for delegation
|
|
182
184
|
|
|
183
185
|
- Prefer **parallel delegation** when subtasks are independent and touch different concerns.
|
|
186
|
+
- When you launch background work, record the returned background task id (`bg_...`) separately from any session id (`ses_...`). Do not confuse them.
|
|
187
|
+
- After launching a background task, wait for the upstream completion signal before collecting output. Do not call `background_output` immediately after launch.
|
|
188
|
+
- When the runtime signals completion, call `background_output` with the **background task id** and synthesize the delegated result before taking the next major step.
|
|
184
189
|
- After delegating research or exploration, **wait for the delegated result and synthesize it**. Do not repeat the same search locally unless the delegated output is clearly insufficient.
|
|
185
190
|
- Avoid unnecessary nested delegation. Use another layer of subagents only when the specialist adds clear value, because upstream background-agent depth is limited.
|
|
186
191
|
- Name the target domain up front in the prompt so the receiving agent can act without re-triaging the same request.
|
|
@@ -216,6 +221,14 @@ Every slash command must support a `--help` form.
|
|
|
216
221
|
|
|
217
222
|
---
|
|
218
223
|
|
|
224
|
+
### `/diagnose <issue>`
|
|
225
|
+
|
|
226
|
+
Run a deterministic engineering diagnosis loop before implementation or refactor decisions.
|
|
227
|
+
|
|
228
|
+
- Invoke via `skill(name="diagnose")` to reproduce the failure, rank hypotheses, add the smallest proving instrumentation, and define the tightest regression surface before changing code.
|
|
229
|
+
|
|
230
|
+
---
|
|
231
|
+
|
|
219
232
|
### `/validate-page <url>`
|
|
220
233
|
|
|
221
234
|
Run a browser-backed audit for accessibility, CWV, console errors, broken links, and a screenshot.
|
|
@@ -264,6 +277,7 @@ Translate the alert into blast radius, triage steps, root-cause branches, succes
|
|
|
264
277
|
|
|
265
278
|
## Sub-Skill Delegation
|
|
266
279
|
|
|
280
|
+
- Invoke via `skill(name="diagnose")` for deterministic bug reproduction, ranked hypothesis testing, focused instrumentation, and regression-surface definition before implementation starts.
|
|
267
281
|
- Invoke via `skill(name="tdd")` for red-green-refactor loops, regression hardening, and defect-driven delivery.
|
|
268
282
|
- Invoke via `skill(name="vercel-architect")` for Vercel, App Router, Edge runtime, Neon branching, and performance work.
|
|
269
283
|
- Invoke via `skill(name="db-architect")` for schema design, query analysis, migrations, and index auditing.
|
package/agents/legal-counsel.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
description: >
|
|
3
3
|
Marketing Wunderkind — CMO-calibre strategist for brand, community, developer advocacy, docs-led launches, adoption, PR, and go-to-market work.
|
|
4
|
-
wunderkind_version: "0.
|
|
4
|
+
wunderkind_version: "0.18.2"
|
|
5
5
|
mode: all
|
|
6
6
|
temperature: 0.3
|
|
7
7
|
permission:
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
description: >
|
|
3
3
|
Product Wunderkind — Default orchestrator and front door for all Wunderkind requests. Routes, clarifies, and synthesizes across specialists. VP Product authority for strategy, roadmaps, PRDs, OKRs, issue intake, acceptance review, and decomposition.
|
|
4
|
-
wunderkind_version: "0.
|
|
4
|
+
wunderkind_version: "0.18.2"
|
|
5
5
|
mode: all
|
|
6
6
|
temperature: 0.2
|
|
7
7
|
permission:
|
|
@@ -179,6 +179,9 @@ Use this contract to choose the right delegation mechanism.
|
|
|
179
179
|
### Hard rules for delegation
|
|
180
180
|
|
|
181
181
|
- Prefer **parallel delegation** when subtasks are independent and touch different concerns.
|
|
182
|
+
- When you launch background work, record the returned background task id (`bg_...`) separately from any session id (`ses_...`). Do not confuse them.
|
|
183
|
+
- After launching a background task, wait for the upstream completion signal before collecting output. Do not call `background_output` immediately after launch.
|
|
184
|
+
- When the runtime signals completion, call `background_output` with the **background task id** and synthesize the delegated result before taking the next major step.
|
|
182
185
|
- After delegating research or exploration, **wait for the delegated result and synthesize it**. Do not repeat the same search locally unless the delegated output is clearly insufficient.
|
|
183
186
|
- Avoid unnecessary nested delegation. Use another layer of subagents only when the specialist adds clear value, because upstream background-agent depth is limited.
|
|
184
187
|
- Name the target domain up front in the prompt so the receiving agent can act without re-triaging the same request.
|
package/commands/docs-index.md
CHANGED
package/commands/dream.md
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
description: Wunderkind-native mixed workflow for ideation, SOUL synthesis, and exploration
|
|
3
3
|
agent: product-wunderkind
|
|
4
|
+
subtask: true
|
|
4
5
|
---
|
|
5
6
|
|
|
6
7
|
You are coordinating the `/dream` workflow—a Wunderkind-native mixed ideation, SOUL synthesis, and exploration process.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"fullstack-wunderkind.d.ts","sourceRoot":"","sources":["../../src/agents/fullstack-wunderkind.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,kBAAkB,CAAA;AACnD,OAAO,KAAK,EAAa,mBAAmB,EAAE,MAAM,YAAY,CAAA;AAMhE,eAAO,MAAM,6BAA6B,EAAE,mBA2B3C,CAAA;AAED,wBAAgB,8BAA8B,CAAC,KAAK,EAAE,MAAM,GAAG,WAAW,
|
|
1
|
+
{"version":3,"file":"fullstack-wunderkind.d.ts","sourceRoot":"","sources":["../../src/agents/fullstack-wunderkind.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,kBAAkB,CAAA;AACnD,OAAO,KAAK,EAAa,mBAAmB,EAAE,MAAM,YAAY,CAAA;AAMhE,eAAO,MAAM,6BAA6B,EAAE,mBA2B3C,CAAA;AAED,wBAAgB,8BAA8B,CAAC,KAAK,EAAE,MAAM,GAAG,WAAW,CAiMzE;yBAjMe,8BAA8B"}
|
|
@@ -8,7 +8,7 @@ export const FULLSTACK_WUNDERKIND_METADATA = {
|
|
|
8
8
|
triggers: [
|
|
9
9
|
{
|
|
10
10
|
domain: "Engineering",
|
|
11
|
-
trigger: "Full-stack development, database work, Vercel/Next.js, architecture decisions, code review, TDD execution, regression coverage, technical defect diagnosis, reliability engineering, runbooks, admin tooling, AI integration",
|
|
11
|
+
trigger: "Full-stack development, database work, Vercel/Next.js, architecture decisions, code review, TDD execution, deterministic defect diagnosis, regression coverage, technical defect diagnosis, reliability engineering, runbooks, admin tooling, AI integration",
|
|
12
12
|
},
|
|
13
13
|
],
|
|
14
14
|
useWhen: [
|
|
@@ -168,6 +168,8 @@ You make precise, pragmatic engineering decisions. You know when to be pragmatic
|
|
|
168
168
|
|
|
169
169
|
**Regression depth follows boundary crossings.** Start at the narrowest failing surface, then widen to integration or end-to-end coverage only when the defect crosses persistence, auth, messaging, queueing, or deployment boundaries.
|
|
170
170
|
|
|
171
|
+
**Use the \`diagnose\` skill before speculative rewriting.** Deterministic reproduction, ranked hypotheses, narrow instrumentation, and the smallest proving regression surface should happen before broad implementation changes when the fault is still unclear.
|
|
172
|
+
|
|
171
173
|
**Use the \`tdd\` skill for execution-heavy quality work.** Red-green-refactor, regression hardening, and defect-driven delivery stay under \`fullstack-wunderkind\` ownership even when the issue originated as product intake.
|
|
172
174
|
|
|
173
175
|
---
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"fullstack-wunderkind.js","sourceRoot":"","sources":["../../src/agents/fullstack-wunderkind.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,8BAA8B,EAAE,6BAA6B,EAAE,2BAA2B,EAAE,0BAA0B,EAAE,MAAM,6BAA6B,CAAA;AACpK,OAAO,EAAE,6BAA6B,EAAE,MAAM,qBAAqB,CAAA;AAEnE,MAAM,IAAI,GAAc,KAAK,CAAA;AAE7B,MAAM,CAAC,MAAM,6BAA6B,GAAwB;IAChE,QAAQ,EAAE,YAAY;IACtB,IAAI,EAAE,WAAW;IACjB,WAAW,EAAE,sBAAsB;IACnC,QAAQ,EAAE;QACR;YACE,MAAM,EAAE,aAAa;YACrB,OAAO,EACL,
|
|
1
|
+
{"version":3,"file":"fullstack-wunderkind.js","sourceRoot":"","sources":["../../src/agents/fullstack-wunderkind.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,8BAA8B,EAAE,6BAA6B,EAAE,2BAA2B,EAAE,0BAA0B,EAAE,MAAM,6BAA6B,CAAA;AACpK,OAAO,EAAE,6BAA6B,EAAE,MAAM,qBAAqB,CAAA;AAEnE,MAAM,IAAI,GAAc,KAAK,CAAA;AAE7B,MAAM,CAAC,MAAM,6BAA6B,GAAwB;IAChE,QAAQ,EAAE,YAAY;IACtB,IAAI,EAAE,WAAW;IACjB,WAAW,EAAE,sBAAsB;IACnC,QAAQ,EAAE;QACR;YACE,MAAM,EAAE,aAAa;YACrB,OAAO,EACL,8PAA8P;SACjQ;KACF;IACD,OAAO,EAAE;QACP,0DAA0D;QAC1D,gDAAgD;QAChD,uEAAuE;QACvE,6DAA6D;QAC7D,sEAAsE;QACtE,oGAAoG;QACpG,gGAAgG;QAChG,kDAAkD;KACnD;IACD,SAAS,EAAE;QACT,8EAA8E;QAC9E,+CAA+C;QAC/C,oFAAoF;QACpF,mGAAmG;KACpG;CACF,CAAA;AAED,MAAM,UAAU,8BAA8B,CAAC,KAAa;IAC1D,MAAM,wBAAwB,GAAG,6BAA6B,CAAC;QAC7D,SAAS,EAAE,gEAAgE;QAC3E,SAAS,EAAE,6DAA6D;QACxE,QAAQ,EAAE,iEAAiE;KAC5E,CAAC,CAAA;IACF,MAAM,yBAAyB,GAAG,8BAA8B,EAAE,CAAA;IAClE,MAAM,sBAAsB,GAAG,2BAA2B,EAAE,CAAA;IAC5D,MAAM,oBAAoB,GAAG,0BAA0B,CAAC,6BAA6B,CAAC,sBAAsB,CAAC,CAAC,CAAA;IAE9G,OAAO;QACL,WAAW,EACT,sgDAAsgD;QACxgD,IAAI,EAAE,IAAI;QACV,KAAK;QACL,WAAW,EAAE,GAAG;QAChB,MAAM,EAAE;;;;EAIV,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAsJtB,yBAAyB;;;;EAIzB,oBAAoB;;;;EAIpB,wBAAwB;;;;;;;;;;;;;qGAa2E;KAClG,CAAA;AACH,CAAC;AAED,8BAA8B,CAAC,IAAI,GAAG,IAAI,CAAA"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"shared-prompt-sections.d.ts","sourceRoot":"","sources":["../../src/agents/shared-prompt-sections.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,qBAAqB,CAAA;AAE/D,wBAAgB,6BAA6B,CAAC,OAAO,EAAE;IACrD,SAAS,EAAE,MAAM,CAAA;IACjB,SAAS,EAAE,MAAM,CAAA;IACjB,QAAQ,EAAE,MAAM,CAAA;CACjB,GAAG,MAAM,CAgBT;AAED,wBAAgB,2BAA2B,IAAI,MAAM,CAUpD;AAED,wBAAgB,4BAA4B,IAAI,MAAM,CAKrD;AAED,wBAAgB,0BAA0B,CAAC,QAAQ,EAAE,oBAAoB,GAAG,MAAM,CAiBjF;AAED,wBAAgB,8BAA8B,IAAI,MAAM,
|
|
1
|
+
{"version":3,"file":"shared-prompt-sections.d.ts","sourceRoot":"","sources":["../../src/agents/shared-prompt-sections.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,qBAAqB,CAAA;AAE/D,wBAAgB,6BAA6B,CAAC,OAAO,EAAE;IACrD,SAAS,EAAE,MAAM,CAAA;IACjB,SAAS,EAAE,MAAM,CAAA;IACjB,QAAQ,EAAE,MAAM,CAAA;CACjB,GAAG,MAAM,CAgBT;AAED,wBAAgB,2BAA2B,IAAI,MAAM,CAUpD;AAED,wBAAgB,4BAA4B,IAAI,MAAM,CAKrD;AAED,wBAAgB,0BAA0B,CAAC,QAAQ,EAAE,oBAAoB,GAAG,MAAM,CAiBjF;AAED,wBAAgB,8BAA8B,IAAI,MAAM,CAyCvD"}
|
|
@@ -65,6 +65,9 @@ Use this contract to choose the right delegation mechanism.
|
|
|
65
65
|
### Hard rules for delegation
|
|
66
66
|
|
|
67
67
|
- Prefer **parallel delegation** when subtasks are independent and touch different concerns.
|
|
68
|
+
- When you launch background work, record the returned background task id (\`bg_...\`) separately from any session id (\`ses_...\`). Do not confuse them.
|
|
69
|
+
- After launching a background task, wait for the upstream completion signal before collecting output. Do not call \`background_output\` immediately after launch.
|
|
70
|
+
- When the runtime signals completion, call \`background_output\` with the **background task id** and synthesize the delegated result before taking the next major step.
|
|
68
71
|
- After delegating research or exploration, **wait for the delegated result and synthesize it**. Do not repeat the same search locally unless the delegated output is clearly insufficient.
|
|
69
72
|
- Avoid unnecessary nested delegation. Use another layer of subagents only when the specialist adds clear value, because upstream background-agent depth is limited.
|
|
70
73
|
- Name the target domain up front in the prompt so the receiving agent can act without re-triaging the same request.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"shared-prompt-sections.js","sourceRoot":"","sources":["../../src/agents/shared-prompt-sections.ts"],"names":[],"mappings":"AAEA,MAAM,UAAU,6BAA6B,CAAC,OAI7C;IACC,OAAO;;;;;;;;;eASM,OAAO,CAAC,SAAS;eACjB,OAAO,CAAC,SAAS;cAClB,OAAO,CAAC,QAAQ;;;kVAGoT,CAAA;AAClV,CAAC;AAED,MAAM,UAAU,2BAA2B;IACzC,OAAO;;;;;;;;oNAQ2M,CAAA;AACpN,CAAC;AAED,MAAM,UAAU,4BAA4B;IAC1C,OAAO;;;6IAGoI,CAAA;AAC7I,CAAC;AAED,MAAM,UAAU,0BAA0B,CAAC,QAA8B;IACvE,MAAM,aAAa,GAAG,QAAQ,CAAC,QAAQ,CAAC,GAAG,CAAC,CAAC,OAAO,EAAE,EAAE;QACtD,MAAM,OAAO,GAAG,OAAO,CAAC,OAAO,EAAE,GAAG,CAAC,CAAC,MAAM,EAAE,EAAE,CAAC,KAAK,MAAM,EAAE,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAA;QAC1E,OAAO,CAAC,SAAS,OAAO,CAAC,OAAO,IAAI,EAAE,OAAO,CAAC,OAAO,EAAE,OAAO,CAAC,CAAC,MAAM,CAAC,CAAC,IAAI,EAAE,EAAE,CAAC,IAAI,KAAK,SAAS,IAAI,IAAI,KAAK,EAAE,CAAC,CAAC,IAAI,CAAC,MAAM,CAAC,CAAA;IAClI,CAAC,CAAC,CAAA;IAEF,MAAM,aAAa,GAAG,QAAQ,CAAC,QAAQ,EAAE,GAAG,CAAC,CAAC,OAAO,EAAE,EAAE;QACvD,MAAM,KAAK,GAAG,OAAO,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,IAAI,EAAE,EAAE,CAAC,KAAK,IAAI,EAAE,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAA;QACjE,OAAO,CAAC,MAAM,OAAO,CAAC,OAAO,EAAE,EAAE,KAAK,CAAC,CAAC,IAAI,CAAC,MAAM,CAAC,CAAA;IACtD,CAAC,CAAC,IAAI,EAAE,CAAA;IAER,OAAO;QACL,mBAAmB;QACnB,4BAA4B,EAAE;QAC9B,GAAG,aAAa;QAChB,GAAG,aAAa;KACjB,CAAC,IAAI,CAAC,aAAa,CAAC,CAAA;AACvB,CAAC;AAED,MAAM,UAAU,8BAA8B;IAC5C,OAAO
|
|
1
|
+
{"version":3,"file":"shared-prompt-sections.js","sourceRoot":"","sources":["../../src/agents/shared-prompt-sections.ts"],"names":[],"mappings":"AAEA,MAAM,UAAU,6BAA6B,CAAC,OAI7C;IACC,OAAO;;;;;;;;;eASM,OAAO,CAAC,SAAS;eACjB,OAAO,CAAC,SAAS;cAClB,OAAO,CAAC,QAAQ;;;kVAGoT,CAAA;AAClV,CAAC;AAED,MAAM,UAAU,2BAA2B;IACzC,OAAO;;;;;;;;oNAQ2M,CAAA;AACpN,CAAC;AAED,MAAM,UAAU,4BAA4B;IAC1C,OAAO;;;6IAGoI,CAAA;AAC7I,CAAC;AAED,MAAM,UAAU,0BAA0B,CAAC,QAA8B;IACvE,MAAM,aAAa,GAAG,QAAQ,CAAC,QAAQ,CAAC,GAAG,CAAC,CAAC,OAAO,EAAE,EAAE;QACtD,MAAM,OAAO,GAAG,OAAO,CAAC,OAAO,EAAE,GAAG,CAAC,CAAC,MAAM,EAAE,EAAE,CAAC,KAAK,MAAM,EAAE,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAA;QAC1E,OAAO,CAAC,SAAS,OAAO,CAAC,OAAO,IAAI,EAAE,OAAO,CAAC,OAAO,EAAE,OAAO,CAAC,CAAC,MAAM,CAAC,CAAC,IAAI,EAAE,EAAE,CAAC,IAAI,KAAK,SAAS,IAAI,IAAI,KAAK,EAAE,CAAC,CAAC,IAAI,CAAC,MAAM,CAAC,CAAA;IAClI,CAAC,CAAC,CAAA;IAEF,MAAM,aAAa,GAAG,QAAQ,CAAC,QAAQ,EAAE,GAAG,CAAC,CAAC,OAAO,EAAE,EAAE;QACvD,MAAM,KAAK,GAAG,OAAO,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,IAAI,EAAE,EAAE,CAAC,KAAK,IAAI,EAAE,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAA;QACjE,OAAO,CAAC,MAAM,OAAO,CAAC,OAAO,EAAE,EAAE,KAAK,CAAC,CAAC,IAAI,CAAC,MAAM,CAAC,CAAA;IACtD,CAAC,CAAC,IAAI,EAAE,CAAA;IAER,OAAO;QACL,mBAAmB;QACnB,4BAA4B,EAAE;QAC9B,GAAG,aAAa;QAChB,GAAG,aAAa;KACjB,CAAC,IAAI,CAAC,aAAa,CAAC,CAAA;AACvB,CAAC;AAED,MAAM,UAAU,8BAA8B;IAC5C,OAAO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OAuCF,CAAA;AACP,CAAC"}
|
|
@@ -117,6 +117,10 @@ export declare const RETAINED_AGENT_SLASH_COMMANDS: {
|
|
|
117
117
|
};
|
|
118
118
|
readonly "fullstack-wunderkind": {
|
|
119
119
|
readonly commands: readonly [{
|
|
120
|
+
readonly command: "/diagnose <issue>";
|
|
121
|
+
readonly summary: "Run a deterministic engineering diagnosis loop before implementation or refactor decisions.";
|
|
122
|
+
readonly details: readonly ["Invoke via `skill(name=\"diagnose\")` to reproduce the failure, rank hypotheses, add the smallest proving instrumentation, and define the tightest regression surface before changing code."];
|
|
123
|
+
}, {
|
|
120
124
|
readonly command: "/validate-page <url>";
|
|
121
125
|
readonly summary: "Run a browser-backed audit for accessibility, CWV, console errors, broken links, and a screenshot.";
|
|
122
126
|
readonly details: readonly ["Return a CWV table with measured vs target values (`LCP < 2.5s`, `CLS < 0.1`, `FCP < 1.8s`, `TTFB < 800ms`) plus raw violations and errors."];
|
|
@@ -142,7 +146,7 @@ export declare const RETAINED_AGENT_SLASH_COMMANDS: {
|
|
|
142
146
|
}];
|
|
143
147
|
readonly sections: readonly [{
|
|
144
148
|
readonly heading: "Sub-Skill Delegation";
|
|
145
|
-
readonly items: readonly ["Invoke via `skill(name=\"tdd\")` for red-green-refactor loops, regression hardening, and defect-driven delivery.", "Invoke via `skill(name=\"vercel-architect\")` for Vercel, App Router, Edge runtime, Neon branching, and performance work.", "Invoke via `skill(name=\"db-architect\")` for schema design, query analysis, migrations, and index auditing.", "Invoke via `skill(name=\"improve-codebase-architecture\")` for deep-module RFCs, seam design, and structural refactoring plans."];
|
|
149
|
+
readonly items: readonly ["Invoke via `skill(name=\"diagnose\")` for deterministic bug reproduction, ranked hypothesis testing, focused instrumentation, and regression-surface definition before implementation starts.", "Invoke via `skill(name=\"tdd\")` for red-green-refactor loops, regression hardening, and defect-driven delivery.", "Invoke via `skill(name=\"vercel-architect\")` for Vercel, App Router, Edge runtime, Neon branching, and performance work.", "Invoke via `skill(name=\"db-architect\")` for schema design, query analysis, migrations, and index auditing.", "Invoke via `skill(name=\"improve-codebase-architecture\")` for deep-module RFCs, seam design, and structural refactoring plans."];
|
|
146
150
|
}, {
|
|
147
151
|
readonly heading: "Delegation Patterns";
|
|
148
152
|
readonly items: readonly ["Delegate via `task(...)` to `visual-engineering` for UI implementation and coded visual work.", "Delegate via `task(...)` to `agent-browser` for browser automation, E2E capture, and page validation.", "Delegate via `task(...)` to `explore` for codebase mapping and `librarian` for external library/documentation research.", "Delegate via `task(...)` to `git-master` for git operations.", "Invoke via `skill(name=\"technical-writer\")` for external developer docs or tutorials."];
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"slash-commands.d.ts","sourceRoot":"","sources":["../../src/agents/slash-commands.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,sBAAsB;IACrC,OAAO,EAAE,MAAM,CAAA;IACf,OAAO,EAAE,MAAM,CAAA;IACf,OAAO,CAAC,EAAE,SAAS,MAAM,EAAE,CAAA;CAC5B;AAED,MAAM,WAAW,mBAAmB;IAClC,OAAO,EAAE,MAAM,CAAA;IACf,KAAK,EAAE,SAAS,MAAM,EAAE,CAAA;CACzB;AAED,MAAM,WAAW,oBAAoB;IACnC,QAAQ,EAAE,SAAS,sBAAsB,EAAE,CAAA;IAC3C,QAAQ,CAAC,EAAE,SAAS,mBAAmB,EAAE,CAAA;CAC1C;AAED,MAAM,WAAW,8BAA8B,CAAC,MAAM,SAAS,MAAM,GAAG,MAAM;IAC5E,KAAK,EAAE,MAAM,CAAA;IACb,IAAI,EAAE,MAAM,CAAA;IACZ,OAAO,EAAE,MAAM,CAAA;IACf,OAAO,EAAE,MAAM,CAAA;IACf,OAAO,CAAC,EAAE,SAAS,MAAM,EAAE,CAAA;CAC5B;AAED,eAAO,MAAM,6BAA6B
|
|
1
|
+
{"version":3,"file":"slash-commands.d.ts","sourceRoot":"","sources":["../../src/agents/slash-commands.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,sBAAsB;IACrC,OAAO,EAAE,MAAM,CAAA;IACf,OAAO,EAAE,MAAM,CAAA;IACf,OAAO,CAAC,EAAE,SAAS,MAAM,EAAE,CAAA;CAC5B;AAED,MAAM,WAAW,mBAAmB;IAClC,OAAO,EAAE,MAAM,CAAA;IACf,KAAK,EAAE,SAAS,MAAM,EAAE,CAAA;CACzB;AAED,MAAM,WAAW,oBAAoB;IACnC,QAAQ,EAAE,SAAS,sBAAsB,EAAE,CAAA;IAC3C,QAAQ,CAAC,EAAE,SAAS,mBAAmB,EAAE,CAAA;CAC1C;AAED,MAAM,WAAW,8BAA8B,CAAC,MAAM,SAAS,MAAM,GAAG,MAAM;IAC5E,KAAK,EAAE,MAAM,CAAA;IACb,IAAI,EAAE,MAAM,CAAA;IACZ,OAAO,EAAE,MAAM,CAAA;IACf,OAAO,EAAE,MAAM,CAAA;IACf,OAAO,CAAC,EAAE,SAAS,MAAM,EAAE,CAAA;CAC5B;AAED,eAAO,MAAM,6BAA6B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA+RhC,CAAA;AAEV,MAAM,MAAM,8BAA8B,GAAG,MAAM,OAAO,6BAA6B,CAAA;AAiBvF,wBAAgB,sCAAsC,CAAC,MAAM,SAAS,MAAM,EAC1E,QAAQ,EAAE,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,oBAAoB,CAAC,CAAC,GACvD,KAAK,CAAC,8BAA8B,CAAC,MAAM,CAAC,CAAC,CA2B/C;AAED,wBAAgB,kCAAkC,IAAI,KAAK,CAAC,8BAA8B,CAAC,8BAA8B,CAAC,CAAC,CAE1H;AAED,wBAAgB,4CAA4C,CAAC,OAAO,EAAE,8BAA8B,GAAG,MAAM,CAwC5G"}
|
|
@@ -150,6 +150,11 @@ export const RETAINED_AGENT_SLASH_COMMANDS = {
|
|
|
150
150
|
},
|
|
151
151
|
"fullstack-wunderkind": {
|
|
152
152
|
commands: [
|
|
153
|
+
{
|
|
154
|
+
command: "/diagnose <issue>",
|
|
155
|
+
summary: "Run a deterministic engineering diagnosis loop before implementation or refactor decisions.",
|
|
156
|
+
details: ["Invoke via `skill(name=\"diagnose\")` to reproduce the failure, rank hypotheses, add the smallest proving instrumentation, and define the tightest regression surface before changing code."],
|
|
157
|
+
},
|
|
153
158
|
{
|
|
154
159
|
command: "/validate-page <url>",
|
|
155
160
|
summary: "Run a browser-backed audit for accessibility, CWV, console errors, broken links, and a screenshot.",
|
|
@@ -185,6 +190,7 @@ export const RETAINED_AGENT_SLASH_COMMANDS = {
|
|
|
185
190
|
{
|
|
186
191
|
heading: "Sub-Skill Delegation",
|
|
187
192
|
items: [
|
|
193
|
+
"Invoke via `skill(name=\"diagnose\")` for deterministic bug reproduction, ranked hypothesis testing, focused instrumentation, and regression-surface definition before implementation starts.",
|
|
188
194
|
"Invoke via `skill(name=\"tdd\")` for red-green-refactor loops, regression hardening, and defect-driven delivery.",
|
|
189
195
|
"Invoke via `skill(name=\"vercel-architect\")` for Vercel, App Router, Edge runtime, Neon branching, and performance work.",
|
|
190
196
|
"Invoke via `skill(name=\"db-architect\")` for schema design, query analysis, migrations, and index auditing.",
|
|
@@ -328,6 +334,7 @@ export function renderGeneratedRetainedNativeCommandMarkdown(command) {
|
|
|
328
334
|
"---",
|
|
329
335
|
`description: ${JSON.stringify(command.summary)}`,
|
|
330
336
|
`agent: ${command.agent}`,
|
|
337
|
+
"subtask: true",
|
|
331
338
|
`name: ${command.name}`,
|
|
332
339
|
"---",
|
|
333
340
|
"",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"slash-commands.js","sourceRoot":"","sources":["../../src/agents/slash-commands.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"slash-commands.js","sourceRoot":"","sources":["../../src/agents/slash-commands.ts"],"names":[],"mappings":"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"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"gitignore-manager.d.ts","sourceRoot":"","sources":["../../src/cli/gitignore-manager.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"gitignore-manager.d.ts","sourceRoot":"","sources":["../../src/cli/gitignore-manager.ts"],"names":[],"mappings":"AAiBA,MAAM,WAAW,eAAe;IAC9B,OAAO,EAAE,OAAO,CAAA;IAChB,KAAK,EAAE,MAAM,EAAE,CAAA;IACf,cAAc,EAAE,MAAM,EAAE,CAAA;IACxB,KAAK,CAAC,EAAE,MAAM,CAAA;CACf;AAWD,wBAAgB,sBAAsB,CAAC,GAAG,CAAC,EAAE,MAAM,GAAG,eAAe,CA0CpE"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"gitignore-manager.js","sourceRoot":"","sources":["../../src/cli/gitignore-manager.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"gitignore-manager.js","sourceRoot":"","sources":["../../src/cli/gitignore-manager.ts"],"names":[],"mappings":"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"}
|
package/dist/cli/index.js
CHANGED
|
@@ -49,7 +49,7 @@ program
|
|
|
49
49
|
"non-interactive use in CI or scripted environments.",
|
|
50
50
|
"",
|
|
51
51
|
"Upstream naming note: plugin/config naming now prefers oh-my-openagent,",
|
|
52
|
-
"while
|
|
52
|
+
"while legacy oh-my-opencode basenames still load during the transition.",
|
|
53
53
|
].join("\n"))
|
|
54
54
|
.option("--no-tui", "Run non-interactive CLI installer with optional baseline default flags")
|
|
55
55
|
.option("--region <region>", "Geographic region, e.g. 'South Africa', 'United States', 'Global'")
|
|
@@ -137,7 +137,7 @@ program
|
|
|
137
137
|
.description([
|
|
138
138
|
"Add AI tooling traces to .gitignore in the current directory.",
|
|
139
139
|
"",
|
|
140
|
-
"Adds entries for: .wunderkind/, AGENTS.md, .sisyphus/, .opencode/",
|
|
140
|
+
"Adds entries for: .wunderkind/, AGENTS.md, .sisyphus/, .omo/, .opencode/",
|
|
141
141
|
"Skips entries that are already present. Safe to run multiple times.",
|
|
142
142
|
].join("\n"))
|
|
143
143
|
.addHelpText("after", [
|
package/dist/cli/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/cli/index.ts"],"names":[],"mappings":";AACA,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAA;AACnC,OAAO,EAAE,aAAa,EAAE,MAAM,aAAa,CAAA;AAC3C,OAAO,EAAE,eAAe,EAAE,aAAa,EAAE,MAAM,oBAAoB,CAAA;AACnE,OAAO,EAAE,oBAAoB,EAAE,MAAM,aAAa,CAAA;AAClD,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAA;AACnC,OAAO,EAAE,iBAAiB,EAAE,MAAM,cAAc,CAAA;AAChD,OAAO,EAAE,eAAe,EAAE,MAAM,oBAAoB,CAAA;AACpD,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAA;AAC7C,OAAO,EAAE,sBAAsB,EAAE,MAAM,wBAAwB,CAAA;AAG/D,MAAM,OAAO,GAAG,aAAa,CAAC,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAA;AAC9C,MAAM,GAAG,GAAG,OAAO,CAAC,oBAAoB,CAAwB,CAAA;AAEhE,MAAM,eAAe,GAAG,yFAAyF,CAAA;AAEjH,SAAS,gBAAgB,CAAC,QAAgB,EAAE,KAAa;IACvD,MAAM,UAAU,GAAG,KAAK,CAAC,IAAI,EAAE,CAAC,WAAW,EAAE,CAAA;IAC7C,IAAI,UAAU,KAAK,KAAK,IAAI,UAAU,KAAK,GAAG,IAAI,UAAU,KAAK,MAAM;QAAE,OAAO,IAAI,CAAA;IACpF,IAAI,UAAU,KAAK,IAAI,IAAI,UAAU,KAAK,GAAG,IAAI,UAAU,KAAK,OAAO;QAAE,OAAO,KAAK,CAAA;IACrF,OAAO,CAAC,KAAK,CAAC,UAAU,QAAQ,0BAA0B,KAAK,GAAG,CAAC,CAAA;IACnE,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA;AACjB,CAAC;AAED,MAAM,OAAO,GAAG,IAAI,OAAO,EAAE,CAAA;AAE7B,OAAO;KACJ,IAAI,CAAC,YAAY,CAAC;KAClB,WAAW,CACV;IACE,kEAAkE;IAClE,EAAE;IACF,mDAAmD;IACnD,qEAAqE;IACrE,gFAAgF;IAChF,EAAE;IACF,WAAW;IACX,uCAAuC;IACvC,gDAAgD;IAChD,mDAAmD;IACnD,wEAAwE;IACxE,sDAAsD;IACtD,yCAAyC;CAC1C,CAAC,IAAI,CAAC,IAAI,CAAC,CACb;KACA,OAAO,CAAC,GAAG,CAAC,OAAO,CAAC;KACpB,kBAAkB,EAAE,CAAA;AAEvB,OAAO;KACJ,OAAO,CAAC,SAAS,CAAC;KAClB,WAAW,CACV;IACE,8CAA8C;IAC9C,EAAE;IACF,wDAAwD;IACxD,qDAAqD;IACrD,EAAE;IACF,yEAAyE;IACzE,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/cli/index.ts"],"names":[],"mappings":"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"}
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,qBAAqB,CAAA;AAgLjD,QAAA,MAAM,gBAAgB,EAAE,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,qBAAqB,CAAA;AAgLjD,QAAA,MAAM,gBAAgB,EAAE,MA6KvB,CAAA;AAED,OAAO,EAAE,gBAAgB,IAAI,OAAO,EAAE,CAAA"}
|
package/dist/index.js
CHANGED
|
@@ -115,7 +115,7 @@ function buildCompactionContext(wunderkindConfig) {
|
|
|
115
115
|
Preserve any active retained-agent routing decisions, delegated specialists, loaded Wunderkind skills, and unfinished task graph state. If parallel subagents were launched, keep which subtasks are complete, still running, blocked, or waiting for synthesis. Do not collapse delegated findings into generic summaries that lose ownership or next-step clarity.`,
|
|
116
116
|
`## Wunderkind delegation continuity
|
|
117
117
|
|
|
118
|
-
If the session already delegated research, exploration, or implementation work, preserve the delegated outputs and the synthesis still required. Do not restart the same search loop after compaction unless the preserved output says it was insufficient. Respect upstream background-agent depth limits by favoring continuation of existing delegated work over spawning redundant nested agents.`,
|
|
118
|
+
If the session already delegated research, exploration, or implementation work, preserve the delegated outputs and the synthesis still required. Preserve every active background task id (\`bg_...\`) separately from any agent session id (\`ses_...\`), and keep whether the parent is still waiting for a completion reminder or is ready to call \`background_output\`. Do not restart the same search loop after compaction unless the preserved output says it was insufficient. Respect upstream background-agent depth limits by favoring continuation of existing delegated work over spawning redundant nested agents.`,
|
|
119
119
|
`## Wunderkind mode continuity
|
|
120
120
|
|
|
121
121
|
Preserve whether caveman mode was enabled for the active chat. If the user explicitly turned terse mode on or off, keep that mode decision across compaction unless the user later changed it.`,
|
|
@@ -288,6 +288,7 @@ Legacy delegation shorthand remains valid: Use marketing-wunderkind for GTM, bra
|
|
|
288
288
|
### Tool Usage
|
|
289
289
|
|
|
290
290
|
- Use \`task(...)\` for retained-agent or subagent delegation; always include explicit \`load_skills\` and \`run_in_background\`.
|
|
291
|
+
- For background delegation, keep \`bg_...\` task ids separate from \`ses_...\` session ids, wait for the runtime completion signal, then call \`background_output\` with the background task id.
|
|
291
292
|
- Use \`skill(name="...")\` for shipped skills and sub-skills.
|
|
292
293
|
- Use normal \`Write\`/\`Edit\` for ordinary repo files, docs-output, \`DESIGN.md\`, \`.wunderkind/stitch/\`, and managed \`.sisyphus/\` planning files. Use \`${DURABLE_ARTIFACT_TOOL_NAME}(...)\` only for append-only Wunderkind memory lanes such as \`.sisyphus/notepads/\` and \`.sisyphus/evidence/\`.
|
|
293
294
|
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@grant-vine/wunderkind",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.18.2",
|
|
4
4
|
"description": "Wunderkind \u2014 specialist AI agent addon for OpenCode with 6 retained specialist agents for any software product team",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -37,10 +37,11 @@
|
|
|
37
37
|
},
|
|
38
38
|
"dependencies": {
|
|
39
39
|
"@clack/prompts": "^0.9.1",
|
|
40
|
-
"@opencode-ai/plugin": "1.
|
|
40
|
+
"@opencode-ai/plugin": "1.17.0",
|
|
41
|
+
"@opencode-ai/sdk": "1.17.0",
|
|
41
42
|
"commander": "^13.1.0",
|
|
42
43
|
"jsonc-parser": "^3.3.1",
|
|
43
|
-
"oh-my-openagent": "4.1
|
|
44
|
+
"oh-my-openagent": "4.8.1",
|
|
44
45
|
"picocolors": "^1.1.1"
|
|
45
46
|
},
|
|
46
47
|
"devDependencies": {
|
package/skills/SKILL-STANDARD.md
CHANGED
|
@@ -161,6 +161,7 @@ Historical `.sisyphus/**` archives are intentionally excluded from this complian
|
|
|
161
161
|
| `compliance-officer` | `ciso` | keep | Still maps directly to security, privacy controls, and regulatory guidance under the retained topology. |
|
|
162
162
|
| `code-health` | `fullstack-wunderkind` | keep | Produces severity-ranked audit reports (coupling, testability, dependency risk) as structured markdown; read-only, no automated cleanup. |
|
|
163
163
|
| `db-architect` | `fullstack-wunderkind` | keep | Remains a distinct engineering specialty with clear database and migration scope. |
|
|
164
|
+
| `diagnose` | `fullstack-wunderkind` | keep | Add as the deterministic bug-isolation workflow before implementation or broad refactor decisions. |
|
|
164
165
|
| `design-an-interface` | `fullstack-wunderkind` | keep | Newly imported and already follows the intended trigger and anti-trigger shape. |
|
|
165
166
|
| `experimentation-analyst` | `product-wunderkind` | revise | Reassign from removed `data-analyst`; center this skill on product experiments and feature readouts, with marketing consulted for campaign analytics. |
|
|
166
167
|
| `grill-me` | `product-wunderkind` | keep | Continues to serve as the ambiguity-collapsing intake skill for product framing. |
|
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: diagnose
|
|
3
|
+
description: >
|
|
4
|
+
USE FOR: deterministic bug diagnosis, reproducible failure loops, ranked
|
|
5
|
+
hypotheses, focused instrumentation, root-cause isolation, and deciding the
|
|
6
|
+
smallest proving regression surface before implementation starts.
|
|
7
|
+
|
|
8
|
+
---
|
|
9
|
+
|
|
10
|
+
# Diagnose
|
|
11
|
+
|
|
12
|
+
Adapted from Matt Pocock's `diagnose` skill for Wunderkind's engineering, triage, and
|
|
13
|
+
incident-debugging workflow.
|
|
14
|
+
|
|
15
|
+
## Primary owner
|
|
16
|
+
|
|
17
|
+
**Owned by:** wunderkind:fullstack-wunderkind
|
|
18
|
+
|
|
19
|
+
This skill is explicitly owned by `fullstack-wunderkind`.
|
|
20
|
+
|
|
21
|
+
Use it when the fault is still unclear and engineering must isolate the defect before
|
|
22
|
+
committing to a fix path.
|
|
23
|
+
|
|
24
|
+
## Filesystem scope
|
|
25
|
+
|
|
26
|
+
This skill is diagnosis-first. It reads the nearest repro surface and may write to:
|
|
27
|
+
|
|
28
|
+
- `src/` files only when adding temporary or minimal proving instrumentation
|
|
29
|
+
- `tests/unit/` or the nearest test surface when pinning the failure with a regression
|
|
30
|
+
- `.sisyphus/notepads/` or `.sisyphus/evidence/` when the diagnosis trail must persist
|
|
31
|
+
- `skills/diagnose/SKILL.md` for doctrine maintenance
|
|
32
|
+
|
|
33
|
+
## When to trigger
|
|
34
|
+
|
|
35
|
+
Use this skill for:
|
|
36
|
+
|
|
37
|
+
- bugs that are real but not yet isolated
|
|
38
|
+
- flaky behavior that needs a deterministic repro loop
|
|
39
|
+
- incidents where the likely failing layer is still uncertain
|
|
40
|
+
- regressions where several competing root-cause hypotheses exist
|
|
41
|
+
- product or support handoffs that still need engineering diagnosis before TDD execution
|
|
42
|
+
|
|
43
|
+
## Anti-triggers
|
|
44
|
+
|
|
45
|
+
Do not trigger this skill for:
|
|
46
|
+
|
|
47
|
+
- straightforward fixes where the broken contract and code path are already obvious
|
|
48
|
+
- pure feature work with no defect investigation
|
|
49
|
+
- architecture redesign discussions better served by `design-an-interface` or `improve-codebase-architecture`
|
|
50
|
+
- work that is already in a clear red-green-refactor loop; use `tdd` there instead
|
|
51
|
+
|
|
52
|
+
## Process
|
|
53
|
+
|
|
54
|
+
1. Restate the observed failure as a single testable contract.
|
|
55
|
+
2. Build the smallest deterministic repro loop possible.
|
|
56
|
+
3. List the leading hypotheses in ranked order.
|
|
57
|
+
4. Add the minimum instrumentation or probe that can eliminate one hypothesis at a time.
|
|
58
|
+
5. Identify the failing layer: contract, implementation, fixture, dependency, or environment.
|
|
59
|
+
6. Once the root cause is isolated, define the smallest regression surface that should stay green after the fix.
|
|
60
|
+
7. Hand off into `tdd` or direct implementation only after the diagnosis path is stable.
|
|
61
|
+
|
|
62
|
+
## Diagnostic doctrine
|
|
63
|
+
|
|
64
|
+
- Prefer deterministic repro over intuition.
|
|
65
|
+
- Change one variable at a time while investigating.
|
|
66
|
+
- Remove temporary instrumentation once the root cause is proven unless it provides lasting operational value.
|
|
67
|
+
- Name the failing layer explicitly before proposing a fix.
|
|
68
|
+
- If the evidence points to auth, authorization, or another security-control boundary, escalate to `ciso` instead of normalizing it as an ordinary bug.
|
|
69
|
+
|
|
70
|
+
## Hard rules
|
|
71
|
+
|
|
72
|
+
1. Do not jump to broad rewrites before a repro loop exists.
|
|
73
|
+
2. Do not batch multiple hypotheses into one opaque instrumentation change.
|
|
74
|
+
3. Do not call a problem fixed until the proving regression surface is named.
|
|
75
|
+
4. If the defect becomes clearly behavior-driven, transition into `tdd` instead of keeping diagnosis open-ended.
|
|
76
|
+
|
|
77
|
+
## Review gate
|
|
78
|
+
|
|
79
|
+
This skill is complete only when:
|
|
80
|
+
|
|
81
|
+
1. `fullstack-wunderkind` ownership is explicit.
|
|
82
|
+
2. The workflow is diagnosis-first rather than implementation-first.
|
|
83
|
+
3. The process includes deterministic repro, ranked hypotheses, minimal instrumentation, and a named regression surface.
|
|
84
|
+
4. The boundary with `tdd`, `ciso`, and architecture skills is explicit.
|