agentboot 0.1.0 → 0.2.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 (66) hide show
  1. package/README.md +8 -7
  2. package/agentboot.config.json +4 -1
  3. package/package.json +2 -2
  4. package/scripts/cli.ts +42 -14
  5. package/scripts/compile.ts +30 -7
  6. package/scripts/dev-sync.ts +1 -1
  7. package/scripts/lib/config.ts +17 -1
  8. package/scripts/validate.ts +12 -7
  9. package/.github/ISSUE_TEMPLATE/persona-request.md +0 -62
  10. package/.github/ISSUE_TEMPLATE/quality-feedback.md +0 -67
  11. package/.github/workflows/cla.yml +0 -25
  12. package/.github/workflows/validate.yml +0 -49
  13. package/.idea/agentboot.iml +0 -9
  14. package/.idea/misc.xml +0 -6
  15. package/.idea/modules.xml +0 -8
  16. package/.idea/vcs.xml +0 -6
  17. package/CLAUDE.md +0 -230
  18. package/CONTRIBUTING.md +0 -168
  19. package/PERSONAS.md +0 -156
  20. package/core/instructions/baseline.instructions.md +0 -133
  21. package/core/instructions/security.instructions.md +0 -186
  22. package/core/personas/code-reviewer/SKILL.md +0 -175
  23. package/core/personas/security-reviewer/SKILL.md +0 -233
  24. package/core/personas/test-data-expert/SKILL.md +0 -234
  25. package/core/personas/test-generator/SKILL.md +0 -262
  26. package/core/traits/audit-trail.md +0 -182
  27. package/core/traits/confidence-signaling.md +0 -172
  28. package/core/traits/critical-thinking.md +0 -129
  29. package/core/traits/schema-awareness.md +0 -132
  30. package/core/traits/source-citation.md +0 -174
  31. package/core/traits/structured-output.md +0 -199
  32. package/docs/ci-cd-automation.md +0 -548
  33. package/docs/claude-code-reference/README.md +0 -21
  34. package/docs/claude-code-reference/agentboot-coverage.md +0 -484
  35. package/docs/claude-code-reference/feature-inventory.md +0 -906
  36. package/docs/cli-commands-audit.md +0 -112
  37. package/docs/cli-design.md +0 -924
  38. package/docs/concepts.md +0 -1117
  39. package/docs/config-schema-audit.md +0 -121
  40. package/docs/configuration.md +0 -645
  41. package/docs/delivery-methods.md +0 -758
  42. package/docs/developer-onboarding.md +0 -342
  43. package/docs/extending.md +0 -448
  44. package/docs/getting-started.md +0 -298
  45. package/docs/knowledge-layer.md +0 -464
  46. package/docs/marketplace.md +0 -822
  47. package/docs/org-connection.md +0 -570
  48. package/docs/plans/architecture.md +0 -2429
  49. package/docs/plans/design.md +0 -2018
  50. package/docs/plans/prd.md +0 -1862
  51. package/docs/plans/stack-rank.md +0 -261
  52. package/docs/plans/technical-spec.md +0 -2755
  53. package/docs/privacy-and-safety.md +0 -807
  54. package/docs/prompt-optimization.md +0 -1071
  55. package/docs/test-plan.md +0 -972
  56. package/docs/third-party-ecosystem.md +0 -496
  57. package/domains/compliance-template/README.md +0 -173
  58. package/domains/compliance-template/traits/compliance-aware.md +0 -228
  59. package/examples/enterprise/agentboot.config.json +0 -184
  60. package/examples/minimal/agentboot.config.json +0 -46
  61. package/tests/REGRESSION-PLAN.md +0 -705
  62. package/tests/TEST-PLAN.md +0 -111
  63. package/tests/cli.test.ts +0 -705
  64. package/tests/pipeline.test.ts +0 -608
  65. package/tests/validate.test.ts +0 -278
  66. package/tsconfig.json +0 -62
@@ -1,261 +0,0 @@
1
- # Feature Stack Rank
2
-
3
- Legend:
4
- - **[BUILD]** = build system / compile pipeline
5
- - **[CLI]** = command-line tool
6
- - **[PERSONA]** = persona/trait/content system
7
- - **[DELIVER]** = delivery and distribution
8
- - **[PRIVACY]** = privacy, telemetry, metrics
9
- - **[TEST]** = testing infrastructure
10
- - **[KNOWLEDGE]** = knowledge layer / MCP
11
- - **[ONBOARD]** = developer onboarding
12
- - **[MARKET]** = marketplace and community
13
-
14
- ---
15
-
16
- ## Phase 1: "AgentBoot Builds Itself"
17
-
18
- **Definition of done:** `npm run full-build` compiles all 4 personas and syncs them back
19
- into the AgentBoot repo. Claude Code uses AgentBoot's own personas when working on
20
- AgentBoot code.
21
-
22
- | # | Feature | Category | Jira |
23
- |---|---------|----------|------|
24
- | 1 | Core trait files complete and well-authored (6 exist) | [PERSONA] | AB-49 |
25
- | 2 | persona.config.json for all 4 personas | [PERSONA] | AB-50 |
26
- | 3 | agentboot.config.json schema finalized | [BUILD] | AB-13 |
27
- | 4 | Validation script works end-to-end | [BUILD] | AB-11 |
28
- | 5 | Compile script works end-to-end (CC-native + cross-platform output) | [BUILD] | AB-12 |
29
- | 6 | repos.json created (self-referencing) | [BUILD] | AB-14 |
30
- | 7 | Sync script works end-to-end (local mode) | [BUILD] | AB-15 |
31
- | 8 | Always-on instructions (baseline + security) | [PERSONA] | AB-51 |
32
- | 9 | CC-native output: .claude/agents/ with full frontmatter | [BUILD] | AB-17 |
33
- | 10 | CC-native output: .claude/CLAUDE.md with @imports | [BUILD] | AB-19 |
34
- | 11 | CC-native output: .claude/rules/ with paths: frontmatter | [BUILD] | AB-20 |
35
- | 12 | Unit tests for config validation + frontmatter parsing | [TEST] | AB-67 |
36
- | 13 | Integration tests for build pipeline | [TEST] | AB-68 |
37
-
38
- ---
39
-
40
- ## Phase 2: "Usable by Others"
41
-
42
- **Definition of done:** A second repo can install AgentBoot personas via CLI. Setup wizard,
43
- scaffolding, doctor, and uninstall all work. Basic prompt quality checks in place.
44
-
45
- | # | Feature | Category | Jira | Status |
46
- |---|---------|----------|------|--------|
47
- | 14 | Scope merging (org → group → team → repo) | [BUILD] | AB-16 | ✓ Done |
48
- | 15 | CLI scaffolding (commander, entry point, --help) | [CLI] | AB-29 | ✓ Done |
49
- | 16 | `agentboot build` command | [CLI] | AB-30 | ✓ Done |
50
- | 17 | `agentboot validate` command | [CLI] | AB-31 | ✓ Done |
51
- | 18 | `agentboot sync` command | [CLI] | AB-32 | ✓ Done |
52
- | 19 | `agentboot setup` wizard (interactive) | [CLI] | AB-33 | ✓ Done |
53
- | 20 | `agentboot add persona` scaffolding | [CLI] | AB-34 | ✓ Done |
54
- | 21 | `agentboot add trait` scaffolding | [CLI] | AB-35 | ✓ Done |
55
- | 22 | `agentboot doctor` | [CLI] | AB-36 | ✓ Done |
56
- | 23 | `agentboot uninstall` | [CLI] | AB-45 | ✓ Done |
57
- | 24 | .agentboot-manifest.json (track managed files) | [BUILD] | AB-24 | ✓ Done |
58
- | 25 | CC-native output: .claude/skills/ with context:fork | [BUILD] | AB-18 | ✓ Done |
59
- | 26 | Cross-platform output: standalone SKILL.md (traits inlined) | [BUILD] | AB-21 | ✓ Done |
60
- | 27 | Cross-platform output: copilot-instructions.md | [BUILD] | AB-22 | ✓ Done |
61
- | 28 | PERSONAS.md auto-generation | [BUILD] | AB-23 | ✓ Done |
62
- | 29 | Gotchas rules concept (path-scoped knowledge) | [PERSONA] | AB-52 | ✓ Done |
63
- | 30 | Prompt style guide in scaffolding templates | [PERSONA] | AB-55 | ✓ Done |
64
- | 31 | `agentboot lint` (static prompt analysis) | [CLI] | AB-38 | ✓ Done |
65
- | 32 | Token budget calculation at build time | [BUILD] | AB-25 | ✓ Done |
66
- | 33 | `agentboot status` | [CLI] | AB-37 | ✓ Done |
67
- | 34 | `agentboot config repo platform <name>` (switch repo platform) | [CLI] | — | ✓ Done |
68
- | 35 | First-session welcome fragment in CLAUDE.md | [ONBOARD] | AB-77 | ✓ Done |
69
-
70
- ---
71
-
72
- ## Phase 3: "Distribution & Trust"
73
-
74
- **Definition of done:** Personas can be packaged as CC plugins and published. Privacy model
75
- and compliance hooks are in place. Sync creates PRs instead of direct writes.
76
-
77
- | # | Feature | Category | Jira | Status |
78
- |---|---------|----------|------|--------|
79
- | 35 | Plugin structure (plugin.json, agents/, skills/, hooks/) | [DELIVER] | AB-57 | |
80
- | 36 | `agentboot export --format plugin` | [CLI] | AB-40 | |
81
- | 37 | `agentboot publish` | [CLI] | AB-41 | |
82
- | 38 | Private marketplace template (marketplace.json) | [DELIVER] | AB-58 | |
83
- | 39 | Brew tap distribution | [CLI] | AB-39 | |
84
- | 40 | CC-native output: .claude/settings.json (hooks) | [BUILD] | AB-26 | ✓ Done |
85
- | 41 | Compliance hooks — input scanning (UserPromptSubmit) | [DELIVER] | AB-59 | |
86
- | 42 | Compliance hooks — output scanning (Stop) | [DELIVER] | AB-60 | |
87
- | 43 | Three-tier privacy model (config: rawPrompts false) | [PRIVACY] | AB-62 | |
88
- | 44 | Telemetry config (includeDevId: false/hashed/email) | [PRIVACY] | AB-65 | |
89
- | 45 | Audit trail hooks (SubagentStart/Stop, PostToolUse) | [PRIVACY] | AB-63 | |
90
- | 46 | Telemetry NDJSON output (canonical schema) | [PRIVACY] | AB-64 | |
91
- | 47 | Managed settings artifact generation | [DELIVER] | AB-61 | |
92
- | 48 | Sync via GitHub API (PR creation mode) | [BUILD] | AB-28 | ✓ Done |
93
- | 49 | CC-native output: .mcp.json generation | [BUILD] | AB-27 | ✓ Done |
94
- | 50 | Per-persona extensions (extend without modify) | [PERSONA] | AB-54 | |
95
- | 51 | Domain layer structure (agentboot.domain.json) | [PERSONA] | AB-53 | |
96
- | 52 | `agentboot add gotcha/domain/hook` scaffolding | [CLI] | AB-46 | |
97
-
98
- ---
99
-
100
- ## Phase 4: "Migration & Adoption"
101
-
102
- **Definition of done:** Organizations can discover existing agentic content, generate a
103
- migration plan, and onboard developers. Behavioral tests validate persona quality.
104
-
105
- | # | Feature | Category | Jira |
106
- |---|---------|----------|------|
107
- | 53 | `agentboot connect` (developer self-service) | [CLI] | AB-42 |
108
- | 54 | `agentboot discover` scan + overlap + migration plan | [CLI] | AB-43 |
109
- | 55 | `agentboot add prompt` classify + --batch decompose | [CLI] | AB-44 |
110
- | 56 | Behavioral tests (claude -p, YAML, assertions) | [TEST] | AB-69 |
111
- | 57 | Snapshot / regression tests | [TEST] | AB-70 |
112
- | 58 | CI workflow template for personas repo | [TEST] | AB-72 |
113
- | 59 | Reusable GitHub Actions workflow (agentboot-review) | [TEST] | AB-71 |
114
- | 60 | `agentboot cost-estimate` | [CLI] | AB-47 |
115
- | 61 | `agentboot metrics` | [CLI] | AB-48 |
116
- | 62 | Model selection matrix in docs | [PERSONA] | AB-56 |
117
- | 63 | /learn skill (contextual help) | [ONBOARD] | AB-78 |
118
- | 64 | Onboarding checklist generator | [ONBOARD] | AB-79 |
119
-
120
- ---
121
-
122
- ## Phase 5: "Ecosystem & Advanced"
123
-
124
- **Definition of done:** Public marketplace, knowledge layer beyond flat files, advanced
125
- governance features, cross-platform output for non-CC agents.
126
-
127
- | # | Feature | Category | Jira |
128
- |---|---------|----------|------|
129
- | 65 | /insights skill (private prompt analytics) | [PRIVACY] | AB-66 |
130
- | 66 | Marketplace core layer (bundled traits + personas) | [MARKET] | AB-80 |
131
- | 67 | Marketplace verified layer (review process) | [MARKET] | AB-81 |
132
- | 68 | Marketplace contribution guide + PR template | [MARKET] | AB-82 |
133
- | 69 | Marketplace web catalog (agentboot.dev) | [MARKET] | AB-83 |
134
- | 70 | LLM-as-judge evaluations | [TEST] | AB-73 |
135
- | 71 | Knowledge Stage 2: SQLite index + MCP server | [KNOWLEDGE] | AB-74 |
136
- | 72 | Knowledge Stage 3: Vector embeddings / RAG | [KNOWLEDGE] | AB-75 |
137
- | 73 | MCP server (@agentboot/mcp-server) | [KNOWLEDGE] | AB-76 |
138
- | 74 | ADR governance (create-adr, propose-exception) | [GOVERNANCE] | AB-84 |
139
- | 75 | Autonomy progression (Advisory → Autonomous) | [GOVERNANCE] | AB-85 |
140
- | 76 | Cross-platform: Copilot/Cursor/Gemini specific output | [BUILD] | AB-86 |
141
-
142
- ---
143
-
144
- ## Full Stack Rank (all features)
145
-
146
- | # | Feature | Category | Rationale |
147
- |---|---------|----------|-----------|
148
- | 1 | Core trait files complete and well-authored (6 exist) | [PERSONA] | Everything depends on good traits |
149
- | 2 | persona.config.json for all 4 personas | [PERSONA] | Blocks trait composition — the whole system |
150
- | 3 | Validation script works end-to-end | [BUILD] | Gate before anything compiles |
151
- | 4 | Compile script works end-to-end (CC-native + cross-platform output) | [BUILD] | The core value — traits composed into personas |
152
- | 5 | agentboot.config.json schema finalized | [BUILD] | Every command reads this |
153
- | 6 | repos.json created and schema defined | [BUILD] | Sync needs targets |
154
- | 7 | Sync script works end-to-end (local mode) | [BUILD] | Content must reach repos |
155
- | 8 | Scope merging (org → group → team → repo) | [BUILD] | Differentiator — without this it's just file copy |
156
- | 9 | CLI scaffolding (commander, entry point, --help) | [CLI] | Every user interaction goes through CLI |
157
- | 10 | `agentboot build` command | [CLI] | Wraps compile pipeline |
158
- | 11 | `agentboot validate` command | [CLI] | Wraps validation |
159
- | 12 | `agentboot sync` command | [CLI] | Wraps sync pipeline |
160
- | 13 | Always-on instructions (baseline + security) | [PERSONA] | Universal guardrails distributed to every repo |
161
- | 14 | CC-native output: .claude/agents/ with full frontmatter | [BUILD] | Use CC's full feature surface |
162
- | 15 | CC-native output: .claude/skills/ with context:fork | [BUILD] | Skill invocation surface |
163
- | 16 | CC-native output: .claude/CLAUDE.md with @imports | [BUILD] | Token-efficient trait delivery |
164
- | 17 | CC-native output: .claude/rules/ with paths: frontmatter | [BUILD] | Path-scoped gotchas |
165
- | 18 | Cross-platform output: standalone SKILL.md (traits inlined) | [BUILD] | Copilot/Cursor/Gemini support |
166
- | 19 | Cross-platform output: copilot-instructions.md | [BUILD] | Copilot support |
167
- | 20 | PERSONAS.md auto-generation | [BUILD] | Registry of what's available |
168
- | 21 | Unit tests for config validation + frontmatter parsing | [TEST] | Prevent regressions from day one |
169
- | 22 | Integration tests for build pipeline | [TEST] | Verify compile output is correct |
170
- | 23 | `agentboot setup` wizard (interactive) | [CLI] | First-time entry point for all users |
171
- | 24 | `agentboot add persona` scaffolding | [CLI] | Best-practice template for new personas |
172
- | 25 | `agentboot add trait` scaffolding | [CLI] | Best-practice template for new traits |
173
- | 26 | Gotchas rules concept (path-scoped knowledge) | [PERSONA] | High-value, immediate developer benefit |
174
- | 27 | Domain layer structure (agentboot.domain.json) | [PERSONA] | Extensibility foundation |
175
- | 28 | Per-persona extensions (extend without modify) | [PERSONA] | Product-level customization |
176
- | 29 | .agentboot-manifest.json (track managed files) | [BUILD] | Required for clean uninstall and sync safety |
177
- | 30 | `agentboot doctor` | [CLI] | Diagnosability from day one |
178
- | 31 | `agentboot status` | [CLI] | What's deployed where |
179
- | 32 | Prompt style guide in scaffolding templates | [PERSONA] | Baked-in quality from `agentboot add` |
180
- | 33 | `agentboot lint` (static prompt analysis) | [CLI] | Catch quality issues before build |
181
- | 34 | Token budget calculation at build time | [BUILD] | Warn on context bloat |
182
- | 35 | Brew tap distribution | [CLI] | Primary install method |
183
- | 36 | `agentboot export --format plugin` | [CLI] | Generate CC plugin from personas repo |
184
- | 37 | Plugin structure (plugin.json, agents/, skills/, hooks/) | [DELIVER] | Native CC distribution |
185
- | 38 | Private marketplace template (marketplace.json scaffold) | [DELIVER] | Org distribution |
186
- | 39 | `agentboot publish` | [CLI] | Push plugin to marketplace |
187
- | 40 | CC-native output: .claude/settings.json (hooks) | [BUILD] | Compliance enforcement |
188
- | 41 | Compliance hooks — input scanning (UserPromptSubmit) | [DELIVER] | Defense-in-depth layer 1 |
189
- | 42 | Compliance hooks — output scanning (Stop) | [DELIVER] | Defense-in-depth layer 3 |
190
- | 43 | Audit trail hooks (SubagentStart/Stop, PostToolUse) | [PRIVACY] | Telemetry foundation |
191
- | 44 | Telemetry NDJSON output (canonical schema) | [PRIVACY] | Measurement foundation |
192
- | 45 | `agentboot connect` (developer self-service) | [CLI] | Org onboarding path 3 |
193
- | 46 | `agentboot discover` (scan for existing content) | [CLI] | Migration from scattered to governed |
194
- | 47 | `agentboot discover` overlap analysis | [CLI] | "12 repos have TypeScript strict mode in 4 wordings" |
195
- | 48 | `agentboot discover` migration plan | [CLI] | "Before: 5600 lines, After: 800 lines" |
196
- | 49 | `agentboot add prompt` (classify + format raw prompt) | [CLI] | On-ramp from informal to governed |
197
- | 50 | `agentboot add prompt --batch` (decompose existing CLAUDE.md) | [CLI] | Migration tool |
198
- | 51 | Behavioral tests (claude -p, YAML format, assertions) | [TEST] | Persona quality verification |
199
- | 52 | First-session welcome fragment in CLAUDE.md | [ONBOARD] | Zero-effort onboarding |
200
- | 53 | Three-tier privacy model (config: rawPrompts false) | [PRIVACY] | Trust foundation |
201
- | 54 | Telemetry config (includeDevId: false/hashed/email) | [PRIVACY] | Org metrics without surveillance |
202
- | 55 | `agentboot uninstall` | [CLI] | Easy exit builds trust |
203
- | 56 | Non-destructive archive during discover/sync | [CLI] | Safety net for adoption |
204
- | 57 | `agentboot add gotcha` scaffolding | [CLI] | Template for battle-tested knowledge |
205
- | 58 | `agentboot add domain` scaffolding | [CLI] | Template for compliance layers |
206
- | 59 | `agentboot add hook` scaffolding | [CLI] | Template for compliance hooks |
207
- | 60 | Managed settings artifact generation | [DELIVER] | HARD guardrails for MDM |
208
- | 61 | CC-native output: .mcp.json generation | [BUILD] | MCP server configs in target repos |
209
- | 62 | Sync via GitHub API (PR creation mode) | [BUILD] | Automated distribution |
210
- | 63 | `agentboot cost-estimate` | [CLI] | ROI visibility |
211
- | 64 | Model selection matrix in docs | [PERSONA] | Cost optimization guidance |
212
- | 65 | `agentboot metrics` | [CLI] | Read telemetry, report per-persona |
213
- | 66 | `/insights` skill (private prompt analytics) | [PRIVACY] | Developer self-improvement |
214
- | 67 | Org dashboard design (aggregate metrics) | [PRIVACY] | Leadership visibility |
215
- | 68 | Snapshot / regression tests | [TEST] | Detect persona drift |
216
- | 69 | `/learn` skill (contextual help) | [ONBOARD] | "How do I review one file?" |
217
- | 70 | Curated external resource links | [ONBOARD] | Anthropic docs, community guides |
218
- | 71 | Onboarding checklist generator | [ONBOARD] | Generated from org config |
219
- | 72 | Contextual tips in persona output | [ONBOARD] | First-invocation hints |
220
- | 73 | Org-authored onboarding content (onboarding/ dir) | [ONBOARD] | Institutional knowledge transfer |
221
- | 74 | Reusable GitHub Actions workflow (agentboot-review) | [TEST] | Lowest-friction CI integration |
222
- | 75 | CI workflow template for personas repo | [TEST] | Build/validate/sync on merge |
223
- | 76 | `agentboot upgrade` | [CLI] | Pull latest core |
224
- | 77 | Marketplace core layer (core traits + personas) | [MARKET] | Public baseline |
225
- | 78 | Marketplace verified layer (community review process) | [MARKET] | Curated quality |
226
- | 79 | Marketplace contribution guide + PR template | [MARKET] | Community onboarding |
227
- | 80 | Contributor profiles + attribution in frontmatter | [MARKET] | Professional reputation incentive |
228
- | 81 | `agentboot search` (marketplace search) | [CLI] | Discovery |
229
- | 82 | Marketplace web catalog (agentboot.dev) | [MARKET] | Public discovery |
230
- | 83 | ACKNOWLEDGMENTS.md | [MARKET] | Prior art credit |
231
- | 84 | SuperClaude cross-listing in marketplace | [MARKET] | Ecosystem growth |
232
- | 85 | Escalation exception (harmful content flagging) | [PRIVACY] | Compliance safety valve |
233
- | 86 | HARD/SOFT guardrail elevation (/elevate with TTL) | [PRIVACY] | Emergency bypass |
234
- | 87 | ADR governance (create-adr, propose-exception skills) | [PERSONA] | Permanent exception management |
235
- | 88 | Reviewer selection config (JSON routing) | [PERSONA] | Auto-route to right reviewer |
236
- | 89 | `/review` meta-skill (orchestrate multiple reviewers) | [PERSONA] | Single invocation, multiple reviews |
237
- | 90 | Self-improvement reflections (.claude/reflections/) | [PERSONA] | Personas get better over time |
238
- | 91 | Creative-suggestion trait (counterpart to critical-thinking) | [PERSONA] | Build-up dial for reviewers |
239
- | 92 | LLM-as-judge evaluations | [TEST] | Quality measurement |
240
- | 93 | Human review tool (`agentboot review`) | [TEST] | Guided quality assessment |
241
- | 94 | Mutation testing | [TEST] | Test the tests |
242
- | 95 | Knowledge Stage 2: SQLite index + MCP server | [KNOWLEDGE] | Structured queries at scale |
243
- | 96 | Knowledge Stage 3: Vector embeddings / RAG | [KNOWLEDGE] | Semantic retrieval |
244
- | 97 | MCP server (`@agentboot/mcp-server`) | [KNOWLEDGE] | Cross-platform persona serving |
245
- | 98 | SME discoverability fragment (auto-generated) | [ONBOARD] | Persona discovery in CLAUDE.md |
246
- | 99 | Autonomy progression (Advisory → Auto-approve → Autonomous) | [PERSONA] | Per-persona independence levels |
247
- | 100 | Persona arbitrator (conflict resolution) | [PERSONA] | Cross-reviewer conflict handling |
248
- | 101 | Team champions governance model (documentation) | [DELIVER] | Human governance layer |
249
- | 102 | Two-channel MDM distribution (managed + git) | [DELIVER] | Enterprise enforcement |
250
- | 103 | Marketplace community layer (unreviewed, open) | [MARKET] | Ecosystem scale |
251
- | 104 | Marketplace monetization exploration | [MARKET] | Revenue paths |
252
- | 105 | Cowork plugin surface for non-engineers | [DELIVER] | Desktop GUI for PMs, compliance |
253
- | 106 | Copilot-specific output: .github/prompts/ generation | [BUILD] | Copilot slash commands |
254
- | 107 | Cursor-specific output: .cursor/rules/ generation | [BUILD] | Cursor support |
255
- | 108 | Gemini-specific output: GEMINI.md generation | [BUILD] | Gemini CLI support |
256
- | 109 | AgentBoot as MCP server (expose personas to any client) | [KNOWLEDGE] | Universal agent interface |
257
- | 110 | `agentboot issue` (streamlined bug reporting) | [CLI] | Bug attribution helper |
258
- | 111 | `agentboot review` samples tool | [TEST] | Guided persona review |
259
- | 112 | Prompt hook type for LLM-evaluated compliance | [DELIVER] | Haiku-based input scanning |
260
- | 113 | A/B testing for persona versions | [TEST] | Compare persona variants |
261
- | 114 | `/optimize` skill (automated improvement suggestions) | [PRIVACY] | AI-driven prompt tuning |