@grant-vine/wunderkind 0.15.0 → 0.16.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (46) hide show
  1. package/.claude-plugin/plugin.json +1 -1
  2. package/README.md +17 -3
  3. package/agents/ciso.md +7 -0
  4. package/agents/fullstack-wunderkind.md +10 -0
  5. package/agents/product-wunderkind.md +17 -2
  6. package/dist/agents/product-wunderkind.js +1 -1
  7. package/dist/agents/shared-prompt-sections.d.ts.map +1 -1
  8. package/dist/agents/shared-prompt-sections.js +7 -0
  9. package/dist/agents/shared-prompt-sections.js.map +1 -1
  10. package/dist/agents/slash-commands.d.ts +7 -2
  11. package/dist/agents/slash-commands.d.ts.map +1 -1
  12. package/dist/agents/slash-commands.js +8 -1
  13. package/dist/agents/slash-commands.js.map +1 -1
  14. package/dist/cli/cli-installer.d.ts +1 -0
  15. package/dist/cli/cli-installer.d.ts.map +1 -1
  16. package/dist/cli/cli-installer.js +35 -1
  17. package/dist/cli/cli-installer.js.map +1 -1
  18. package/dist/cli/config-manager/index.d.ts.map +1 -1
  19. package/dist/cli/config-manager/index.js +112 -33
  20. package/dist/cli/config-manager/index.js.map +1 -1
  21. package/dist/cli/doctor.d.ts.map +1 -1
  22. package/dist/cli/doctor.js +20 -1
  23. package/dist/cli/doctor.js.map +1 -1
  24. package/dist/cli/index.js +24 -2
  25. package/dist/cli/index.js.map +1 -1
  26. package/dist/cli/init.d.ts +1 -0
  27. package/dist/cli/init.d.ts.map +1 -1
  28. package/dist/cli/init.js +10 -0
  29. package/dist/cli/init.js.map +1 -1
  30. package/dist/cli/tui-installer.d.ts.map +1 -1
  31. package/dist/cli/tui-installer.js +14 -1
  32. package/dist/cli/tui-installer.js.map +1 -1
  33. package/dist/cli/types.d.ts +12 -1
  34. package/dist/cli/types.d.ts.map +1 -1
  35. package/dist/index.d.ts.map +1 -1
  36. package/dist/index.js +54 -0
  37. package/dist/index.js.map +1 -1
  38. package/oh-my-openagent.jsonc +2 -2
  39. package/oh-my-opencode.jsonc +2 -2
  40. package/package.json +10 -4
  41. package/schemas/wunderkind.config.schema.json +2 -1
  42. package/skills/SKILL-STANDARD.md +4 -2
  43. package/skills/caveman/SKILL.md +50 -0
  44. package/skills/improve-codebase-architecture/SKILL.md +68 -25
  45. package/skills/setup-wunderkind-workflow/SKILL.md +88 -0
  46. package/skills/ubiquitous-language/SKILL.md +34 -22
package/dist/index.js CHANGED
@@ -108,6 +108,47 @@ function readSoulOverlay(agentKey) {
108
108
  throw err;
109
109
  }
110
110
  }
111
+ function buildCompactionContext(wunderkindConfig) {
112
+ const context = [
113
+ `## Wunderkind compaction priorities
114
+
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
+ `## Wunderkind delegation continuity
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.`,
119
+ `## Wunderkind mode continuity
120
+
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.`,
122
+ ];
123
+ if (wunderkindConfig) {
124
+ context.push(`## Wunderkind runtime context
125
+
126
+ Preserve the resolved runtime context across compaction:
127
+ - region: ${wunderkindConfig.region ?? "Global"}
128
+ - industry: ${(wunderkindConfig.industry ?? "").trim() !== "" ? wunderkindConfig.industry : "(not set)"}
129
+ - primary regulation: ${(wunderkindConfig.primaryRegulation ?? "").trim() !== "" ? wunderkindConfig.primaryRegulation : "(not set)"}
130
+ - secondary regulation: ${(wunderkindConfig.secondaryRegulation ?? "").trim() !== "" ? wunderkindConfig.secondaryRegulation : "(not set)"}
131
+ - team culture: ${wunderkindConfig.teamCulture ?? "pragmatic-balanced"}
132
+ - org structure: ${wunderkindConfig.orgStructure ?? "flat"}`);
133
+ if (wunderkindConfig.docsEnabled === true) {
134
+ const docsPath = wunderkindConfig.docsPath ?? "./docs";
135
+ const docHistoryMode = wunderkindConfig.docHistoryMode ?? "append-dated";
136
+ const docsOutputRuntimeState = getDocsOutputRuntimeState(docsPath);
137
+ context.push(`## Wunderkind docs-output continuity
138
+
139
+ Preserve docs-output decisions and pending writes:
140
+ - docsPath: ${docsOutputRuntimeState.displayDocsPath}
141
+ - docHistoryMode: ${docHistoryMode}
142
+ - docs scope: current project root only`);
143
+ }
144
+ if ((wunderkindConfig.prdPipelineMode ?? "filesystem") === "github") {
145
+ context.push(`## Wunderkind workflow continuity
146
+
147
+ The project is using github PRD/workflow mode. Preserve any active GitHub issue, PRD, triage, or label-mapping decisions instead of downgrading them to generic filesystem-only guidance.`);
148
+ }
149
+ }
150
+ return context;
151
+ }
111
152
  const WunderkindPlugin = async (_input) => {
112
153
  return {
113
154
  tool: {
@@ -143,6 +184,10 @@ const WunderkindPlugin = async (_input) => {
143
184
  output.status = "deny";
144
185
  }
145
186
  },
187
+ "experimental.session.compacting": async (_input, output) => {
188
+ const wunderkindConfig = readWunderkindConfig();
189
+ output.context.push(...buildCompactionContext(wunderkindConfig));
190
+ },
146
191
  "experimental.chat.system.transform": async (_input, output) => {
147
192
  const wunderkindConfig = readWunderkindConfig();
148
193
  const hasDocsOutputSentinel = output.system.join("").includes(DOCS_OUTPUT_SENTINEL);
@@ -246,6 +291,15 @@ Legacy delegation shorthand remains valid: Use marketing-wunderkind for GTM, bra
246
291
  - Use \`skill(name="...")\` for shipped skills and sub-skills.
247
292
  - 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/\`.
248
293
 
294
+ ### Caveman Mode
295
+
296
+ - Caveman mode is available in any chat when the user explicitly asks for \`caveman mode\`, \`be brief\`, \`less tokens\`, or similar terse-mode language.
297
+ - When a chat enables caveman mode, keep replies compressed but exact. Do not alter code blocks, commands, exact errors, or safety-critical warnings.
298
+ - Session-scoped caveman mode stays active until the user asks to turn it off or normal clarity is temporarily required for safety.
299
+ ${wunderkindConfig?.cavemanEnabled === true
300
+ ? `- This project has project-default caveman mode enabled. Product, fullstack, and marketing may use terse high-signal replies by default when they would preserve the same value. Creative may do this for status or logistics only. CISO and legal-counsel should stay in normal explicit mode unless the user asks for caveman mode directly.`
301
+ : ""}
302
+
249
303
  ### Project Configuration
250
304
 
251
305
  Global and project-local Wunderkind config are merged at runtime.
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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"}
@@ -8,8 +8,8 @@
8
8
  //
9
9
  // All agent names are namespaced as "wunderkind:<agent-name>" by the plugin loader.
10
10
  //
11
- // Schema: https://raw.githubusercontent.com/code-yeongyu/oh-my-openagent/dev/assets/oh-my-opencode.schema.json
12
- "$schema": "https://raw.githubusercontent.com/code-yeongyu/oh-my-openagent/dev/assets/oh-my-opencode.schema.json",
11
+ // Schema: https://raw.githubusercontent.com/code-yeongyu/oh-my-opencode/dev/assets/oh-my-opencode.schema.json
12
+ "$schema": "https://raw.githubusercontent.com/code-yeongyu/oh-my-opencode/dev/assets/oh-my-opencode.schema.json",
13
13
 
14
14
  "categories": {
15
15
  "quick": { "model": "anthropic/claude-haiku-4-5" },
@@ -12,8 +12,8 @@
12
12
  //
13
13
  // All agent names are namespaced as "wunderkind:<agent-name>" by the plugin loader.
14
14
  //
15
- // Schema: https://raw.githubusercontent.com/code-yeongyu/oh-my-openagent/dev/assets/oh-my-opencode.schema.json
16
- "$schema": "https://raw.githubusercontent.com/code-yeongyu/oh-my-openagent/dev/assets/oh-my-opencode.schema.json",
15
+ // Schema: https://raw.githubusercontent.com/code-yeongyu/oh-my-opencode/dev/assets/oh-my-opencode.schema.json
16
+ "$schema": "https://raw.githubusercontent.com/code-yeongyu/oh-my-opencode/dev/assets/oh-my-opencode.schema.json",
17
17
 
18
18
  "categories": {
19
19
  "quick": { "model": "anthropic/claude-haiku-4-5" },
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@grant-vine/wunderkind",
3
- "version": "0.15.0",
4
- "description": "Wunderkind \u2014 specialist AI agent addon for OpenCode with 6 retained specialist agents for any software product team",
3
+ "version": "0.16.0",
4
+ "description": "Wunderkind 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",
7
7
  "types": "dist/index.d.ts",
@@ -37,10 +37,10 @@
37
37
  },
38
38
  "dependencies": {
39
39
  "@clack/prompts": "^0.9.1",
40
- "@opencode-ai/plugin": "1.3.17",
40
+ "@opencode-ai/plugin": "1.14.40",
41
41
  "commander": "^13.1.0",
42
42
  "jsonc-parser": "^3.3.1",
43
- "oh-my-openagent": "3.17.4",
43
+ "oh-my-openagent": "3.17.15",
44
44
  "picocolors": "^1.1.1"
45
45
  },
46
46
  "devDependencies": {
@@ -60,5 +60,11 @@
60
60
  "repository": {
61
61
  "type": "git",
62
62
  "url": "https://github.com/grant-vine/wunderkind"
63
+ },
64
+ "overrides": {
65
+ "picomatch": "4.0.4",
66
+ "@hono/node-server": "1.19.13",
67
+ "hono": "4.12.15",
68
+ "path-to-regexp": "8.4.2"
63
69
  }
64
70
  }
@@ -41,7 +41,8 @@
41
41
  "prdPipelineMode": { "enum": ["filesystem", "github"] },
42
42
  "designTool": { "enum": ["none", "google-stitch"] },
43
43
  "designPath": { "type": "string" },
44
- "designMcpOwnership": { "enum": ["none", "wunderkind-managed", "reused-project", "reused-global"] }
44
+ "designMcpOwnership": { "enum": ["none", "wunderkind-managed", "reused-project", "reused-global"] },
45
+ "cavemanEnabled": { "type": "boolean", "description": "Enable project-default caveman mode for terse, high-signal replies when value is preserved." }
45
46
  },
46
47
  "required": [
47
48
  "$schema",
@@ -164,7 +164,8 @@ Historical `.sisyphus/**` archives are intentionally excluded from this complian
164
164
  | `design-an-interface` | `fullstack-wunderkind` | keep | Newly imported and already follows the intended trigger and anti-trigger shape. |
165
165
  | `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
166
  | `grill-me` | `product-wunderkind` | keep | Continues to serve as the ambiguity-collapsing intake skill for product framing. |
167
- | `improve-codebase-architecture` | `fullstack-wunderkind` | keep | Still the right long-form RFC and architecture-boundary skill. |
167
+ | `setup-wunderkind-workflow` | `product-wunderkind` | keep | New Wunderkind-native setup hub for issue flow, triage vocabulary, glossary/docs locations, and `.sisyphus/` workflow conventions. |
168
+ | `improve-codebase-architecture` | `fullstack-wunderkind` | revise | Refresh around seam/depth/locality vocabulary, deletion-test thinking, and RFC-backed structural refactoring. |
168
169
  | `oss-licensing-advisor` | `legal-counsel` | keep | Clear legal specialization with no ownership ambiguity. |
169
170
  | `pen-tester` | `ciso` | keep | Remains the offensive-security counterpart to broader security analysis. |
170
171
  | `prd-pipeline` | `product-wunderkind` | keep | Core orchestrator skill for PRD, plan, and delivery flow. |
@@ -173,10 +174,11 @@ Historical `.sisyphus/**` archives are intentionally excluded from this complian
173
174
  | `tdd` | `fullstack-wunderkind` | revise | Reassign from removed `qa-specialist`; keep as the engineering execution skill for red-green-refactor work. |
174
175
  | `technical-writer` | `marketing-wunderkind` | revise | Reassign from removed `devrel-wunderkind`; documentation and developer-facing content now live under marketing stewardship. |
175
176
  | `triage-issue` | `product-wunderkind` | revise | Reassign from removed `support-engineer` and `qa-specialist`; product now owns front-door triage while engineering supports implementation. |
176
- | `ubiquitous-language` | `product-wunderkind` | keep | Continues to support product-led terminology and shared domain language. |
177
+ | `ubiquitous-language` | `product-wunderkind` | revise | Narrow to glossary maintenance and naming alignment; do not position it as the primary setup/discovery workflow. |
177
178
  | `vercel-architect` | `fullstack-wunderkind` | keep | Remains a focused platform-engineering skill with clear deployment scope. |
178
179
  | `visual-artist` | `creative-director` | keep | Still belongs under the retained design and visual-language owner. |
179
180
  | `write-a-skill` | `product-wunderkind` | revise | Keep as the practical authoring workflow, but make `skills/SKILL-STANDARD.md` the source of truth it references. |
181
+ | `caveman` | `product-wunderkind` | keep | Opt-in terse communication mode that reduces verbosity without changing technical substance. |
180
182
 
181
183
  ## Change policy
182
184
 
@@ -0,0 +1,50 @@
1
+ ---
2
+ name: caveman
3
+ description: >
4
+ USE FOR: terse mode, low-token replies, compressed communication, user asks
5
+ like "caveman mode", "be brief", "less tokens", or "talk like caveman" while
6
+ keeping technical accuracy intact.
7
+
8
+ ---
9
+
10
+ # Caveman
11
+
12
+ Switch to ultra-compressed communication while preserving technical accuracy.
13
+
14
+ ## Primary owner
15
+
16
+ **Owned by:** wunderkind:product-wunderkind
17
+
18
+ ## Output target
19
+
20
+ Chat output only. No filesystem writes.
21
+
22
+ ## When to trigger
23
+
24
+ - The user explicitly asks for caveman mode.
25
+ - The user asks for fewer tokens, briefer replies, or less filler.
26
+ - The task benefits from high-signal, low-ceremony communication.
27
+
28
+ ## Anti-triggers
29
+
30
+ - Do not use by default.
31
+ - Temporarily suspend caveman mode for destructive-action warnings, legal/security risk language, or sequences where excessive compression could cause a dangerous misunderstanding.
32
+ - Do not alter code blocks, exact error messages, or quoted commands.
33
+
34
+ ## Process
35
+
36
+ 1. Drop filler, pleasantries, and hedging.
37
+ 2. Keep technical substance exact.
38
+ 3. Prefer short, direct patterns like `problem -> cause -> fix`.
39
+ 4. Resume normal mode only when the user explicitly asks.
40
+
41
+ ## Hard rules
42
+
43
+ 1. Technical accuracy beats brevity.
44
+ 2. Safety warnings stay explicit even if they require temporarily leaving caveman mode.
45
+ 3. Code, commands, and exact error text remain unchanged.
46
+ 4. If the user seems confused, switch back to clearer prose immediately.
47
+
48
+ ## Review gate
49
+
50
+ This skill is complete when the response is materially shorter, still technically correct, and still safe to act on.
@@ -1,49 +1,83 @@
1
1
  ---
2
2
  name: improve-codebase-architecture
3
3
  description: >
4
- USE FOR: architecture improvement, module boundaries, deep modules, system design,
5
- interface design, coupling reduction, dependency review, RFC creation, structural
6
- refactoring, design-it-twice exploration.
4
+ USE FOR: architecture improvement, codebase deepening, module boundaries, seam
5
+ design, coupling reduction, dependency review, deletion-test analysis, RFC
6
+ creation, structural refactoring, and AI-navigable interfaces.
7
7
 
8
8
  ---
9
9
 
10
10
  # Improve Codebase Architecture
11
11
 
12
- You look for structural friction in the codebase and turn it into a concrete architecture recommendation.
12
+ Surface architectural friction and propose **deepening opportunities** refactors that turn shallow modules into deeper ones with clearer seams, better locality, and higher leverage.
13
13
 
14
14
  ## Primary owner
15
15
 
16
16
  **Owned by:** wunderkind:fullstack-wunderkind
17
17
 
18
- This skill is primarily run by `fullstack-wunderkind`.
18
+ `product-wunderkind` may trigger this skill when recurring delivery pain points point to structural causes, but engineering owns the resulting architecture work.
19
19
 
20
- `product-wunderkind` may trigger it when discovery reveals recurring structural friction, but engineering owns the resulting architecture work.
20
+ ## Filesystem scope
21
21
 
22
- ## Output target
22
+ Read:
23
+ - `AGENTS.md`
24
+ - `.sisyphus/glossary.md` if present
25
+ - `.sisyphus/rfcs/`
26
+ - existing ADR or docs folders relevant to the area
27
+ - the code paths involved in the candidate refactor
23
28
 
24
- Write an RFC to `.sisyphus/rfcs/<slug>.md`.
29
+ Write:
30
+ - `.sisyphus/rfcs/<slug>.md`
31
+ - optionally `.sisyphus/glossary.md` when the architecture discussion depends on a missing canonical term
25
32
 
26
- ## Evaluation lens
33
+ ## Architecture language
27
34
 
28
- - Shallow vs deep modules
29
- - Tight coupling vs replaceable boundaries
30
- - Confusing interfaces vs hard-to-misuse interfaces
31
- - Repeated incidental complexity
32
- - AI navigability and human maintainability
35
+ Use these terms consistently in your analysis:
36
+
37
+ - **Module** anything with an interface and implementation: function, class, package, slice, route group, workflow, or subsystem.
38
+ - **Interface** everything callers must know: types, invariants, ordering, config, error modes, and side effects.
39
+ - **Implementation** the code hidden behind that interface.
40
+ - **Depth** — how much leverage the interface gives relative to the implementation it hides.
41
+ - **Seam** — where an interface lives and where behavior can change without editing in place.
42
+ - **Adapter** — a concrete implementation that satisfies a seam.
43
+ - **Leverage** — what callers gain from a deep module.
44
+ - **Locality** — what maintainers gain when change and knowledge stay concentrated.
45
+
46
+ ## When to trigger
47
+
48
+ - A code path feels like a pass-through maze instead of a coherent module.
49
+ - Feature work repeatedly touches too many files for one concept.
50
+ - Tests are hard to write because the real behavior leaks across seams.
51
+ - The user asks for architecture improvement, structural refactoring, or deep-module opportunities.
52
+ - The codebase is becoming harder for humans or agents to navigate safely.
53
+
54
+ ## Anti-triggers
55
+
56
+ - Do not use for a one-file cleanup or tiny bugfix.
57
+ - Do not use when the main risk is API shape exploration only; prefer `design-an-interface` first.
58
+ - Do not recommend broad rewrites without a migration path.
59
+ - Do not treat "more layers" as architecture quality. Deeper seams matter more than extra wrappers.
33
60
 
34
61
  ## Process
35
62
 
36
- 1. Explore the current module boundaries and dependency shape.
37
- 2. Identify the most painful structural bottlenecks.
38
- 3. Design at least two plausible alternatives before recommending one.
39
- 4. Explain the tradeoffs in terms of correctness, testability, and future change cost.
40
- 5. Write an RFC with migration guidance and verification strategy.
63
+ 1. Read the project language first: `AGENTS.md`, `.sisyphus/glossary.md`, and any relevant ADR/RFC history.
64
+ 2. Explore the codebase organically and note where understanding one concept requires bouncing across too many shallow modules.
65
+ 3. Apply the **deletion test** to suspected shallow modules: if deleting the module simply moves the same complexity into every caller, it was earning its keep; if complexity vanishes, it was probably a pass-through.
66
+ 4. Present a numbered list of deepening opportunities. For each candidate include:
67
+ - files or modules involved
68
+ - current friction
69
+ - proposed seam or deeper module
70
+ - benefits in terms of locality, leverage, and testability
71
+ - migration risk
72
+ 5. Ask the user which candidate to explore before locking an interface or migration plan.
73
+ 6. For the selected candidate, design at least two plausible approaches before recommending one.
74
+ 7. Write an RFC with migration guidance, risks, and verification strategy.
41
75
 
42
76
  ## RFC sections
43
77
 
44
78
  1. Problem
45
- 2. Current pain
46
- 3. Proposed boundary/interface
79
+ 2. Current pain and evidence
80
+ 3. Proposed seam / module boundary
47
81
  4. Alternatives considered
48
82
  5. Migration plan
49
83
  6. Risks and mitigations
@@ -51,7 +85,16 @@ Write an RFC to `.sisyphus/rfcs/<slug>.md`.
51
85
 
52
86
  ## Hard rules
53
87
 
54
- 1. Do not recommend broad rewrites without a migration path.
55
- 2. Prefer deeper modules and clearer interfaces over surface-level reshuffling.
56
- 3. Show tradeoffs explicitly.
57
- 4. Recommendations must be grounded in current repo evidence.
88
+ 1. Ground every recommendation in repo evidence, not generic architecture taste.
89
+ 2. Prefer deeper modules and clearer seams over surface-level reshuffling.
90
+ 3. Show tradeoffs explicitly using locality, leverage, and testability.
91
+ 4. If the conversation depends on a missing domain term, add or update it in `.sisyphus/glossary.md` instead of letting terminology drift.
92
+ 5. Never recommend a rewrite without a staged migration path.
93
+
94
+ ## Review gate
95
+
96
+ This skill is complete only when:
97
+ - at least one real deepening opportunity is evidenced from the repo
98
+ - the recommendation uses consistent seam/depth/locality language
99
+ - an RFC exists at `.sisyphus/rfcs/<slug>.md`
100
+ - the migration path is incremental and verifiable
@@ -0,0 +1,88 @@
1
+ ---
2
+ name: setup-wunderkind-workflow
3
+ description: >
4
+ USE FOR: repo-local workflow setup, issue flow selection, triage vocabulary,
5
+ glossary/docs location setup, `.sisyphus` conventions, and adapting
6
+ Matt-style setup patterns to Wunderkind-native files like `AGENTS.md` and
7
+ `.sisyphus/*`.
8
+
9
+ ---
10
+
11
+ # Setup Wunderkind Workflow
12
+
13
+ Establish the repo-local workflow contract that other Wunderkind skills depend on, without duplicating `wunderkind init` or introducing Matt Pocock's filesystem layout verbatim.
14
+
15
+ ## Primary owner
16
+
17
+ **Owned by:** wunderkind:product-wunderkind
18
+
19
+ ## Filesystem scope
20
+
21
+ Read:
22
+ - `AGENTS.md`
23
+ - `.wunderkind/wunderkind.config.jsonc`
24
+ - `.sisyphus/`
25
+ - docs-output settings if present
26
+ - GitHub readiness signals when issue flow might use GitHub
27
+
28
+ Write:
29
+ - `AGENTS.md` (update or add a compact workflow-contract section)
30
+ - `.sisyphus/glossary.md`
31
+ - `.sisyphus/triage/README.md`
32
+
33
+ ## When to trigger
34
+
35
+ - The repo needs a clear issue-tracker / PRD / triage contract before skills can operate consistently.
36
+ - A maintainer wants Matt-style setup behavior, but adapted to Wunderkind-native locations.
37
+ - The team has not agreed where glossary, triage, and workflow artifacts should live.
38
+ - `prdPipelineMode`, triage vocabulary, or glossary conventions are confusing or implicit.
39
+
40
+ ## Anti-triggers
41
+
42
+ - Do not use this to replace `wunderkind init`; `init` still owns baseline config and project bootstrap.
43
+ - Do not invent a second docs tree like `docs/agents/` unless the user explicitly asks for it.
44
+ - Do not mutate `.wunderkind/wunderkind.config.jsonc` unless the user explicitly asks to change config values.
45
+
46
+ ## Decisions to confirm
47
+
48
+ Walk these one at a time, not all at once:
49
+
50
+ 1. **Workflow backend** — filesystem-first or GitHub-backed PRD / issue flow.
51
+ 2. **Triage vocabulary** — the statuses, severity labels, or role terms the team actually uses.
52
+ 3. **Domain-language locations** — where glossary and architecture language should live.
53
+
54
+ ## Process
55
+
56
+ 1. Explore the current repo state before proposing anything.
57
+ 2. Summarize what already exists in `AGENTS.md`, `.wunderkind/`, `.sisyphus/`, and GitHub readiness.
58
+ 3. Present one setup decision at a time, with a short explainer and a recommended default.
59
+ 4. Show the user the draft workflow contract before writing.
60
+ 5. Write the agreed contract into Wunderkind-native locations.
61
+
62
+ ## Required outputs
63
+
64
+ ### `AGENTS.md`
65
+
66
+ Add or update a compact section summarizing:
67
+ - issue / PRD flow backend
68
+ - triage vocabulary
69
+ - glossary / architecture-doc locations
70
+
71
+ ### `.sisyphus/triage/README.md`
72
+
73
+ Record the canonical triage vocabulary and where issue/triage artifacts should live.
74
+
75
+ ### `.sisyphus/glossary.md`
76
+
77
+ Create or refresh the shared domain glossary if terminology setup is part of the session.
78
+
79
+ ## Hard rules
80
+
81
+ 1. Preserve existing repo conventions where possible; do not flatten them into generic defaults.
82
+ 2. Prefer Wunderkind-native locations (`AGENTS.md`, `.sisyphus/*`) over Matt's `docs/agents/*` layout.
83
+ 3. Confirm each decision with the user before writing.
84
+ 4. Keep the written contract concise enough that other skills can read it quickly.
85
+
86
+ ## Review gate
87
+
88
+ This skill is complete only when the repo has an explicit, readable workflow contract in `AGENTS.md`, triage conventions are written under `.sisyphus/triage/`, and glossary ownership/location is no longer ambiguous.
@@ -1,44 +1,52 @@
1
1
  ---
2
2
  name: ubiquitous-language
3
3
  description: >
4
- USE FOR: shared terminology, domain glossary, DDD language, naming alignment,
5
- canonical terms, ambiguous terms, synonym resolution, product vocabulary,
6
- concept mapping, domain language, glossary generation.
4
+ USE FOR: glossary maintenance, shared terminology cleanup, naming alignment,
5
+ canonical terms, alias resolution, domain-language drift, and explicit updates
6
+ to `.sisyphus/glossary.md`.
7
7
 
8
8
  ---
9
9
 
10
10
  # Ubiquitous Language
11
11
 
12
- You create and maintain a shared domain glossary so humans and agents use the same words for the same concepts.
12
+ Maintain a shared domain glossary so humans and agents keep using the same words for the same concepts.
13
13
 
14
- **Owned by:** wunderkind:product-wunderkind
15
-
16
- ## When to use
14
+ ## Primary owner
17
15
 
18
- - Product discovery introduced new domain concepts
19
- - Multiple terms are being used for the same thing
20
- - One term is overloaded across different meanings
21
- - A PRD, plan, or architecture discussion needs cleaner language
16
+ **Owned by:** wunderkind:product-wunderkind
22
17
 
23
18
  ## Output target
24
19
 
25
20
  Write or update `.sisyphus/glossary.md`.
26
21
 
22
+ ## When to trigger
23
+
24
+ - A term is overloaded or ambiguous and the team needs a canonical definition.
25
+ - Multiple aliases are drifting through PRDs, plans, code comments, or issues.
26
+ - A rename or terminology cleanup needs the glossary updated.
27
+ - Another skill or workflow already established the repo contract, and now the glossary itself needs maintenance.
28
+
29
+ ## Anti-triggers
30
+
31
+ - Do not use this as the default repo setup workflow; prefer `setup-wunderkind-workflow` for initial workflow/domain setup.
32
+ - Do not use it when the real need is a broader discovery interview; prefer `grill-me` or `prd-pipeline`.
33
+ - Do not hide unresolved ambiguity. Mark it explicitly instead of guessing.
34
+
27
35
  ## What to capture
28
36
 
29
37
  - Canonical term
30
- - One-sentence definition
31
- - Common aliases / deprecated synonyms
32
- - Related terms and distinctions
33
- - Open ambiguities still needing resolution
38
+ - Short concrete definition
39
+ - Aliases or deprecated synonyms
40
+ - Related distinctions that prevent future confusion
41
+ - Open questions that still need human resolution
34
42
 
35
43
  ## Process
36
44
 
37
- 1. Scan the conversation, PRD, plan, and relevant repo context.
38
- 2. Extract candidate terms and detect collisions/synonyms.
39
- 3. Choose canonical terms where possible.
40
- 4. Flag unresolved ambiguity explicitly instead of hiding it.
41
- 5. Update `.sisyphus/glossary.md` incrementally if it already exists.
45
+ 1. Scan the conversation, PRD, plan, issue, and relevant repo context.
46
+ 2. Extract candidate terms and detect collisions or synonym drift.
47
+ 3. Choose canonical terms where the evidence is strong.
48
+ 4. Mark unresolved ambiguity explicitly instead of forcing false consensus.
49
+ 5. Update `.sisyphus/glossary.md` incrementally.
42
50
 
43
51
  ## Formatting guidance
44
52
 
@@ -47,11 +55,15 @@ Prefer a compact markdown table:
47
55
  | Term | Definition | Aliases | Notes |
48
56
  |---|---|---|---|
49
57
 
50
- Then add an `## Open Questions` section if needed.
58
+ Add an `## Open Questions` section when needed.
51
59
 
52
60
  ## Hard rules
53
61
 
54
62
  1. One term should map to one concept whenever possible.
55
63
  2. Do not silently merge distinct concepts just because the names sound similar.
56
64
  3. Definitions should be short, concrete, and domain-specific.
57
- 4. If a term is unresolved, mark it unresolved instead of guessing.
65
+ 4. Keep this skill narrow: glossary quality and naming alignment, not full workflow setup.
66
+
67
+ ## Review gate
68
+
69
+ This skill is complete only when `.sisyphus/glossary.md` reflects the canonical term decisions and unresolved ambiguities are clearly flagged.