@grant-vine/wunderkind 0.14.2 → 0.15.1
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 +5 -1
- package/dist/cli/cli-installer.d.ts +12 -0
- package/dist/cli/cli-installer.d.ts.map +1 -1
- package/dist/cli/cli-installer.js +88 -1
- package/dist/cli/cli-installer.js.map +1 -1
- package/dist/cli/config-manager/index.d.ts +3 -1
- package/dist/cli/config-manager/index.d.ts.map +1 -1
- package/dist/cli/config-manager/index.js +182 -39
- package/dist/cli/config-manager/index.js.map +1 -1
- package/dist/cli/doctor.d.ts.map +1 -1
- package/dist/cli/doctor.js +40 -43
- package/dist/cli/doctor.js.map +1 -1
- package/dist/cli/tui-installer.d.ts.map +1 -1
- package/dist/cli/tui-installer.js +20 -1
- package/dist/cli/tui-installer.js.map +1 -1
- package/dist/cli/types.d.ts +25 -0
- package/dist/cli/types.d.ts.map +1 -1
- package/oh-my-openagent.jsonc +77 -0
- package/oh-my-opencode.jsonc +81 -0
- package/package.json +12 -4
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
{
|
|
2
|
+
// Wunderkind OMO configuration template (canonical filename)
|
|
3
|
+
// ──────────────────────────────────────────────────────────────────────
|
|
4
|
+
// Upstream now prefers "oh-my-openagent" for plugin entries and OMO config
|
|
5
|
+
// basenames, while the package and CLI command still remain "oh-my-opencode".
|
|
6
|
+
// Use this file as your project's .opencode/oh-my-openagent.jsonc to
|
|
7
|
+
// activate the full wunderkind agent suite with recommended settings.
|
|
8
|
+
//
|
|
9
|
+
// All agent names are namespaced as "wunderkind:<agent-name>" by the plugin loader.
|
|
10
|
+
//
|
|
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
|
+
|
|
14
|
+
"categories": {
|
|
15
|
+
"quick": { "model": "anthropic/claude-haiku-4-5" },
|
|
16
|
+
"unspecified-low": { "model": "anthropic/claude-sonnet-4-6" },
|
|
17
|
+
"unspecified-high": { "model": "openai/gpt-5.4", "variant": "high" },
|
|
18
|
+
"writing": { "model": "google/gemini-3-flash" },
|
|
19
|
+
"visual-engineering": { "model": "google/gemini-3.1-pro", "variant": "high" }
|
|
20
|
+
},
|
|
21
|
+
|
|
22
|
+
"agents": {
|
|
23
|
+
// ── Marketing ──────────────────────────────────────────────────────────────
|
|
24
|
+
// CMO-calibre: go-to-market, brand, community, developer advocacy, docs-led launches, analytics
|
|
25
|
+
"wunderkind:marketing-wunderkind": {
|
|
26
|
+
"mode": "primary",
|
|
27
|
+
"category": "writing",
|
|
28
|
+
"color": "#FF6B35",
|
|
29
|
+
"description": "CMO-calibre marketing strategist. Brand, GTM, community, PR, developer advocacy, docs-led launches, tutorials, migration support, funnel analytics, and DX adoption work."
|
|
30
|
+
},
|
|
31
|
+
|
|
32
|
+
// ── Design ─────────────────────────────────────────────────────────────────
|
|
33
|
+
// Creative Director: brand identity, design systems, UI/UX, accessibility
|
|
34
|
+
"wunderkind:creative-director": {
|
|
35
|
+
"mode": "primary",
|
|
36
|
+
"category": "visual-engineering",
|
|
37
|
+
"color": "#A855F7",
|
|
38
|
+
"description": "Brand identity, design systems, UI/UX, typography, colour, accessibility, design tokens."
|
|
39
|
+
},
|
|
40
|
+
|
|
41
|
+
// ── Product ─────────────────────────────────────────────────────────────────
|
|
42
|
+
// VP Product-calibre: roadmaps, OKRs, PRDs, sprint planning, task decomposition
|
|
43
|
+
"wunderkind:product-wunderkind": {
|
|
44
|
+
"mode": "primary",
|
|
45
|
+
"category": "writing",
|
|
46
|
+
"color": "#3B82F6",
|
|
47
|
+
"description": "Default orchestrator and front door for all Wunderkind requests. Routes mixed-domain and ambiguous work. VP Product authority: roadmaps, OKRs, PRDs, issue intake, acceptance review, sprint planning, and decomposition."
|
|
48
|
+
},
|
|
49
|
+
|
|
50
|
+
// ── Engineering ─────────────────────────────────────────────────────────────
|
|
51
|
+
// CTO-calibre: full-stack, DB, Vercel/Next.js, architecture, code review, AI
|
|
52
|
+
"wunderkind:fullstack-wunderkind": {
|
|
53
|
+
"mode": "primary",
|
|
54
|
+
"category": "unspecified-high",
|
|
55
|
+
"color": "#10B981",
|
|
56
|
+
"description": "CTO-calibre full-stack engineer. Frontend, backend, DB, Vercel, architecture, AI integration."
|
|
57
|
+
},
|
|
58
|
+
|
|
59
|
+
// ── Security ────────────────────────────────────────────────────────────────
|
|
60
|
+
// CISO: security architecture, OWASP, threat modelling, compliance, pen testing
|
|
61
|
+
"wunderkind:ciso": {
|
|
62
|
+
"mode": "primary",
|
|
63
|
+
"category": "unspecified-high",
|
|
64
|
+
"color": "#EF4444",
|
|
65
|
+
"description": "CISO: security architecture, OWASP, threat modelling, GDPR/CCPA/POPIA, pen testing, breach response."
|
|
66
|
+
},
|
|
67
|
+
|
|
68
|
+
// ── Legal ────────────────────────────────────────────────────────────────────
|
|
69
|
+
// OSS licensing, TOS, privacy policy, DPAs, CLAs, contract review, GDPR/CCPA obligations
|
|
70
|
+
"wunderkind:legal-counsel": {
|
|
71
|
+
"mode": "primary",
|
|
72
|
+
"category": "writing",
|
|
73
|
+
"color": "#6366F1",
|
|
74
|
+
"description": "OSS licensing, TOS, privacy policy, DPAs, CLAs, contract review, GDPR/CCPA compliance obligations."
|
|
75
|
+
}
|
|
76
|
+
}
|
|
77
|
+
}
|
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
{
|
|
2
|
+
// Wunderkind OMO configuration template (legacy filename retained for compatibility)
|
|
3
|
+
// ──────────────────────────────────────────────────────────────────────
|
|
4
|
+
// Upstream now prefers "oh-my-openagent" for plugin entries and OMO config
|
|
5
|
+
// basenames, but the package and CLI command still remain "oh-my-opencode".
|
|
6
|
+
// Prefer the canonical oh-my-openagent.jsonc template when possible.
|
|
7
|
+
// This legacy file is kept for one transition window so existing automation
|
|
8
|
+
// can keep working while downstream tooling catches up.
|
|
9
|
+
//
|
|
10
|
+
// Copy (or symlink) this file to your project's .opencode/oh-my-openagent.jsonc
|
|
11
|
+
// to activate the full wunderkind agent suite with recommended settings.
|
|
12
|
+
//
|
|
13
|
+
// All agent names are namespaced as "wunderkind:<agent-name>" by the plugin loader.
|
|
14
|
+
//
|
|
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
|
+
|
|
18
|
+
"categories": {
|
|
19
|
+
"quick": { "model": "anthropic/claude-haiku-4-5" },
|
|
20
|
+
"unspecified-low": { "model": "anthropic/claude-sonnet-4-6" },
|
|
21
|
+
"unspecified-high": { "model": "openai/gpt-5.4", "variant": "high" },
|
|
22
|
+
"writing": { "model": "google/gemini-3-flash" },
|
|
23
|
+
"visual-engineering": { "model": "google/gemini-3.1-pro", "variant": "high" }
|
|
24
|
+
},
|
|
25
|
+
|
|
26
|
+
"agents": {
|
|
27
|
+
// ── Marketing ──────────────────────────────────────────────────────────────
|
|
28
|
+
// CMO-calibre: go-to-market, brand, community, developer advocacy, docs-led launches, analytics
|
|
29
|
+
"wunderkind:marketing-wunderkind": {
|
|
30
|
+
"mode": "primary",
|
|
31
|
+
"category": "writing",
|
|
32
|
+
"color": "#FF6B35",
|
|
33
|
+
"description": "CMO-calibre marketing strategist. Brand, GTM, community, PR, developer advocacy, docs-led launches, tutorials, migration support, funnel analytics, and DX adoption work."
|
|
34
|
+
},
|
|
35
|
+
|
|
36
|
+
// ── Design ─────────────────────────────────────────────────────────────────
|
|
37
|
+
// Creative Director: brand identity, design systems, UI/UX, accessibility
|
|
38
|
+
"wunderkind:creative-director": {
|
|
39
|
+
"mode": "primary",
|
|
40
|
+
"category": "visual-engineering",
|
|
41
|
+
"color": "#A855F7",
|
|
42
|
+
"description": "Brand identity, design systems, UI/UX, typography, colour, accessibility, design tokens."
|
|
43
|
+
},
|
|
44
|
+
|
|
45
|
+
// ── Product ─────────────────────────────────────────────────────────────────
|
|
46
|
+
// VP Product-calibre: roadmaps, OKRs, PRDs, sprint planning, task decomposition
|
|
47
|
+
"wunderkind:product-wunderkind": {
|
|
48
|
+
"mode": "primary",
|
|
49
|
+
"category": "writing",
|
|
50
|
+
"color": "#3B82F6",
|
|
51
|
+
"description": "Default orchestrator and front door for all Wunderkind requests. Routes mixed-domain and ambiguous work. VP Product authority: roadmaps, OKRs, PRDs, issue intake, acceptance review, sprint planning, and decomposition."
|
|
52
|
+
},
|
|
53
|
+
|
|
54
|
+
// ── Engineering ─────────────────────────────────────────────────────────────
|
|
55
|
+
// CTO-calibre: full-stack, DB, Vercel/Next.js, architecture, code review, AI
|
|
56
|
+
"wunderkind:fullstack-wunderkind": {
|
|
57
|
+
"mode": "primary",
|
|
58
|
+
"category": "unspecified-high",
|
|
59
|
+
"color": "#10B981",
|
|
60
|
+
"description": "CTO-calibre full-stack engineer. Frontend, backend, DB, Vercel, architecture, AI integration."
|
|
61
|
+
},
|
|
62
|
+
|
|
63
|
+
// ── Security ────────────────────────────────────────────────────────────────
|
|
64
|
+
// CISO: security architecture, OWASP, threat modelling, compliance, pen testing
|
|
65
|
+
"wunderkind:ciso": {
|
|
66
|
+
"mode": "primary",
|
|
67
|
+
"category": "unspecified-high",
|
|
68
|
+
"color": "#EF4444",
|
|
69
|
+
"description": "CISO: security architecture, OWASP, threat modelling, GDPR/CCPA/POPIA, pen testing, breach response."
|
|
70
|
+
},
|
|
71
|
+
|
|
72
|
+
// ── Legal ────────────────────────────────────────────────────────────────────
|
|
73
|
+
// OSS licensing, TOS, privacy policy, DPAs, CLAs, contract review, GDPR/CCPA obligations
|
|
74
|
+
"wunderkind:legal-counsel": {
|
|
75
|
+
"mode": "primary",
|
|
76
|
+
"category": "writing",
|
|
77
|
+
"color": "#6366F1",
|
|
78
|
+
"description": "OSS licensing, TOS, privacy policy, DPAs, CLAs, contract review, GDPR/CCPA compliance obligations."
|
|
79
|
+
}
|
|
80
|
+
}
|
|
81
|
+
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@grant-vine/wunderkind",
|
|
3
|
-
"version": "0.
|
|
4
|
-
"description": "Wunderkind
|
|
3
|
+
"version": "0.15.1",
|
|
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",
|
|
@@ -22,6 +22,8 @@
|
|
|
22
22
|
"skills/",
|
|
23
23
|
".claude-plugin/",
|
|
24
24
|
"bin/",
|
|
25
|
+
"oh-my-openagent.jsonc",
|
|
26
|
+
"oh-my-opencode.jsonc",
|
|
25
27
|
"wunderkind.config.jsonc"
|
|
26
28
|
],
|
|
27
29
|
"scripts": {
|
|
@@ -35,10 +37,10 @@
|
|
|
35
37
|
},
|
|
36
38
|
"dependencies": {
|
|
37
39
|
"@clack/prompts": "^0.9.1",
|
|
38
|
-
"@opencode-ai/plugin": "1.
|
|
40
|
+
"@opencode-ai/plugin": "1.14.28",
|
|
39
41
|
"commander": "^13.1.0",
|
|
40
42
|
"jsonc-parser": "^3.3.1",
|
|
41
|
-
"oh-my-openagent": "3.
|
|
43
|
+
"oh-my-openagent": "3.17.6",
|
|
42
44
|
"picocolors": "^1.1.1"
|
|
43
45
|
},
|
|
44
46
|
"devDependencies": {
|
|
@@ -58,5 +60,11 @@
|
|
|
58
60
|
"repository": {
|
|
59
61
|
"type": "git",
|
|
60
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"
|
|
61
69
|
}
|
|
62
70
|
}
|