@grant-vine/wunderkind 0.18.2 → 0.19.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.
- package/.claude-plugin/plugin.json +1 -1
- package/README.md +22 -9
- package/agents/ciso.md +10 -10
- package/agents/creative-director.md +10 -10
- package/agents/fullstack-wunderkind.md +10 -10
- package/agents/legal-counsel.md +10 -10
- package/agents/marketing-wunderkind.md +10 -10
- package/agents/product-wunderkind.md +12 -12
- package/commands/docs-index.md +1 -1
- package/commands/dream.md +3 -3
- package/dist/agents/shared-prompt-sections.js +9 -9
- package/dist/agents/shared-prompt-sections.js.map +1 -1
- package/dist/agents/slash-commands.d.ts +2 -2
- package/dist/agents/slash-commands.js +2 -2
- package/dist/agents/slash-commands.js.map +1 -1
- package/dist/artifact-writer.d.ts.map +1 -1
- package/dist/artifact-writer.js +5 -4
- package/dist/artifact-writer.js.map +1 -1
- package/dist/cli/cleanup.js +1 -1
- package/dist/cli/cleanup.js.map +1 -1
- package/dist/cli/config-manager/index.js +1 -1
- package/dist/cli/config-manager/index.js.map +1 -1
- package/dist/cli/doctor.d.ts.map +1 -1
- package/dist/cli/doctor.js +18 -12
- package/dist/cli/doctor.js.map +1 -1
- package/dist/cli/index.js +25 -3
- package/dist/cli/index.js.map +1 -1
- package/dist/cli/init.d.ts.map +1 -1
- package/dist/cli/init.js +5 -4
- package/dist/cli/init.js.map +1 -1
- package/dist/cli/migrate.d.ts +5 -0
- package/dist/cli/migrate.d.ts.map +1 -0
- package/dist/cli/migrate.js +120 -0
- package/dist/cli/migrate.js.map +1 -0
- package/dist/cli/uninstall.js +1 -1
- package/dist/cli/uninstall.js.map +1 -1
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/dist/project-artifacts.d.ts +17 -0
- package/dist/project-artifacts.d.ts.map +1 -0
- package/dist/project-artifacts.js +29 -0
- package/dist/project-artifacts.js.map +1 -0
- package/package.json +1 -1
- package/skills/SKILL-STANDARD.md +3 -3
- package/skills/design-an-interface/SKILL.md +2 -2
- package/skills/diagnose/SKILL.md +1 -1
- package/skills/docs-with-grill/SKILL.md +4 -4
- package/skills/grill-me/SKILL.md +2 -2
- package/skills/improve-codebase-architecture/SKILL.md +7 -7
- package/skills/prd-pipeline/SKILL.md +4 -4
- package/skills/setup-wunderkind-workflow/SKILL.md +9 -9
- package/skills/tdd/SKILL.md +1 -1
- package/skills/triage-issue/SKILL.md +1 -1
- package/skills/ubiquitous-language/SKILL.md +4 -4
- package/skills/write-a-skill/SKILL.md +3 -3
|
@@ -21,14 +21,14 @@ Surface architectural friction and propose **deepening opportunities** — refac
|
|
|
21
21
|
|
|
22
22
|
Read:
|
|
23
23
|
- `AGENTS.md`
|
|
24
|
-
- `.
|
|
25
|
-
- `.
|
|
24
|
+
- `.omo/glossary.md` if present
|
|
25
|
+
- `.omo/rfcs/`
|
|
26
26
|
- existing ADR or docs folders relevant to the area
|
|
27
27
|
- the code paths involved in the candidate refactor
|
|
28
28
|
|
|
29
29
|
Write:
|
|
30
|
-
- `.
|
|
31
|
-
- optionally `.
|
|
30
|
+
- `.omo/rfcs/<slug>.md`
|
|
31
|
+
- optionally `.omo/glossary.md` when the architecture discussion depends on a missing canonical term
|
|
32
32
|
|
|
33
33
|
## Architecture language
|
|
34
34
|
|
|
@@ -60,7 +60,7 @@ Use these terms consistently in your analysis:
|
|
|
60
60
|
|
|
61
61
|
## Process
|
|
62
62
|
|
|
63
|
-
1. Read the project language first: `AGENTS.md`, `.
|
|
63
|
+
1. Read the project language first: `AGENTS.md`, `.omo/glossary.md`, and any relevant ADR/RFC history.
|
|
64
64
|
2. Explore the codebase organically and note where understanding one concept requires bouncing across too many shallow modules.
|
|
65
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
66
|
4. Present a numbered list of deepening opportunities. For each candidate include:
|
|
@@ -88,7 +88,7 @@ Use these terms consistently in your analysis:
|
|
|
88
88
|
1. Ground every recommendation in repo evidence, not generic architecture taste.
|
|
89
89
|
2. Prefer deeper modules and clearer seams over surface-level reshuffling.
|
|
90
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 `.
|
|
91
|
+
4. If the conversation depends on a missing domain term, add or update it in `.omo/glossary.md` instead of letting terminology drift.
|
|
92
92
|
5. Never recommend a rewrite without a staged migration path.
|
|
93
93
|
|
|
94
94
|
## Review gate
|
|
@@ -96,5 +96,5 @@ Use these terms consistently in your analysis:
|
|
|
96
96
|
This skill is complete only when:
|
|
97
97
|
- at least one real deepening opportunity is evidenced from the repo
|
|
98
98
|
- the recommendation uses consistent seam/depth/locality language
|
|
99
|
-
- an RFC exists at `.
|
|
99
|
+
- an RFC exists at `.omo/rfcs/<slug>.md`
|
|
100
100
|
- the migration path is incremental and verifiable
|
|
@@ -15,16 +15,16 @@ This skill converts product intent into a durable delivery workflow.
|
|
|
15
15
|
|
|
16
16
|
Read `prdPipelineMode` from `.wunderkind/wunderkind.config.jsonc`.
|
|
17
17
|
|
|
18
|
-
- `filesystem` — create artifacts in `.
|
|
18
|
+
- `filesystem` — create artifacts in `.omo/` via Wunderkind's bounded durable-artifact writer
|
|
19
19
|
- `github` — use `gh`-backed GitHub issues/PRD flow only when the repo is GitHub-ready
|
|
20
20
|
|
|
21
21
|
If the mode is missing, treat it as `filesystem`.
|
|
22
22
|
|
|
23
23
|
## Filesystem mode targets
|
|
24
24
|
|
|
25
|
-
- PRD: `.
|
|
26
|
-
- Plan: `.
|
|
27
|
-
- Work items: `.
|
|
25
|
+
- PRD: `.omo/prds/<slug>.md`
|
|
26
|
+
- Plan: `.omo/plans/<slug>.md`
|
|
27
|
+
- Work items: `.omo/issues/<slug>-phase-N.md`
|
|
28
28
|
|
|
29
29
|
## GitHub mode targets
|
|
30
30
|
|
|
@@ -4,7 +4,7 @@ description: >
|
|
|
4
4
|
USE FOR: repo-local workflow setup, issue flow selection, triage vocabulary,
|
|
5
5
|
glossary/docs location setup, `.sisyphus` conventions, and adapting
|
|
6
6
|
Matt-style setup patterns to Wunderkind-native files like `AGENTS.md` and
|
|
7
|
-
|
|
7
|
+
`.omo/*`.
|
|
8
8
|
|
|
9
9
|
---
|
|
10
10
|
|
|
@@ -22,15 +22,15 @@ Read:
|
|
|
22
22
|
- `AGENTS.md`
|
|
23
23
|
- `CONTEXT.md`
|
|
24
24
|
- `.wunderkind/wunderkind.config.jsonc`
|
|
25
|
-
- `.
|
|
25
|
+
- `.omo/`
|
|
26
26
|
- docs-output settings if present
|
|
27
27
|
- GitHub readiness signals when issue flow might use GitHub
|
|
28
28
|
|
|
29
29
|
Write:
|
|
30
30
|
- `AGENTS.md` (update or add a compact workflow-contract section)
|
|
31
31
|
- `CONTEXT.md` (compact current product/domain context for future docs and grilling work)
|
|
32
|
-
- `.
|
|
33
|
-
- `.
|
|
32
|
+
- `.omo/glossary.md`
|
|
33
|
+
- `.omo/triage/README.md`
|
|
34
34
|
|
|
35
35
|
## When to trigger
|
|
36
36
|
|
|
@@ -56,7 +56,7 @@ Walk these one at a time, not all at once:
|
|
|
56
56
|
## Process
|
|
57
57
|
|
|
58
58
|
1. Explore the current repo state before proposing anything.
|
|
59
|
-
2. Summarize what already exists in `AGENTS.md`, `CONTEXT.md`, `.wunderkind/`, `.
|
|
59
|
+
2. Summarize what already exists in `AGENTS.md`, `CONTEXT.md`, `.wunderkind/`, `.omo/`, and GitHub readiness.
|
|
60
60
|
3. Present one setup decision at a time, with a short explainer and a recommended default.
|
|
61
61
|
4. Show the user the draft workflow contract before writing.
|
|
62
62
|
5. Write the agreed contract into Wunderkind-native locations.
|
|
@@ -74,21 +74,21 @@ Add or update a compact section summarizing:
|
|
|
74
74
|
|
|
75
75
|
Create or refresh the compact shared context file that future docs-grilling, planning, and handoff workflows should read first. Keep it short, current, and domain-focused.
|
|
76
76
|
|
|
77
|
-
### `.
|
|
77
|
+
### `.omo/triage/README.md`
|
|
78
78
|
|
|
79
79
|
Record the canonical triage vocabulary and where issue/triage artifacts should live.
|
|
80
80
|
|
|
81
|
-
### `.
|
|
81
|
+
### `.omo/glossary.md`
|
|
82
82
|
|
|
83
83
|
Create or refresh the shared domain glossary if terminology setup is part of the session.
|
|
84
84
|
|
|
85
85
|
## Hard rules
|
|
86
86
|
|
|
87
87
|
1. Preserve existing repo conventions where possible; do not flatten them into generic defaults.
|
|
88
|
-
2. Prefer Wunderkind-native locations (`AGENTS.md`, `CONTEXT.md`, `.
|
|
88
|
+
2. Prefer Wunderkind-native locations (`AGENTS.md`, `CONTEXT.md`, `.omo/*`) over Matt's `docs/agents/*` layout.
|
|
89
89
|
3. Confirm each decision with the user before writing.
|
|
90
90
|
4. Keep the written contract concise enough that other skills can read it quickly.
|
|
91
91
|
|
|
92
92
|
## Review gate
|
|
93
93
|
|
|
94
|
-
This skill is complete only when the repo has an explicit, readable workflow contract in `AGENTS.md`, the compact shared context in `CONTEXT.md`, triage conventions are written under `.
|
|
94
|
+
This skill is complete only when the repo has an explicit, readable workflow contract in `AGENTS.md`, the compact shared context in `CONTEXT.md`, triage conventions are written under `.omo/triage/`, and glossary ownership/location is no longer ambiguous.
|
package/skills/tdd/SKILL.md
CHANGED
|
@@ -27,7 +27,7 @@ This skill reads the changed implementation plus its nearest test surface and ma
|
|
|
27
27
|
- `tests/unit/` and colocated `*.test.ts` files
|
|
28
28
|
- `src/` files whose public behavior is under test
|
|
29
29
|
- `skills/tdd/SKILL.md` for doctrine maintenance
|
|
30
|
-
- `.
|
|
30
|
+
- `.omo/notepads/` or `.omo/evidence/` when a test strategy or defect trail needs to persist
|
|
31
31
|
|
|
32
32
|
## Runtime context
|
|
33
33
|
|
|
@@ -13,7 +13,7 @@ You investigate a bug or support issue, frame repro confidence and severity, and
|
|
|
13
13
|
|
|
14
14
|
## Output mode
|
|
15
15
|
|
|
16
|
-
- Default: write findings to `.
|
|
16
|
+
- Default: write findings to `.omo/triage/<slug>.md`
|
|
17
17
|
- If `prdPipelineMode` is `github` and GitHub workflow readiness is confirmed, GitHub issue output is acceptable
|
|
18
18
|
|
|
19
19
|
## Required sections
|
|
@@ -3,7 +3,7 @@ name: ubiquitous-language
|
|
|
3
3
|
description: >
|
|
4
4
|
USE FOR: glossary maintenance, shared terminology cleanup, naming alignment,
|
|
5
5
|
canonical terms, alias resolution, domain-language drift, and explicit updates
|
|
6
|
-
|
|
6
|
+
to `.omo/glossary.md`.
|
|
7
7
|
|
|
8
8
|
---
|
|
9
9
|
|
|
@@ -17,7 +17,7 @@ Maintain a shared domain glossary so humans and agents keep using the same words
|
|
|
17
17
|
|
|
18
18
|
## Output target
|
|
19
19
|
|
|
20
|
-
Write or update `.
|
|
20
|
+
Write or update `.omo/glossary.md`.
|
|
21
21
|
|
|
22
22
|
## When to trigger
|
|
23
23
|
|
|
@@ -46,7 +46,7 @@ Write or update `.sisyphus/glossary.md`.
|
|
|
46
46
|
2. Extract candidate terms and detect collisions or synonym drift.
|
|
47
47
|
3. Choose canonical terms where the evidence is strong.
|
|
48
48
|
4. Mark unresolved ambiguity explicitly instead of forcing false consensus.
|
|
49
|
-
5. Update `.
|
|
49
|
+
5. Update `.omo/glossary.md` incrementally.
|
|
50
50
|
|
|
51
51
|
## Formatting guidance
|
|
52
52
|
|
|
@@ -66,4 +66,4 @@ Add an `## Open Questions` section when needed.
|
|
|
66
66
|
|
|
67
67
|
## Review gate
|
|
68
68
|
|
|
69
|
-
This skill is complete only when `.
|
|
69
|
+
This skill is complete only when `.omo/glossary.md` reflects the canonical term decisions and unresolved ambiguities are clearly flagged.
|
|
@@ -26,8 +26,8 @@ technical validation.
|
|
|
26
26
|
|
|
27
27
|
- Main asset: `skills/<skill-name>/SKILL.md`
|
|
28
28
|
- Optional references: `skills/<skill-name>/REFERENCE.md`, `skills/<skill-name>/EXAMPLES.md`
|
|
29
|
-
- Supporting evidence: `.
|
|
30
|
-
- Durable learnings: `.
|
|
29
|
+
- Supporting evidence: `.omo/evidence/`
|
|
30
|
+
- Durable learnings: `.omo/notepads/`
|
|
31
31
|
|
|
32
32
|
`skills/SKILL-STANDARD.md` is the authoritative skill-writing standard for this repo.
|
|
33
33
|
New and revised skills must follow it: trigger-first descriptions, explicit surviving ownership,
|
|
@@ -72,5 +72,5 @@ Do not use this skill for:
|
|
|
72
72
|
1. Skills are authored in `skills/*/SKILL.md`, not in generated `agents/` output.
|
|
73
73
|
2. Every skill must name its owner, trigger surface, and filesystem scope.
|
|
74
74
|
3. Do not copy external skills verbatim; adapt them to Wunderkind personas and artifacts.
|
|
75
|
-
4. If a workflow produces durable project knowledge, store it in `.
|
|
75
|
+
4. If a workflow produces durable project knowledge, store it in `.omo/`.
|
|
76
76
|
5. Keep the main skill tight enough to scan quickly during agent selection.
|