@grant-vine/wunderkind 0.19.1 → 0.20.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.
Files changed (80) hide show
  1. package/.claude-plugin/plugin.json +1 -1
  2. package/README.md +35 -19
  3. package/agents/ciso.md +3 -3
  4. package/agents/creative-director.md +3 -3
  5. package/agents/fullstack-wunderkind.md +3 -3
  6. package/agents/legal-counsel.md +3 -3
  7. package/agents/marketing-wunderkind.md +3 -3
  8. package/agents/product-wunderkind.md +3 -3
  9. package/commands/design-md.md +1 -0
  10. package/commands/docs-index.md +2 -2
  11. package/commands/dream.md +1 -1
  12. package/dist/agents/canonical-manifest.d.ts +583 -0
  13. package/dist/agents/canonical-manifest.d.ts.map +1 -0
  14. package/dist/agents/canonical-manifest.js +700 -0
  15. package/dist/agents/canonical-manifest.js.map +1 -0
  16. package/dist/agents/docs-config.d.ts +1 -1
  17. package/dist/agents/docs-config.d.ts.map +1 -1
  18. package/dist/agents/docs-config.js +10 -34
  19. package/dist/agents/docs-config.js.map +1 -1
  20. package/dist/agents/manifest.d.ts.map +1 -1
  21. package/dist/agents/manifest.js +15 -38
  22. package/dist/agents/manifest.js.map +1 -1
  23. package/dist/agents/render-markdown.js +2 -2
  24. package/dist/agents/render-markdown.js.map +1 -1
  25. package/dist/agents/shared-prompt-sections.js +2 -2
  26. package/dist/agents/shared-prompt-sections.js.map +1 -1
  27. package/dist/agents/slash-commands.d.ts +3 -186
  28. package/dist/agents/slash-commands.d.ts.map +1 -1
  29. package/dist/agents/slash-commands.js +28 -288
  30. package/dist/agents/slash-commands.js.map +1 -1
  31. package/dist/agents/versioning.d.ts +2 -1
  32. package/dist/agents/versioning.d.ts.map +1 -1
  33. package/dist/agents/versioning.js +5 -1
  34. package/dist/agents/versioning.js.map +1 -1
  35. package/dist/artifact-writer.d.ts.map +1 -1
  36. package/dist/artifact-writer.js +3 -2
  37. package/dist/artifact-writer.js.map +1 -1
  38. package/dist/cli/cleanup.js +2 -2
  39. package/dist/cli/cleanup.js.map +1 -1
  40. package/dist/cli/config-manager/index.d.ts +4 -2
  41. package/dist/cli/config-manager/index.d.ts.map +1 -1
  42. package/dist/cli/config-manager/index.js +103 -103
  43. package/dist/cli/config-manager/index.js.map +1 -1
  44. package/dist/cli/doctor.d.ts.map +1 -1
  45. package/dist/cli/doctor.js +22 -2
  46. package/dist/cli/doctor.js.map +1 -1
  47. package/dist/cli/gitignore-manager.d.ts.map +1 -1
  48. package/dist/cli/gitignore-manager.js +0 -1
  49. package/dist/cli/gitignore-manager.js.map +1 -1
  50. package/dist/cli/index.js +15 -15
  51. package/dist/cli/index.js.map +1 -1
  52. package/dist/cli/mcp-helpers.d.ts.map +1 -1
  53. package/dist/cli/mcp-helpers.js +0 -6
  54. package/dist/cli/mcp-helpers.js.map +1 -1
  55. package/dist/cli/migrate.d.ts.map +1 -1
  56. package/dist/cli/migrate.js +19 -103
  57. package/dist/cli/migrate.js.map +1 -1
  58. package/dist/cli/uninstall.d.ts.map +1 -1
  59. package/dist/cli/uninstall.js +2 -8
  60. package/dist/cli/uninstall.js.map +1 -1
  61. package/dist/index.js +2 -2
  62. package/dist/index.js.map +1 -1
  63. package/dist/project-artifacts.d.ts +3 -1
  64. package/dist/project-artifacts.d.ts.map +1 -1
  65. package/dist/project-artifacts.js +7 -8
  66. package/dist/project-artifacts.js.map +1 -1
  67. package/package.json +7 -5
  68. package/skills/SKILL-STANDARD.md +78 -27
  69. package/skills/agile-pm/SKILL.md +2 -2
  70. package/skills/code-health/SKILL.md +3 -1
  71. package/skills/design-an-interface/SKILL.md +35 -30
  72. package/skills/diagnose/SKILL.md +1 -1
  73. package/skills/grill-me/SKILL.md +2 -1
  74. package/skills/improve-codebase-architecture/SKILL.md +8 -5
  75. package/skills/prd-pipeline/SKILL.md +3 -2
  76. package/skills/tdd/SKILL.md +3 -6
  77. package/skills/technical-writer/SKILL.md +3 -1
  78. package/skills/triage-issue/SKILL.md +3 -2
  79. package/skills/ubiquitous-language/SKILL.md +3 -2
  80. package/oh-my-opencode.jsonc +0 -81
@@ -0,0 +1,583 @@
1
+ type OmoCategoryId = "quick" | "unspecified-low" | "unspecified-high" | "writing" | "visual-engineering";
2
+ export interface CanonicalPackageMetadata {
3
+ readonly name: string;
4
+ readonly version: string;
5
+ readonly description: string;
6
+ readonly agentVersionFrontmatterKey: string;
7
+ readonly keywords: readonly string[];
8
+ readonly files: readonly string[];
9
+ }
10
+ export interface CanonicalPluginMetadata {
11
+ readonly name: string;
12
+ readonly description: string;
13
+ readonly main: string;
14
+ }
15
+ export interface CanonicalAgentMetadata {
16
+ readonly id: string;
17
+ readonly roleLabel: string;
18
+ readonly summary: string;
19
+ readonly factoryKey: "marketing-wunderkind" | "creative-director" | "product-wunderkind" | "fullstack-wunderkind" | "ciso" | "legal-counsel";
20
+ readonly omoCategory: OmoCategoryId;
21
+ readonly omoColor: string;
22
+ readonly omoMode: "primary";
23
+ readonly omoDescription: string;
24
+ }
25
+ export interface CanonicalSkillMetadata {
26
+ readonly id: string;
27
+ readonly bucket: "promoted" | "wunderkind-specific" | "deprecated" | "internal" | "remove-now";
28
+ readonly ownerAgentId: CanonicalAgentMetadata["id"];
29
+ readonly description: string;
30
+ readonly sourcePath: `skills/${string}/SKILL.md`;
31
+ }
32
+ export interface CanonicalStaticCommandMetadata {
33
+ readonly name: string;
34
+ readonly command: `/${string}`;
35
+ readonly ownerAgentId: CanonicalAgentMetadata["id"];
36
+ readonly summary: string;
37
+ readonly subtask: boolean;
38
+ readonly sourcePath: `commands/${string}.md`;
39
+ }
40
+ export interface CanonicalGeneratedCommandMetadata {
41
+ readonly ownerAgentId: CanonicalAgentMetadata["id"];
42
+ readonly command: `/${string}`;
43
+ readonly summary: string;
44
+ readonly details?: readonly string[];
45
+ }
46
+ export interface CanonicalGeneratedCommandSection {
47
+ readonly ownerAgentId: CanonicalAgentMetadata["id"];
48
+ readonly heading: string;
49
+ readonly items: readonly string[];
50
+ }
51
+ export interface CanonicalDocsOutputEntry {
52
+ readonly agentId: CanonicalAgentMetadata["id"];
53
+ readonly canonicalFilename: `${string}.md`;
54
+ readonly eligible: boolean;
55
+ }
56
+ export declare const WUNDERKIND_CANONICAL_MANIFEST: {
57
+ readonly package: {
58
+ readonly name: "@grant-vine/wunderkind";
59
+ readonly version: "0.20.1";
60
+ readonly description: "Wunderkind — specialist AI agent addon for OpenCode with 6 retained specialist agents for any software product team";
61
+ readonly agentVersionFrontmatterKey: "wunderkind_version";
62
+ readonly keywords: readonly ["oh-my-openagent", "oh-my-opencode", "opencode", "plugin", "wunderkind", "agents", "ai-agents"];
63
+ readonly files: readonly ["dist/", "agents/", "commands/", "schemas/", "skills/", ".claude-plugin/", "bin/", "oh-my-openagent.jsonc", "wunderkind.config.jsonc"];
64
+ };
65
+ readonly plugin: {
66
+ readonly name: "wunderkind";
67
+ readonly description: "Wunderkind — specialist AI agents for any software product team, built as an oh-my-openagent addon";
68
+ readonly main: "dist/index.js";
69
+ };
70
+ readonly nativeAssets: {
71
+ readonly markerFilename: ".wunderkind-version.json";
72
+ readonly kinds: readonly ["agents", "commands", "skills"];
73
+ readonly openCodeDirs: {
74
+ readonly agents: "agents";
75
+ readonly commands: "commands";
76
+ readonly skills: "skills";
77
+ };
78
+ readonly upstream: {
79
+ readonly omoCanonicalPackageName: "oh-my-openagent";
80
+ readonly omoLegacyPackageName: "oh-my-opencode";
81
+ };
82
+ readonly configSchemaUrl: "https://raw.githubusercontent.com/grant-vine/wunderkind/main/schemas/wunderkind.config.schema.json";
83
+ };
84
+ readonly agents: readonly [{
85
+ readonly id: "marketing-wunderkind";
86
+ readonly roleLabel: "Marketing Wunderkind";
87
+ readonly summary: "CMO-calibre strategist for brand, community, developer advocacy, docs-led launches, adoption, PR, and go-to-market work.";
88
+ readonly factoryKey: "marketing-wunderkind";
89
+ readonly omoCategory: "writing";
90
+ readonly omoColor: "#FF6B35";
91
+ readonly omoMode: "primary";
92
+ readonly omoDescription: "CMO-calibre marketing strategist. Brand, GTM, community, PR, developer advocacy, docs-led launches, tutorials, migration support, funnel analytics, and DX adoption work.";
93
+ }, {
94
+ readonly id: "creative-director";
95
+ readonly roleLabel: "Creative Director";
96
+ readonly summary: "Brand and UI/UX lead for design systems, visuals, and product experience.";
97
+ readonly factoryKey: "creative-director";
98
+ readonly omoCategory: "visual-engineering";
99
+ readonly omoColor: "#A855F7";
100
+ readonly omoMode: "primary";
101
+ readonly omoDescription: "Brand identity, design systems, UI/UX, typography, colour, accessibility, design tokens.";
102
+ }, {
103
+ readonly id: "product-wunderkind";
104
+ readonly roleLabel: "Product Wunderkind";
105
+ readonly summary: "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.";
106
+ readonly factoryKey: "product-wunderkind";
107
+ readonly omoCategory: "writing";
108
+ readonly omoColor: "#3B82F6";
109
+ readonly omoMode: "primary";
110
+ readonly omoDescription: "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.";
111
+ }, {
112
+ readonly id: "fullstack-wunderkind";
113
+ readonly roleLabel: "Fullstack Wunderkind";
114
+ readonly summary: "CTO-calibre engineer for architecture, implementation, and systems tradeoffs.";
115
+ readonly factoryKey: "fullstack-wunderkind";
116
+ readonly omoCategory: "unspecified-high";
117
+ readonly omoColor: "#10B981";
118
+ readonly omoMode: "primary";
119
+ readonly omoDescription: "CTO-calibre full-stack engineer. Frontend, backend, DB, Vercel, architecture, AI integration.";
120
+ }, {
121
+ readonly id: "ciso";
122
+ readonly roleLabel: "CISO";
123
+ readonly summary: "Security and compliance lead for threat modeling, controls, and risk decisions.";
124
+ readonly factoryKey: "ciso";
125
+ readonly omoCategory: "unspecified-high";
126
+ readonly omoColor: "#EF4444";
127
+ readonly omoMode: "primary";
128
+ readonly omoDescription: "CISO: security architecture, OWASP, threat modelling, GDPR/CCPA/POPIA, pen testing, breach response.";
129
+ }, {
130
+ readonly id: "legal-counsel";
131
+ readonly roleLabel: "Legal Counsel";
132
+ readonly summary: "Legal and regulatory advisor for contracts, licensing, and compliance posture.";
133
+ readonly factoryKey: "legal-counsel";
134
+ readonly omoCategory: "writing";
135
+ readonly omoColor: "#6366F1";
136
+ readonly omoMode: "primary";
137
+ readonly omoDescription: "OSS licensing, TOS, privacy policy, DPAs, CLAs, contract review, GDPR/CCPA compliance obligations.";
138
+ }];
139
+ readonly skills: readonly [{
140
+ readonly id: "agile-pm";
141
+ readonly bucket: "promoted";
142
+ readonly ownerAgentId: "product-wunderkind";
143
+ readonly description: "USE FOR: sprint planning, task breakdown, agile, task decomposition, file conflict check, concern grouping, backlog management, story points, dependency ordering, parallel task safety, agent-friendly task structure, work breakdown structure, sprint retrospective, sprint review, velocity tracking, story splitting, definition of done, story review, acceptance criteria, INVEST criteria.";
144
+ readonly sourcePath: "skills/agile-pm/SKILL.md";
145
+ }, {
146
+ readonly id: "code-health";
147
+ readonly bucket: "promoted";
148
+ readonly ownerAgentId: "fullstack-wunderkind";
149
+ readonly description: "USE FOR: code health audits, engineering hygiene assessments, coupling analysis, testability reviews, dependency classification, severity-ranked findings reports, and identifying systemic code quality patterns across a codebase.";
150
+ readonly sourcePath: "skills/code-health/SKILL.md";
151
+ }, {
152
+ readonly id: "compliance-officer";
153
+ readonly bucket: "promoted";
154
+ readonly ownerAgentId: "ciso";
155
+ readonly description: "USE FOR: GDPR, POPIA, CCPA, CPRA, PIPEDA, LGPD, PDPA, APP, data protection, privacy compliance, data classification, consent management, data subject rights, right to erasure, right to access, data retention, data minimisation, purpose limitation, breach notification, 72 hour notification, data processing agreements, DPA, privacy impact assessment, DPIA, privacy by design, data residency, cross-border data transfer, SCCs, standard contractual clauses, adequacy decisions, data processor, data controller, legitimate interest, lawful basis, sensitive personal information, special categories, SOC2 Type II, ISO 27001, compliance audit, compliance assessment, compliance gap, regulatory requirements, privacy policy, terms of service, cookie consent, data inventory, data mapping, records of processing activities, ROPA, opt-out, do not sell, consumer privacy rights, personal information protection, data localisation.";
156
+ readonly sourcePath: "skills/compliance-officer/SKILL.md";
157
+ }, {
158
+ readonly id: "db-architect";
159
+ readonly bucket: "promoted";
160
+ readonly ownerAgentId: "fullstack-wunderkind";
161
+ readonly description: "USE FOR: database schema design, Drizzle ORM, PostgreSQL, Neon DB, ERD generation, query analysis, EXPLAIN ANALYZE, index audit, migration diff, drizzle-kit, schema introspection, destructive operations (with confirmation), foreign key analysis.";
162
+ readonly sourcePath: "skills/db-architect/SKILL.md";
163
+ }, {
164
+ readonly id: "design-an-interface";
165
+ readonly bucket: "deprecated";
166
+ readonly ownerAgentId: "fullstack-wunderkind";
167
+ readonly description: "DEPRECATED: docs-history and detection-only reference for the retired design-an-interface route. Do not invoke for new work. Use improve-codebase-architecture for structural interface work, direct fullstack-wunderkind routing for narrow engineering judgement, or product/frontend exploration when user workflow or prototype evidence shapes the contract.";
168
+ readonly sourcePath: "skills/design-an-interface/SKILL.md";
169
+ }, {
170
+ readonly id: "diagnose";
171
+ readonly bucket: "promoted";
172
+ readonly ownerAgentId: "fullstack-wunderkind";
173
+ readonly description: "USE FOR: deterministic bug diagnosis, reproducible failure loops, ranked hypotheses, focused instrumentation, root-cause isolation, and deciding the smallest proving regression surface before implementation starts.";
174
+ readonly sourcePath: "skills/diagnose/SKILL.md";
175
+ }, {
176
+ readonly id: "docs-with-grill";
177
+ readonly bucket: "wunderkind-specific";
178
+ readonly ownerAgentId: "product-wunderkind";
179
+ readonly description: "USE FOR: context-aware documentation grilling, Matt-style grill-with-docs adaptation, repo-aware questioning, `CONTEXT.md` maintenance, validating domain language against code and docs, and preparing Wunderkind-native docs follow-up without copying external filesystem layouts verbatim.";
180
+ readonly sourcePath: "skills/docs-with-grill/SKILL.md";
181
+ }, {
182
+ readonly id: "experimentation-analyst";
183
+ readonly bucket: "promoted";
184
+ readonly ownerAgentId: "product-wunderkind";
185
+ readonly description: "USE FOR: A/B test design, experiment design, hypothesis formulation, sample size calculation, power analysis, minimum detectable effect, MDE, statistical significance, p-value, confidence interval, control group, treatment group, experiment duration, experiment readout, test results analysis, statistical testing, t-test, chi-square test, z-test, bootstrap, Bayesian A/B testing, frequentist testing, multiple testing correction, Bonferroni, false positive rate, false negative rate, Type I error, Type II error, guardrail metrics, novelty effect, network effects in experiments, holdout group, switchback test, multivariate test, MVT, feature flag rollout, staged rollout, experiment infrastructure.";
186
+ readonly sourcePath: "skills/experimentation-analyst/SKILL.md";
187
+ }, {
188
+ readonly id: "grill-me";
189
+ readonly bucket: "promoted";
190
+ readonly ownerAgentId: "product-wunderkind";
191
+ readonly description: "USE FOR: discovery interrogation, stress-testing requirements, uncovering ambiguity, product questioning, assumption checking, pseudo-orchestrator questioning, scope clarification, decision-tree exploration, requirement grilling, contradiction detection.";
192
+ readonly sourcePath: "skills/grill-me/SKILL.md";
193
+ }, {
194
+ readonly id: "improve-codebase-architecture";
195
+ readonly bucket: "promoted";
196
+ readonly ownerAgentId: "fullstack-wunderkind";
197
+ readonly description: "USE FOR: architecture improvement, codebase deepening, module boundaries, seam design, coupling reduction, dependency review, deletion-test analysis, RFC creation, structural refactoring, and AI-navigable interfaces.";
198
+ readonly sourcePath: "skills/improve-codebase-architecture/SKILL.md";
199
+ }, {
200
+ readonly id: "oss-licensing-advisor";
201
+ readonly bucket: "promoted";
202
+ readonly ownerAgentId: "legal-counsel";
203
+ readonly description: "USE FOR: OSS license audit, open source license compatibility, MIT license, Apache 2.0, GPL, LGPL, AGPL, copyleft risk, SPDX identifier, license compatibility matrix, dependency license check, third-party license compliance, FOSS compliance, OpenChain, REUSE spec, license header, contributor license agreement, CLA, individual CLA, corporate CLA, developer certificate of origin, DCO, license selection, choosing a license, dual licensing, commercial exception, license FAQ, license obligations, attribution requirements, notice file, NOTICE.txt, copyright notice, license compatibility with SaaS, OSS in commercial product.";
204
+ readonly sourcePath: "skills/oss-licensing-advisor/SKILL.md";
205
+ }, {
206
+ readonly id: "pen-tester";
207
+ readonly bucket: "promoted";
208
+ readonly ownerAgentId: "ciso";
209
+ readonly description: "USE FOR: penetration testing, pen test, attack simulation, ethical hacking, OWASP ASVS, Application Security Verification Standard, auth flow testing, JWT attack, JWT algorithm confusion, force browsing, broken access control testing, privilege escalation testing, session hijacking, CSRF testing, XSS testing, injection testing, API fuzzing, authentication bypass, authorisation bypass, IDOR exploitation, parameter tampering, business logic testing, rate limit bypass, security regression testing, attacker mindset, red team, vulnerability proof of concept, security testing, active testing, dynamic analysis, DAST.";
210
+ readonly sourcePath: "skills/pen-tester/SKILL.md";
211
+ }, {
212
+ readonly id: "prd-pipeline";
213
+ readonly bucket: "promoted";
214
+ readonly ownerAgentId: "product-wunderkind";
215
+ readonly description: "USE FOR: PRD workflow, product requirements, PRD to plan, PRD to issues, implementation planning, vertical slices, tracer bullets, filesystem workflow, GitHub workflow, product handoff, plan generation.";
216
+ readonly sourcePath: "skills/prd-pipeline/SKILL.md";
217
+ }, {
218
+ readonly id: "security-analyst";
219
+ readonly bucket: "promoted";
220
+ readonly ownerAgentId: "ciso";
221
+ readonly description: "USE FOR: OWASP Top 10, vulnerability assessment, security code review, auth testing, IDOR, broken access control, injection vulnerabilities, XSS, CSRF, security misconfigurations, sensitive data exposure, insecure design, software component vulnerabilities, authentication failures, cryptographic failures, server-side request forgery, SSRF, security logging and monitoring failures, security analysis, static analysis, dependency audit, CVE research, attack surface analysis, input validation review, output encoding, SQL injection, NoSQL injection, command injection, path traversal, file upload vulnerabilities, JWT vulnerabilities, OAuth vulnerabilities, API security, REST security, GraphQL security.";
222
+ readonly sourcePath: "skills/security-analyst/SKILL.md";
223
+ }, {
224
+ readonly id: "setup-wunderkind-workflow";
225
+ readonly bucket: "wunderkind-specific";
226
+ readonly ownerAgentId: "product-wunderkind";
227
+ readonly description: "USE FOR: repo-local workflow setup, issue flow selection, triage vocabulary, glossary/docs location setup, `.omo` conventions, and adapting Matt-style setup patterns to Wunderkind-native files like `AGENTS.md` and `.omo/*`.";
228
+ readonly sourcePath: "skills/setup-wunderkind-workflow/SKILL.md";
229
+ }, {
230
+ readonly id: "social-media-maven";
231
+ readonly bucket: "promoted";
232
+ readonly ownerAgentId: "marketing-wunderkind";
233
+ readonly description: "USE FOR: social media strategy, content calendar, content planning, hashtag research, platform strategy, engagement audit, content audit, Lighthouse audit of social pages, campaign planning, engagement strategy, TikTok, Instagram, LinkedIn, X/Twitter, Facebook, WhatsApp, WeChat, platform mix, posting cadence, social analytics, community engagement, social ROI, follower growth, reach, impressions, engagement rate, social listening, trend research, competitor social audit.";
234
+ readonly sourcePath: "skills/social-media-maven/SKILL.md";
235
+ }, {
236
+ readonly id: "tdd";
237
+ readonly bucket: "promoted";
238
+ readonly ownerAgentId: "fullstack-wunderkind";
239
+ readonly description: "USE FOR: test-driven development, red-green-refactor loops, bug fixes with new regression coverage, and feature work that should be proven through public behavior. Use when implementing or repairing TypeScript code under Wunderkind's Bun-based test workflow.";
240
+ readonly sourcePath: "skills/tdd/SKILL.md";
241
+ }, {
242
+ readonly id: "technical-writer";
243
+ readonly bucket: "promoted";
244
+ readonly ownerAgentId: "marketing-wunderkind";
245
+ readonly description: "USE FOR: technical writing, documentation writing, API documentation, getting started guide, quickstart guide, tutorial writing, conceptual guide, how-to guide, reference documentation, SDK documentation, integration guide, migration guide, upgrade guide, code examples, sample code, README writing, CONTRIBUTING.md, developer onboarding docs, docs architecture, documentation structure, docs site copy, Mintlify, Docusaurus, developer portal content, technical blog post, changelog writing, release notes, CLI help text, error message copy, interactive tutorial, FAQ writing, troubleshooting guide, OpenAPI spec review, webhook docs.";
246
+ readonly sourcePath: "skills/technical-writer/SKILL.md";
247
+ }, {
248
+ readonly id: "triage-issue";
249
+ readonly bucket: "promoted";
250
+ readonly ownerAgentId: "product-wunderkind";
251
+ readonly description: "USE FOR: bug triage, external PR triage, issue investigation, support handoff, incident reproduction, defect documentation, issue scoping, support-to-engineering transitions, acceptance clarity, backlog-ready issue shaping.";
252
+ readonly sourcePath: "skills/triage-issue/SKILL.md";
253
+ }, {
254
+ readonly id: "ubiquitous-language";
255
+ readonly bucket: "promoted";
256
+ readonly ownerAgentId: "product-wunderkind";
257
+ readonly description: "USE FOR: glossary maintenance, shared terminology cleanup, naming alignment, canonical terms, alias resolution, domain-language drift, and explicit updates to `.omo/glossary.md`.";
258
+ readonly sourcePath: "skills/ubiquitous-language/SKILL.md";
259
+ }, {
260
+ readonly id: "vercel-architect";
261
+ readonly bucket: "promoted";
262
+ readonly ownerAgentId: "fullstack-wunderkind";
263
+ readonly description: "USE FOR: Vercel deployment, Next.js App Router, Edge Runtime, ISR/SSR/SSG, bundle analysis, performance optimisation, Neon DB branching, preview URLs, edge vs Node runtime decisions, Lighthouse CI, Core Web Vitals, validate page, serverless functions.";
264
+ readonly sourcePath: "skills/vercel-architect/SKILL.md";
265
+ }, {
266
+ readonly id: "visual-artist";
267
+ readonly bucket: "promoted";
268
+ readonly ownerAgentId: "creative-director";
269
+ readonly description: "USE FOR: brand identity, colour palette, design system, design audit, token export, WCAG contrast, typography, spacing, visual design review, design language, brand guidelines, Tailwind theme, CSS custom properties, W3C design tokens.";
270
+ readonly sourcePath: "skills/visual-artist/SKILL.md";
271
+ }, {
272
+ readonly id: "write-a-skill";
273
+ readonly bucket: "wunderkind-specific";
274
+ readonly ownerAgentId: "product-wunderkind";
275
+ readonly description: "USE FOR: authoring new Wunderkind-native skills, adapting external skill patterns, defining skill triggers, and deciding when a skill needs extra reference files or scripts. Use when work belongs in `skills/*/SKILL.md` instead of TypeScript.";
276
+ readonly sourcePath: "skills/write-a-skill/SKILL.md";
277
+ }, {
278
+ readonly id: "caveman";
279
+ readonly bucket: "wunderkind-specific";
280
+ readonly ownerAgentId: "product-wunderkind";
281
+ readonly description: "USE FOR: terse mode, low-token replies, compressed communication, user asks like \"caveman mode\", \"be brief\", \"less tokens\", or \"talk like caveman\" while keeping technical accuracy intact.";
282
+ readonly sourcePath: "skills/caveman/SKILL.md";
283
+ }];
284
+ readonly commands: {
285
+ readonly static: readonly [{
286
+ readonly name: "docs-index";
287
+ readonly command: "/docs-index";
288
+ readonly ownerAgentId: "product-wunderkind";
289
+ readonly summary: "Regenerate Wunderkind-managed project documentation and refresh the docs index";
290
+ readonly subtask: true;
291
+ readonly sourcePath: "commands/docs-index.md";
292
+ }, {
293
+ readonly name: "dream";
294
+ readonly command: "/dream";
295
+ readonly ownerAgentId: "product-wunderkind";
296
+ readonly summary: "Wunderkind-native mixed workflow for ideation, SOUL synthesis, and exploration";
297
+ readonly subtask: true;
298
+ readonly sourcePath: "commands/dream.md";
299
+ }, {
300
+ readonly name: "design-md";
301
+ readonly command: "/design-md";
302
+ readonly ownerAgentId: "creative-director";
303
+ readonly summary: "Create or capture the canonical DESIGN.md brief for Stitch-guided design work";
304
+ readonly subtask: false;
305
+ readonly sourcePath: "commands/design-md.md";
306
+ }];
307
+ readonly generated: readonly [{
308
+ readonly ownerAgentId: "marketing-wunderkind";
309
+ readonly command: "/gtm-plan <product>";
310
+ readonly summary: "Build a go-to-market plan for a product, feature, or release.";
311
+ readonly details: readonly ["Define audience segments, positioning, journey stages, channel mix, launch assets, and measurement.", "Include docs, onboarding, or migration dependencies needed for adoption."];
312
+ }, {
313
+ readonly ownerAgentId: "marketing-wunderkind";
314
+ readonly command: "/content-calendar <platform> <period>";
315
+ readonly summary: "Generate a platform-specific content calendar.";
316
+ readonly details: readonly ["Invoke via `skill(name=\"social-media-maven\")` for channel-native plans, posting cadence, themes, and copy scaffolding."];
317
+ }, {
318
+ readonly ownerAgentId: "marketing-wunderkind";
319
+ readonly command: "/community-audit";
320
+ readonly summary: "Audit community presence across owned and external channels.";
321
+ }, {
322
+ readonly ownerAgentId: "marketing-wunderkind";
323
+ readonly command: "/thought-leadership-plan <quarter>";
324
+ readonly summary: "Plan quarterly narrative pillars, channels, authors, and amplification motions.";
325
+ }, {
326
+ readonly ownerAgentId: "marketing-wunderkind";
327
+ readonly command: "/docs-launch-brief <release>";
328
+ readonly summary: "Plan the audience-facing launch package for a technical release.";
329
+ readonly details: readonly ["Invoke via `skill(name=\"technical-writer\")` when the work becomes deep developer-documentation drafting."];
330
+ }, {
331
+ readonly ownerAgentId: "marketing-wunderkind";
332
+ readonly command: "/dx-audit";
333
+ readonly summary: "Audit the first-run audience experience for a technical product and identify the smallest adoption fixes.";
334
+ }, {
335
+ readonly ownerAgentId: "marketing-wunderkind";
336
+ readonly command: "/competitor-analysis <competitors>";
337
+ readonly summary: "Compare competitor positioning, launch patterns, docs support, and adoption strategy.";
338
+ }, {
339
+ readonly ownerAgentId: "creative-director";
340
+ readonly command: "/brand-identity <brief>";
341
+ readonly summary: "Develop a brand identity system from a creative brief.";
342
+ readonly details: readonly ["Invoke via `skill(name=\"visual-artist\")` for palette generation, token export, and WCAG auditing."];
343
+ }, {
344
+ readonly ownerAgentId: "creative-director";
345
+ readonly command: "/design-audit <url>";
346
+ readonly summary: "Run a rigorous design and accessibility audit of a live page or design.";
347
+ readonly details: readonly ["Use `agent-browser` to capture screenshots, axe violations, and computed-style evidence."];
348
+ }, {
349
+ readonly ownerAgentId: "creative-director";
350
+ readonly command: "/generate-palette <seed>";
351
+ readonly summary: "Generate an accessible color system from a seed color.";
352
+ readonly details: readonly ["Invoke via `skill(name=\"visual-artist\")` for palette math, token export, and WCAG checks."];
353
+ }, {
354
+ readonly ownerAgentId: "creative-director";
355
+ readonly command: "/design-system-review";
356
+ readonly summary: "Audit an existing design system for consistency, gaps, redundancies, and token drift.";
357
+ }, {
358
+ readonly ownerAgentId: "creative-director";
359
+ readonly command: "/creative-brief <project>";
360
+ readonly summary: "Write a creative brief covering audience, objective, deliverables, constraints, and success criteria.";
361
+ }, {
362
+ readonly ownerAgentId: "product-wunderkind";
363
+ readonly command: "/setup-wunderkind-workflow";
364
+ readonly summary: "Establish the repo-local workflow contract for issue flow, triage vocabulary, glossary/docs locations, and `.omo/` artifact conventions.";
365
+ readonly details: readonly ["Invoke via `skill(name=\"setup-wunderkind-workflow\")` to adapt Matt-style setup patterns to Wunderkind-native locations such as `AGENTS.md` and `.omo/`."];
366
+ }, {
367
+ readonly ownerAgentId: "product-wunderkind";
368
+ readonly command: "/docs-with-grill <topic>";
369
+ readonly summary: "Stress-test a docs or product topic against repo context, update `CONTEXT.md` when needed, and prepare Wunderkind-native documentation follow-up.";
370
+ readonly details: readonly ["Invoke via `skill(name=\"docs-with-grill\")` for one-question-at-a-time context grilling that inspects the repo before asking and treats `CONTEXT.md` as the compact shared context lane."];
371
+ }, {
372
+ readonly ownerAgentId: "product-wunderkind";
373
+ readonly command: "/breakdown <task>";
374
+ readonly summary: "Invoke via `skill(name=\"agile-pm\")` for concern-grouped, parallel-safe subtasks with file targets and dependency order.";
375
+ }, {
376
+ readonly ownerAgentId: "product-wunderkind";
377
+ readonly command: "/sprint-plan";
378
+ readonly summary: "Invoke via `skill(name=\"agile-pm\")` for a sprint plan with points, file targets, dependencies, and stretch work.";
379
+ }, {
380
+ readonly ownerAgentId: "product-wunderkind";
381
+ readonly command: "/prd <feature>";
382
+ readonly summary: "Produce Context, Goals, Non-Goals, User Stories, Requirements, Open Questions, Success Metrics, and Timeline.";
383
+ readonly details: readonly ["After drafting, request a technical acceptance follow-up from `fullstack-wunderkind`."];
384
+ }, {
385
+ readonly ownerAgentId: "product-wunderkind";
386
+ readonly command: "/okr-design <level> <objective>";
387
+ readonly summary: "Refine the objective, propose measurable KRs, validate alignment, and flag objective-vs-KR risks.";
388
+ }, {
389
+ readonly ownerAgentId: "product-wunderkind";
390
+ readonly command: "/file-conflict-check";
391
+ readonly summary: "Invoke via `skill(name=\"agile-pm\")` to build a file-to-task conflict matrix with severity and safe sequencing.";
392
+ }, {
393
+ readonly ownerAgentId: "product-wunderkind";
394
+ readonly command: "/north-star <product>";
395
+ readonly summary: "Identify the value moment, propose candidate metrics, choose the best one, and map input metrics plus cadence.";
396
+ }, {
397
+ readonly ownerAgentId: "fullstack-wunderkind";
398
+ readonly command: "/diagnose <issue>";
399
+ readonly summary: "Run a deterministic engineering diagnosis loop before implementation or refactor decisions.";
400
+ 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."];
401
+ }, {
402
+ readonly ownerAgentId: "fullstack-wunderkind";
403
+ readonly command: "/validate-page <url>";
404
+ readonly summary: "Run a browser-backed audit for accessibility, CWV, console errors, broken links, and a screenshot.";
405
+ 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."];
406
+ }, {
407
+ readonly ownerAgentId: "fullstack-wunderkind";
408
+ readonly command: "/bundle-analyze";
409
+ readonly summary: "Invoke via `skill(name=\"vercel-architect\")` to identify largest chunks, heavy dependencies, and concrete replacement opportunities.";
410
+ }, {
411
+ readonly ownerAgentId: "fullstack-wunderkind";
412
+ readonly command: "/db-audit";
413
+ readonly summary: "Invoke via `skill(name=\"db-architect\")` for schema, index, migration-drift, and slow-query review; report destructive actions without executing them.";
414
+ }, {
415
+ readonly ownerAgentId: "fullstack-wunderkind";
416
+ readonly command: "/edge-vs-node <filepath>";
417
+ readonly summary: "Invoke via `skill(name=\"vercel-architect\")` to decide runtime compatibility and explain blockers.";
418
+ }, {
419
+ readonly ownerAgentId: "fullstack-wunderkind";
420
+ readonly command: "/architecture-review <component>";
421
+ readonly summary: "Assess separation of concerns, coupling, traps, and minimal refactor steps with effort and risk.";
422
+ readonly details: readonly ["Invoke via `skill(name=\"improve-codebase-architecture\")` for deep module/RFC work using seam, depth, locality, and deletion-test framing."];
423
+ }, {
424
+ readonly ownerAgentId: "fullstack-wunderkind";
425
+ readonly command: "/supportability-review <service>";
426
+ readonly summary: "Review observability, rollback readiness, on-call ownership, and launch blockers.";
427
+ }, {
428
+ readonly ownerAgentId: "fullstack-wunderkind";
429
+ readonly command: "/runbook <service> <alert>";
430
+ readonly summary: "Translate the alert into blast radius, triage steps, root-cause branches, success checks, and escalation conditions.";
431
+ }, {
432
+ readonly ownerAgentId: "ciso";
433
+ readonly command: "/threat-model <system or feature>";
434
+ readonly summary: "Invoke via `skill(name=\"security-analyst\")` to build a STRIDE threat model, rate risks, and map mitigations.";
435
+ }, {
436
+ readonly ownerAgentId: "ciso";
437
+ readonly command: "/security-audit <scope>";
438
+ readonly summary: "Invoke via `skill(name=\"pen-tester\")` for active security testing; review OWASP coverage, auth, authorization, validation, secrets, headers, and dependency risk.";
439
+ }, {
440
+ readonly ownerAgentId: "ciso";
441
+ readonly command: "/compliance-check <regulation>";
442
+ readonly summary: "Invoke via `skill(name=\"compliance-officer\")` to assess obligations and evidence gaps against a named regulation.";
443
+ }, {
444
+ readonly ownerAgentId: "ciso";
445
+ readonly command: "/incident-response <incident type>";
446
+ readonly summary: "Run contain/assess/notify/eradicate/recover/learn. Delegate operational containment to `fullstack-wunderkind`. Invoke via `skill(name=\"compliance-officer\")` before routing formal wording to `legal-counsel`.";
447
+ }, {
448
+ readonly ownerAgentId: "ciso";
449
+ readonly command: "/security-headers-check <url>";
450
+ readonly summary: "Use `agent-browser` to capture headers and report missing or misconfigured controls.";
451
+ }, {
452
+ readonly ownerAgentId: "ciso";
453
+ readonly command: "/dependency-audit";
454
+ readonly summary: "Run a vulnerability audit and return severity-ranked package findings with recommended action.";
455
+ }, {
456
+ readonly ownerAgentId: "legal-counsel";
457
+ readonly command: "/license-audit";
458
+ readonly summary: "Audit dependency licenses for compatibility, copyleft risk, and remediation options.";
459
+ }, {
460
+ readonly ownerAgentId: "legal-counsel";
461
+ readonly command: "/draft-tos <product>";
462
+ readonly summary: "Draft a Terms of Service using the active region and regulation context.";
463
+ }, {
464
+ readonly ownerAgentId: "legal-counsel";
465
+ readonly command: "/draft-privacy-policy";
466
+ readonly summary: "Draft a Privacy Policy that reflects the active primary regulation.";
467
+ }, {
468
+ readonly ownerAgentId: "legal-counsel";
469
+ readonly command: "/review-contract <type>";
470
+ readonly summary: "Review a contract excerpt for red flags, risk level, and alternative language.";
471
+ }, {
472
+ readonly ownerAgentId: "legal-counsel";
473
+ readonly command: "/cla-setup";
474
+ readonly summary: "Recommend CLA vs DCO and draft the chosen contribution-ownership path.";
475
+ }];
476
+ readonly generatedSections: readonly [{
477
+ readonly ownerAgentId: "marketing-wunderkind";
478
+ readonly heading: "Delegation Patterns";
479
+ readonly items: readonly ["Use `visual-engineering` for campaign design, launch visuals, and brand-system execution.", "Use `librarian` for market research, event inventories, and external trend gathering.", "Invoke via `skill(name=\"technical-writer\")` for deep developer-facing docs or migration-writing execution.", "Use `fullstack-wunderkind` to verify technical setup steps or code-example correctness.", "Use `legal-counsel` for launch, claim, or regulatory review that needs legal authority."];
480
+ }, {
481
+ readonly ownerAgentId: "creative-director";
482
+ readonly heading: "Sub-Skill Delegation";
483
+ readonly items: readonly ["Invoke via `skill(name=\"visual-artist\")` for detailed color systems, design tokens, and WCAG-focused palette work."];
484
+ }, {
485
+ readonly ownerAgentId: "creative-director";
486
+ readonly heading: "Delegation Patterns";
487
+ readonly items: readonly ["Use `visual-engineering` for implementing designs in code.", "Use `agent-browser` for browser-based design capture or audit data.", "Use `writing` for long-form brand copy, taglines, or UX-writing production at scale."];
488
+ }, {
489
+ readonly ownerAgentId: "product-wunderkind";
490
+ readonly heading: "Sub-Skill Delegation";
491
+ readonly items: readonly ["Invoke via `skill(name=\"grill-me\")`, `skill(name=\"docs-with-grill\")`, `skill(name=\"prd-pipeline\")`, `skill(name=\"triage-issue\")`, and `skill(name=\"setup-wunderkind-workflow\")` for deep product workflow setup, context-aware docs grilling, and discovery work. Use `skill(name=\"ubiquitous-language\")` narrowly for glossary maintenance and naming alignment.", "Invoke via `skill(name=\"agile-pm\")` whenever the request needs sprint planning, backlog structuring, task decomposition, or file-conflict analysis."];
492
+ }, {
493
+ readonly ownerAgentId: "product-wunderkind";
494
+ readonly heading: "Delegation Patterns";
495
+ readonly items: readonly ["Delegate via `task(...)` to `librarian` for competitor research, market data, and industry-report gathering.", "Delegate via `task(...)` to `explore` for codebase mapping before decomposition or acceptance review.", "Delegate via `task(...)` to `writing` for PRDs, specs, and long-form product documentation.", "Delegate via `task(...)` to `marketing-wunderkind` for campaign, launch, and funnel authority.", "Delegate via `task(...)` to `fullstack-wunderkind` for technical follow-up after product intake with the repro, severity, and expected behavior already framed."];
496
+ }, {
497
+ readonly ownerAgentId: "fullstack-wunderkind";
498
+ readonly heading: "Sub-Skill Delegation";
499
+ 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."];
500
+ }, {
501
+ readonly ownerAgentId: "fullstack-wunderkind";
502
+ readonly heading: "Delegation Patterns";
503
+ 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."];
504
+ }, {
505
+ readonly ownerAgentId: "ciso";
506
+ readonly heading: "Sub-Skill Delegation";
507
+ readonly items: readonly ["Invoke via `skill(name=\"security-analyst\")` for vulnerability assessment, OWASP analysis, code review, and auth testing.", "Invoke via `skill(name=\"pen-tester\")` for active testing, attack simulation, ASVS checks, auth-flow abuse, and force browsing.", "Invoke via `skill(name=\"compliance-officer\")` for GDPR/POPIA work, data classification, consent handling, and breach notification obligations."];
508
+ }, {
509
+ readonly ownerAgentId: "ciso";
510
+ readonly heading: "Delegation Patterns";
511
+ readonly items: readonly ["Delegate via `task(...)` to `legal-counsel` for OSS licensing, TOS/Privacy Policy, DPAs, CLAs, and contract-review work."];
512
+ }, {
513
+ readonly ownerAgentId: "legal-counsel";
514
+ readonly heading: "Delegation Patterns";
515
+ readonly items: readonly ["Escalate technical security controls or audit evidence to `ciso`.", "Escalate incident-response execution or SLO breach handling to `fullstack-wunderkind`.", "Legal Counsel stays advisory and does not delegate through sub-skills."];
516
+ }];
517
+ };
518
+ readonly docsOutput: {
519
+ readonly entries: readonly [{
520
+ readonly agentId: "marketing-wunderkind";
521
+ readonly canonicalFilename: "marketing-strategy.md";
522
+ readonly eligible: true;
523
+ }, {
524
+ readonly agentId: "creative-director";
525
+ readonly canonicalFilename: "design-decisions.md";
526
+ readonly eligible: true;
527
+ }, {
528
+ readonly agentId: "product-wunderkind";
529
+ readonly canonicalFilename: "product-decisions.md";
530
+ readonly eligible: true;
531
+ }, {
532
+ readonly agentId: "fullstack-wunderkind";
533
+ readonly canonicalFilename: "engineering-decisions.md";
534
+ readonly eligible: true;
535
+ }, {
536
+ readonly agentId: "ciso";
537
+ readonly canonicalFilename: "security-decisions.md";
538
+ readonly eligible: true;
539
+ }, {
540
+ readonly agentId: "legal-counsel";
541
+ readonly canonicalFilename: "legal-notes.md";
542
+ readonly eligible: false;
543
+ }];
544
+ readonly docsIndex: {
545
+ readonly invocation: "/docs-index";
546
+ readonly executable: true;
547
+ readonly reason: "Implemented as a plugin command via commands/docs-index.md and intended for lightweight refresh/bootstrap of managed project docs.";
548
+ };
549
+ };
550
+ readonly omoTemplates: {
551
+ readonly schemaUrl: "https://raw.githubusercontent.com/code-yeongyu/oh-my-opencode/dev/assets/oh-my-opencode.schema.json";
552
+ readonly namespacePrefix: "wunderkind";
553
+ readonly categories: readonly [{
554
+ readonly id: "quick";
555
+ readonly model: "anthropic/claude-haiku-4-5";
556
+ }, {
557
+ readonly id: "unspecified-low";
558
+ readonly model: "anthropic/claude-sonnet-4-6";
559
+ }, {
560
+ readonly id: "unspecified-high";
561
+ readonly model: "openai/gpt-5.4";
562
+ readonly variant: "high";
563
+ }, {
564
+ readonly id: "writing";
565
+ readonly model: "google/gemini-3-flash";
566
+ }, {
567
+ readonly id: "visual-engineering";
568
+ readonly model: "google/gemini-3.1-pro";
569
+ readonly variant: "high";
570
+ }];
571
+ };
572
+ readonly legacySurfaces: {
573
+ readonly contractPath: ".omo/contracts/wunderkind-upstream-convergence.jsonc";
574
+ readonly referencedTestCaseIds: readonly ["legacy-sisyphus-artifact-path", "legacy-migrate-command", "legacy-sisyphus-gitignore", "legacy-oh-my-opencode-config", "legacy-design-interface-route", "legacy-root-wunderkind-config", "legacy-opencode-config-fallback", "legacy-history-reference"];
575
+ };
576
+ };
577
+ export type CanonicalAgentId = (typeof WUNDERKIND_CANONICAL_MANIFEST.agents)[number]["id"];
578
+ export type CanonicalSkillId = (typeof WUNDERKIND_CANONICAL_MANIFEST.skills)[number]["id"];
579
+ export type NativeAssetKind = (typeof WUNDERKIND_CANONICAL_MANIFEST.nativeAssets.kinds)[number];
580
+ export declare function getCanonicalClaudePluginManifest(): Record<string, string>;
581
+ export declare function renderCanonicalOhMyOpenagentTemplate(): string;
582
+ export {};
583
+ //# sourceMappingURL=canonical-manifest.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"canonical-manifest.d.ts","sourceRoot":"","sources":["../../src/agents/canonical-manifest.ts"],"names":[],"mappings":"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"}