agentboot 0.1.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 (78) hide show
  1. package/.github/ISSUE_TEMPLATE/persona-request.md +62 -0
  2. package/.github/ISSUE_TEMPLATE/quality-feedback.md +67 -0
  3. package/.github/workflows/cla.yml +25 -0
  4. package/.github/workflows/validate.yml +49 -0
  5. package/.idea/agentboot.iml +9 -0
  6. package/.idea/misc.xml +6 -0
  7. package/.idea/modules.xml +8 -0
  8. package/.idea/vcs.xml +6 -0
  9. package/CLA.md +98 -0
  10. package/CLAUDE.md +230 -0
  11. package/CONTRIBUTING.md +168 -0
  12. package/LICENSE +191 -0
  13. package/NOTICE +4 -0
  14. package/PERSONAS.md +156 -0
  15. package/README.md +172 -0
  16. package/agentboot.config.json +207 -0
  17. package/bin/agentboot.js +17 -0
  18. package/core/gotchas/README.md +35 -0
  19. package/core/instructions/baseline.instructions.md +133 -0
  20. package/core/instructions/security.instructions.md +186 -0
  21. package/core/personas/code-reviewer/SKILL.md +175 -0
  22. package/core/personas/code-reviewer/persona.config.json +11 -0
  23. package/core/personas/security-reviewer/SKILL.md +233 -0
  24. package/core/personas/security-reviewer/persona.config.json +11 -0
  25. package/core/personas/test-data-expert/SKILL.md +234 -0
  26. package/core/personas/test-data-expert/persona.config.json +10 -0
  27. package/core/personas/test-generator/SKILL.md +262 -0
  28. package/core/personas/test-generator/persona.config.json +10 -0
  29. package/core/traits/audit-trail.md +182 -0
  30. package/core/traits/confidence-signaling.md +172 -0
  31. package/core/traits/critical-thinking.md +129 -0
  32. package/core/traits/schema-awareness.md +132 -0
  33. package/core/traits/source-citation.md +174 -0
  34. package/core/traits/structured-output.md +199 -0
  35. package/docs/ci-cd-automation.md +548 -0
  36. package/docs/claude-code-reference/README.md +21 -0
  37. package/docs/claude-code-reference/agentboot-coverage.md +484 -0
  38. package/docs/claude-code-reference/feature-inventory.md +906 -0
  39. package/docs/cli-commands-audit.md +112 -0
  40. package/docs/cli-design.md +924 -0
  41. package/docs/concepts.md +1117 -0
  42. package/docs/config-schema-audit.md +121 -0
  43. package/docs/configuration.md +645 -0
  44. package/docs/delivery-methods.md +758 -0
  45. package/docs/developer-onboarding.md +342 -0
  46. package/docs/extending.md +448 -0
  47. package/docs/getting-started.md +298 -0
  48. package/docs/knowledge-layer.md +464 -0
  49. package/docs/marketplace.md +822 -0
  50. package/docs/org-connection.md +570 -0
  51. package/docs/plans/architecture.md +2429 -0
  52. package/docs/plans/design.md +2018 -0
  53. package/docs/plans/prd.md +1862 -0
  54. package/docs/plans/stack-rank.md +261 -0
  55. package/docs/plans/technical-spec.md +2755 -0
  56. package/docs/privacy-and-safety.md +807 -0
  57. package/docs/prompt-optimization.md +1071 -0
  58. package/docs/test-plan.md +972 -0
  59. package/docs/third-party-ecosystem.md +496 -0
  60. package/domains/compliance-template/README.md +173 -0
  61. package/domains/compliance-template/traits/compliance-aware.md +228 -0
  62. package/examples/enterprise/agentboot.config.json +184 -0
  63. package/examples/minimal/agentboot.config.json +46 -0
  64. package/package.json +63 -0
  65. package/repos.json +1 -0
  66. package/scripts/cli.ts +1069 -0
  67. package/scripts/compile.ts +1000 -0
  68. package/scripts/dev-sync.ts +149 -0
  69. package/scripts/lib/config.ts +137 -0
  70. package/scripts/lib/frontmatter.ts +61 -0
  71. package/scripts/sync.ts +687 -0
  72. package/scripts/validate.ts +421 -0
  73. package/tests/REGRESSION-PLAN.md +705 -0
  74. package/tests/TEST-PLAN.md +111 -0
  75. package/tests/cli.test.ts +705 -0
  76. package/tests/pipeline.test.ts +608 -0
  77. package/tests/validate.test.ts +278 -0
  78. package/tsconfig.json +62 -0
@@ -0,0 +1,822 @@
1
+ # AgentBoot Marketplace — Community Sharing & Curation
2
+
3
+ How developers and organizations contribute, discover, and share traits, personas,
4
+ rules, and domain layers through AgentBoot's marketplace ecosystem.
5
+
6
+ ---
7
+
8
+ ## The Vision
9
+
10
+ Every org building with AgentBoot will eventually write traits, gotchas rules, and
11
+ personas that would be useful to other orgs. A healthcare org writes PHI-awareness
12
+ traits. A fintech org writes PCI-DSS compliance rules. A platform team writes
13
+ Kubernetes deployment gotchas. Today, this knowledge is siloed. The marketplace
14
+ makes it shareable.
15
+
16
+ ```
17
+ Individual orgs (private) AgentBoot marketplace (public)
18
+ ───────────────────────── ────────────────────────────────
19
+
20
+ acme-corp/acme-personas agentboot/marketplace
21
+ └── acme-specific stuff ├── traits/
22
+ │ ├── critical-thinking (core)
23
+ healthco/healthco-personas │ ├── phi-awareness (community)
24
+ └── HIPAA compliance stuff │ ├── gdpr-awareness (community)
25
+ │ └── pci-compliance (community)
26
+ fintechco/fintech-personas ├── gotchas/
27
+ └── PCI-DSS stuff │ ├── postgres-rls (community)
28
+ │ ├── lambda-coldstart (community)
29
+ │ └── k8s-networking (community)
30
+ ├── personas/
31
+ │ ├── code-reviewer (core)
32
+ │ ├── api-contract-reviewer (community)
33
+ │ └── accessibility-reviewer (community)
34
+ └── domains/
35
+ ├── healthcare (community)
36
+ ├── fintech (community)
37
+ └── govtech (community)
38
+ ```
39
+
40
+ ---
41
+
42
+ ## Agent-Agnostic Content, CC-First Delivery
43
+
44
+ AgentBoot is not ClaudeBoot. The name is intentional. But honesty matters: Claude Code
45
+ is the primary target, and the marketplace will always work best with CC. If a feature
46
+ "just doesn't work without CC" — that's acceptable. We tried. Sorry, non-CC orgs.
47
+
48
+ The principle: **content is agent-agnostic; delivery is CC-first.**
49
+
50
+ ### What's Naturally Agent-Agnostic
51
+
52
+ | Content Type | Why It's Portable | Format |
53
+ |---|---|---|
54
+ | **Traits** | Pure markdown behavioral instructions. No agent-specific syntax. | `trait.md` |
55
+ | **Gotchas rules** | Technology knowledge, not agent knowledge. Postgres RLS is Postgres RLS. | `gotcha.md` with glob patterns |
56
+ | **Personas (SKILL.md)** | agentskills.io is a cross-platform standard (26+ agents). | `SKILL.md` |
57
+ | **Domain layers** | Traits + personas + gotchas + instructions. All portable. | Directory structure |
58
+ | **MCP servers** | MCP is supported by CC, Copilot, Cursor, Gemini CLI. | `.mcp.json` |
59
+
60
+ ### What's CC-Only
61
+
62
+ | Content Type | Why It's CC-Specific | Non-CC Equivalent |
63
+ |---|---|---|
64
+ | **Agent CLAUDE.md** (rich frontmatter) | model, permissionMode, maxTurns, hooks, memory | SKILL.md (subset of features) |
65
+ | **Hooks** | CC's hook system has no equivalent | None (advisory instructions only) |
66
+ | **Managed settings** | CC's MDM enforcement | None |
67
+ | **`context: fork`** | CC's subagent isolation | None |
68
+ | **CC plugin packaging** | marketplace.json, /plugin install | N/A |
69
+
70
+ ### How the Marketplace Handles This
71
+
72
+ Marketplace content is stored in the **agent-agnostic format** (markdown traits,
73
+ SKILL.md personas, gotchas with globs). This is the source of truth. The build
74
+ system produces agent-specific output:
75
+
76
+ ```
77
+ Marketplace content (agent-agnostic)
78
+ ├── traits/phi-awareness.md ← Portable markdown
79
+ ├── personas/hipaa-reviewer/SKILL.md ← agentskills.io standard
80
+ ├── gotchas/postgres-rls.md ← Technology knowledge
81
+
82
+ │ agentboot build
83
+ │ ┌─────────┴──────────┐
84
+ │ │ │
85
+ │ ▼ ▼
86
+ CC-native output Cross-platform output
87
+ ├── .claude/agents/ ├── skills/hipaa-reviewer/SKILL.md (Copilot, Cursor, Gemini)
88
+ │ └── CLAUDE.md ├── .github/copilot-instructions.md
89
+ │ (full frontmatter)├── .cursor/rules/
90
+ ├── .claude/skills/ └── GEMINI.md
91
+ ├── .claude/rules/
92
+ ├── .claude/settings.json
93
+ │ (hooks, permissions)
94
+ └── .claude/.mcp.json
95
+ ```
96
+
97
+ **CC users get everything.** Rich agent frontmatter, hooks, managed settings,
98
+ MCP, plugin packaging. The full governance surface.
99
+
100
+ **Non-CC users get the content.** SKILL.md personas, instruction files, MCP servers,
101
+ gotchas. No hooks, no managed settings, no subagent isolation. The content is the
102
+ same; the enforcement is weaker.
103
+
104
+ ### What Contributors Should Know
105
+
106
+ When contributing to the marketplace:
107
+
108
+ 1. **Write content in the agent-agnostic format.** Traits are markdown. Personas
109
+ are SKILL.md. Gotchas have glob patterns. Don't use CC-specific syntax in the
110
+ source content.
111
+
112
+ 2. **CC-specific enhancements go in metadata.** If a persona benefits from
113
+ `permissionMode: plan` or `context: fork`, declare it in `persona.config.json`
114
+ — the build system will include it in CC-native output and ignore it for
115
+ cross-platform output.
116
+
117
+ 3. **Don't test only on CC.** If you can, verify that the SKILL.md output works
118
+ in at least one other agent (Copilot CLI agent mode is the easiest to test).
119
+
120
+ 4. **Hooks are CC-only features, not content.** A gotchas rule is content (portable).
121
+ A compliance hook is a CC feature (not portable). Keep them separate. The
122
+ marketplace stores the content; the build system generates the hooks.
123
+
124
+ ### The Honest Limitation
125
+
126
+ Some of the most valuable AgentBoot features — compliance hooks, managed settings,
127
+ `permissionMode: plan` for reviewers, `context: fork` for isolation, agent memory
128
+ for self-improvement — are CC-only. No other agent platform has these capabilities
129
+ today.
130
+
131
+ Non-CC orgs get:
132
+ - Persona definitions (SKILL.md) — useful
133
+ - Always-on instructions — useful
134
+ - Path-scoped rules — useful (Copilot and Cursor both support this)
135
+ - MCP servers — useful (supported broadly)
136
+ - Hooks, enforcement, isolation, memory — **not available**
137
+
138
+ AgentBoot documents this gap honestly (see `docs/delivery-methods.md`) rather than
139
+ pretending all agents are equal. CC is the primary target. Cross-platform is a
140
+ best-effort that gets better as other agents add features.
141
+
142
+ ---
143
+
144
+ ## Marketplace Layers
145
+
146
+ AgentBoot has three marketplace layers, from most trusted to most open:
147
+
148
+ ### Layer 1: Core (Maintained by AgentBoot)
149
+
150
+ Traits and personas that ship with AgentBoot. The reference implementations.
151
+
152
+ | Content | Examples |
153
+ |---------|---------|
154
+ | Core traits | critical-thinking, structured-output, source-citation, confidence-signaling, audit-trail, schema-awareness |
155
+ | Core personas | code-reviewer, security-reviewer, test-generator, test-data-expert |
156
+ | Core instructions | baseline.instructions.md, security.instructions.md |
157
+
158
+ **Quality bar:** Maintained by the AgentBoot project. Tested, documented, versioned
159
+ with the framework. Apache 2.0 licensed.
160
+
161
+ **How to get it:** Included when you `agentboot setup`. Always available.
162
+
163
+ ### Layer 2: Verified (Reviewed + Attributed)
164
+
165
+ Community-contributed content that's been reviewed by AgentBoot maintainers and
166
+ meets quality standards. Listed in the official AgentBoot marketplace.
167
+
168
+ | Content | Examples |
169
+ |---------|---------|
170
+ | Verified traits | phi-awareness, gdpr-awareness, pci-compliance, accessibility-standards |
171
+ | Verified personas | api-contract-reviewer, accessibility-reviewer, documentation-reviewer |
172
+ | Verified gotchas | postgres-rls, lambda-coldstart, k8s-networking, terraform-state |
173
+ | Verified domains | healthcare-compliance, fintech-compliance, govtech-fedramp |
174
+
175
+ **Quality bar:**
176
+ - Reviewed by at least one AgentBoot maintainer
177
+ - Follows the trait/persona format standards
178
+ - Has behavioral tests (at least deterministic)
179
+ - Documentation (README, when to use, configuration)
180
+ - Licensed Apache 2.0 or MIT (compatible with AgentBoot core)
181
+ - No org-specific content (generalized for broad use)
182
+ - Attribution to contributor
183
+
184
+ **How to get it:**
185
+ ```bash
186
+ agentboot add trait phi-awareness --from marketplace
187
+ agentboot add domain healthcare-compliance --from marketplace
188
+ agentboot add gotcha postgres-rls --from marketplace
189
+ ```
190
+
191
+ Or via the CC plugin marketplace:
192
+ ```
193
+ /plugin marketplace add agentboot/marketplace
194
+ /plugin install agentboot-healthcare
195
+ ```
196
+
197
+ ### Layer 3: Community (Unreviewed, Use at Your Own Risk)
198
+
199
+ Anything published to a public marketplace. Not reviewed by AgentBoot maintainers.
200
+ May be excellent; may be terrible. Caveat emptor.
201
+
202
+ | Content | Examples |
203
+ |---------|---------|
204
+ | Community traits | brand-voice-casual, seo-optimization, game-dev-patterns |
205
+ | Community personas | unity-reviewer, react-native-expert, solidity-auditor |
206
+ | Community gotchas | redis-clustering, aws-iam-gotchas, docker-networking |
207
+ | Community domains | gaming, ecommerce, edtech |
208
+
209
+ **Quality bar:** Has valid `agentboot.domain.json` / frontmatter. That's it.
210
+
211
+ **How to get it:**
212
+ ```bash
213
+ agentboot add trait some-trait --from github:user/repo
214
+ agentboot add domain some-domain --from github:user/repo
215
+ ```
216
+
217
+ Or via any CC plugin marketplace:
218
+ ```
219
+ /plugin marketplace add user/their-marketplace
220
+ /plugin install their-plugin
221
+ ```
222
+
223
+ ---
224
+
225
+ ## What Can Be Shared
226
+
227
+ ### Traits (Highest Value for Sharing)
228
+
229
+ Traits are the most shareable unit because they're **context-free behavioral building
230
+ blocks**. A `critical-thinking` trait works in healthcare, fintech, and gaming. A
231
+ `phi-awareness` trait works at any healthcare org. Traits don't reference org-specific
232
+ code, paths, or systems.
233
+
234
+ **Shareable traits pattern:**
235
+ ```markdown
236
+ # Trait: GDPR Data Awareness
237
+
238
+ ## When This Trait Is Active
239
+ You are working with or near personally identifiable information in a system
240
+ subject to GDPR (EU General Data Protection Regulation).
241
+
242
+ ## Rules
243
+ 1. Flag any data storage that lacks a defined retention period.
244
+ 2. Flag any cross-border data transfer without an adequacy assessment.
245
+ 3. Verify consent collection before processing personal data.
246
+ 4. Check for right-to-deletion capability on any new user data table.
247
+ ...
248
+ ```
249
+
250
+ No org names, no internal paths, no proprietary systems. Pure behavioral rules that
251
+ any GDPR-regulated org can compose into their personas.
252
+
253
+ ### Gotchas Rules (High Value for Sharing)
254
+
255
+ Gotchas are technology-specific, not org-specific. PostgreSQL RLS behaves the same
256
+ at every company. Lambda cold starts hit everyone. These are universal lessons.
257
+
258
+ **Shareable gotchas pattern:**
259
+ ```markdown
260
+ ---
261
+ paths:
262
+ - "**/*.tf"
263
+ - "terraform/**"
264
+ description: "Terraform state gotchas"
265
+ ---
266
+
267
+ # Terraform State Gotchas
268
+
269
+ - **Never `terraform apply` without a plan file.** `terraform plan -out=plan.tfplan`
270
+ then `terraform apply plan.tfplan`. Raw `apply` can drift from what you reviewed.
271
+ - **State locking is not enabled by default.** If using S3 backend, add a DynamoDB
272
+ table for locking or you'll get corrupted state on concurrent runs.
273
+ - **`terraform destroy` destroys resources in the wrong order if you have
274
+ dependencies terraform doesn't know about.** Always review the plan.
275
+ ```
276
+
277
+ ### Personas (Medium Value for Sharing)
278
+
279
+ Personas are more opinionated than traits — they encode a specific review philosophy
280
+ and output format. But generic personas (code-reviewer, security-reviewer) are broadly
281
+ useful. Specialized personas (accessibility-reviewer, API-contract-reviewer) are
282
+ useful to any team working in that domain.
283
+
284
+ ### Domain Layers (High Value for Sharing)
285
+
286
+ Complete domain packages — traits + personas + gotchas + instructions for a specific
287
+ compliance regime or technology stack. These are the highest-effort contribution but
288
+ also the highest value.
289
+
290
+ **Example: healthcare-compliance domain layer:**
291
+ ```
292
+ domains/healthcare-compliance/
293
+ ├── agentboot.domain.json
294
+ ├── README.md
295
+ ├── traits/
296
+ │ ├── phi-awareness.md
297
+ │ ├── hipaa-enforcement.md
298
+ │ └── fhir-awareness.md
299
+ ├── personas/
300
+ │ ├── hipaa-reviewer/SKILL.md
301
+ │ └── compliance-checker/SKILL.md
302
+ ├── instructions/
303
+ │ ├── always-on.md
304
+ │ └── path-scoped/
305
+ │ └── patient-data.md
306
+ └── gotchas/
307
+ ├── hipaa-audit-logging.md
308
+ └── phi-in-test-data.md
309
+ ```
310
+
311
+ ---
312
+
313
+ ## Contribution Model
314
+
315
+ ### How to Contribute
316
+
317
+ **Individual traits/gotchas (easiest):**
318
+ ```bash
319
+ # Fork agentboot/marketplace
320
+ # Add your trait
321
+ agentboot add trait my-trait
322
+ # Edit core/traits/my-trait.md
323
+ agentboot lint --trait my-trait
324
+ agentboot test --trait my-trait
325
+ # Open PR to agentboot/marketplace
326
+ ```
327
+
328
+ **Complete domain layer:**
329
+ ```bash
330
+ # Create domain locally
331
+ agentboot add domain my-domain
332
+ # Build and test
333
+ agentboot build
334
+ agentboot test --domain my-domain
335
+ # Publish to your own marketplace first (test in production)
336
+ agentboot publish --marketplace my-github/my-marketplace
337
+ # When stable, open PR to agentboot/marketplace
338
+ ```
339
+
340
+ ### Contribution Requirements
341
+
342
+ **For Verified (Layer 2) listing:**
343
+
344
+ | Requirement | Why |
345
+ |-------------|-----|
346
+ | Apache 2.0 or MIT license | Compatibility with core and org private layers |
347
+ | No org-specific content | Must be generalizable |
348
+ | README with use case and configuration | Discoverability |
349
+ | Behavioral tests (at least 3 test cases) | Quality assurance |
350
+ | Follows trait/persona format standards | Consistency |
351
+ | `agentboot lint` passes with zero errors | Quality bar |
352
+ | Token budget within limits | Cost discipline |
353
+ | No credentials, internal URLs, PII in examples | Security |
354
+
355
+ **For Community (Layer 3):**
356
+
357
+ | Requirement | Why |
358
+ |-------------|-----|
359
+ | Valid frontmatter / agentboot.domain.json | Machine-readable |
360
+ | License declared | Legal clarity |
361
+ | That's it | Low barrier to entry |
362
+
363
+ ### Review Process (Verified)
364
+
365
+ 1. Contributor opens PR to `agentboot/marketplace`
366
+ 2. Automated checks: lint, test, format validation, license scan
367
+ 3. Maintainer review: quality, generalizability, overlap with existing content
368
+ 4. If accepted: merged with attribution, listed in marketplace index
369
+ 5. Contributor credited in CONTRIBUTORS.md and in the content's frontmatter
370
+
371
+ ---
372
+
373
+ ## SuperClaude Partnership
374
+
375
+ SuperClaude has 12 composable traits and 16 agents — the most mature public trait
376
+ library. AgentBoot has 6 core traits with a governance/distribution layer.
377
+ Partnership makes sense because the value propositions are complementary.
378
+
379
+ ### What a Partnership Could Look Like
380
+
381
+ **Shared trait format standard:**
382
+
383
+ Both projects use markdown traits with behavioral directives. If we align on a
384
+ common format, traits authored in either project work in both:
385
+
386
+ ```yaml
387
+ # Proposed shared trait frontmatter
388
+ ---
389
+ trait: critical-thinking
390
+ version: 1.0.0
391
+ format: agentboot-trait/v1 # Shared format identifier
392
+ weight: configurable # Supports HIGH/MEDIUM/LOW or 0.0-1.0
393
+ compatible:
394
+ - agentboot: ">=1.0.0"
395
+ - superclaude: ">=4.0.0"
396
+ ---
397
+ ```
398
+
399
+ **Cross-listing in marketplaces:**
400
+
401
+ AgentBoot's marketplace lists SuperClaude's traits (pointing to their repo, not
402
+ copying). SuperClaude's documentation references AgentBoot for organizational
403
+ governance. Neither project bundles the other — they're peers.
404
+
405
+ ```json
406
+ // agentboot/marketplace/.claude-plugin/marketplace.json
407
+ {
408
+ "plugins": [
409
+ {
410
+ "name": "superclaude-traits",
411
+ "source": { "source": "github", "repo": "SuperClaude-Org/SuperClaude_Plugin" },
412
+ "description": "SuperClaude's 12 composable traits — install via AgentBoot marketplace",
413
+ "category": "traits"
414
+ }
415
+ ]
416
+ }
417
+ ```
418
+
419
+ **Joint trait development:**
420
+
421
+ For new traits that both communities need (e.g., `cost-awareness`, `testing-standards`,
422
+ `documentation-quality`), develop them jointly with dual attribution:
423
+
424
+ ```markdown
425
+ # Trait: Cost Awareness
426
+
427
+ **Authors:** AgentBoot + SuperClaude communities
428
+ **License:** Apache 2.0
429
+ ```
430
+
431
+ ### What This Requires
432
+
433
+ 1. **Conversation with SuperClaude maintainers** — reach out to NomenAK, propose
434
+ format alignment and cross-listing
435
+ 2. **Format compatibility RFC** — document the shared trait format, get feedback
436
+ from both communities
437
+ 3. **Neither project depends on the other** — cross-listing is additive, not required.
438
+ AgentBoot works without SuperClaude; SuperClaude works without AgentBoot.
439
+
440
+ ### Why This Matters
441
+
442
+ The Claude Code ecosystem is fragmenting into isolated trait/agent libraries.
443
+ Every framework invents its own format. If AgentBoot and SuperClaude (the two
444
+ largest trait-based projects) align on a format, it becomes a de facto standard.
445
+ Other projects adopt it because it's where the content is. The ecosystem converges
446
+ instead of fragmenting.
447
+
448
+ This is how npm won — not by being the best package manager, but by being where
449
+ all the packages were.
450
+
451
+ ---
452
+
453
+ ## Marketplace Architecture
454
+
455
+ ### Repository Structure
456
+
457
+ ```
458
+ agentboot/marketplace/
459
+ ├── .claude-plugin/
460
+ │ └── marketplace.json # Plugin catalog
461
+ ├── traits/
462
+ │ ├── core/ # Layer 1: maintained by AgentBoot
463
+ │ │ ├── critical-thinking/
464
+ │ │ │ ├── trait.md
465
+ │ │ │ ├── tests/
466
+ │ │ │ └── README.md
467
+ │ │ └── structured-output/
468
+ │ │ └── ...
469
+ │ └── verified/ # Layer 2: reviewed community contributions
470
+ │ ├── phi-awareness/
471
+ │ ├── gdpr-awareness/
472
+ │ └── pci-compliance/
473
+ ├── gotchas/
474
+ │ ├── verified/
475
+ │ │ ├── postgres-rls.md
476
+ │ │ ├── lambda-coldstart.md
477
+ │ │ └── k8s-networking.md
478
+ │ └── README.md
479
+ ├── personas/
480
+ │ ├── core/
481
+ │ │ ├── code-reviewer/
482
+ │ │ └── security-reviewer/
483
+ │ └── verified/
484
+ │ ├── accessibility-reviewer/
485
+ │ └── api-contract-reviewer/
486
+ ├── domains/
487
+ │ ├── healthcare-compliance/
488
+ │ ├── fintech-compliance/
489
+ │ └── govtech-fedramp/
490
+ ├── CONTRIBUTORS.md
491
+ └── CONTRIBUTING.md
492
+ ```
493
+
494
+ ### How the Marketplace Connects to CC Plugins
495
+
496
+ Each logical grouping becomes a CC plugin that can be installed independently:
497
+
498
+ ```json
499
+ {
500
+ "name": "agentboot-marketplace",
501
+ "plugins": [
502
+ {
503
+ "name": "ab-core",
504
+ "source": "./plugins/core",
505
+ "description": "AgentBoot core traits and personas"
506
+ },
507
+ {
508
+ "name": "ab-healthcare",
509
+ "source": "./domains/healthcare-compliance",
510
+ "description": "Healthcare compliance domain (PHI, HIPAA, FHIR)"
511
+ },
512
+ {
513
+ "name": "ab-fintech",
514
+ "source": "./domains/fintech-compliance",
515
+ "description": "Fintech compliance domain (PCI-DSS, SOX)"
516
+ },
517
+ {
518
+ "name": "ab-gotchas-infra",
519
+ "source": "./plugins/gotchas-infra",
520
+ "description": "Infrastructure gotchas (Postgres, Lambda, K8s, Terraform)"
521
+ },
522
+ {
523
+ "name": "superclaude-traits",
524
+ "source": { "source": "github", "repo": "SuperClaude-Org/SuperClaude_Plugin" },
525
+ "description": "SuperClaude composable traits (cross-listed)"
526
+ }
527
+ ]
528
+ }
529
+ ```
530
+
531
+ Developers pick what they need:
532
+ ```
533
+ /plugin marketplace add agentboot/marketplace
534
+ /plugin install ab-core # Core personas + traits
535
+ /plugin install ab-healthcare # Healthcare domain
536
+ /plugin install ab-gotchas-infra # Infrastructure gotchas
537
+ /plugin install superclaude-traits # SuperClaude's traits
538
+ ```
539
+
540
+ ### Discovery and Search
541
+
542
+ **In CLI:**
543
+ ```bash
544
+ agentboot search traits "gdpr"
545
+ agentboot search gotchas "postgres"
546
+ agentboot search domains "healthcare"
547
+ agentboot search personas "accessibility"
548
+ ```
549
+
550
+ **In CC:**
551
+ ```
552
+ /plugin search agentboot gdpr
553
+ ```
554
+
555
+ **On the web:**
556
+ A static site (agentboot.dev/marketplace) generated from the marketplace repo,
557
+ showing all available traits, personas, gotchas, and domains with usage stats,
558
+ README previews, and install commands.
559
+
560
+ ---
561
+
562
+ ## Quality and Trust
563
+
564
+ ### How to Prevent "npm Left-Pad" Problems
565
+
566
+ 1. **Core (Layer 1) is stable.** AgentBoot's core traits and personas don't break.
567
+ They're tested in CI on every commit. Orgs can pin to a core version.
568
+
569
+ 2. **Verified (Layer 2) has review.** A maintainer reads every PR. Automated tests
570
+ run. Bad contributions are rejected. This is the "curated" tier.
571
+
572
+ 3. **Community (Layer 3) is buyer-beware.** Explicitly labeled. AgentBoot doesn't
573
+ vouch for quality. This is where experimentation happens.
574
+
575
+ 4. **Version pinning.** Orgs can pin any marketplace content to a specific version:
576
+ ```jsonc
577
+ {
578
+ "extend": {
579
+ "domains": [
580
+ { "name": "healthcare-compliance", "version": "1.2.0" }
581
+ ]
582
+ }
583
+ }
584
+ ```
585
+
586
+ 5. **License scanning.** The build system validates that all composed content has
587
+ compatible licenses. GPL in a trait blocks the build.
588
+
589
+ 6. **Trait isolation.** A bad community trait can't break a core persona. Traits
590
+ compose additively — they don't modify each other.
591
+
592
+ ### Trust Signals
593
+
594
+ Each marketplace item shows:
595
+
596
+ | Signal | What it means |
597
+ |--------|-------------|
598
+ | `core` badge | Maintained by AgentBoot project |
599
+ | `verified` badge | Reviewed by AgentBoot maintainer |
600
+ | `community` badge | Unreviewed — use at own risk |
601
+ | Download count | How many orgs are using it |
602
+ | Last updated | Is it maintained? |
603
+ | Test coverage | Does it have behavioral tests? |
604
+ | Compatible versions | Which AgentBoot versions it works with |
605
+ | License | Apache 2.0, MIT, CC-BY-SA, etc. |
606
+ | Author | Who contributed it, with link to profile |
607
+
608
+ ---
609
+
610
+ ## Why People Contribute (And How AgentBoot Maximizes It)
611
+
612
+ ### The Actual Motivations
613
+
614
+ | Motivation | What drives it | How AgentBoot serves it |
615
+ |---|---|---|
616
+ | **It solves my problem and sharing is free** | The contributor already wrote it for their org. Generalizing it takes 30 minutes. Why not? | `agentboot publish` makes sharing a one-command action. Low friction = more contributions. |
617
+ | **Professional reputation** | "I wrote the GDPR compliance domain that 400 orgs use" goes on a resume, a blog post, a conference talk. | Contributor profiles with usage stats. Permanent attribution in content frontmatter. |
618
+ | **Reciprocity** | "I used someone's Postgres gotchas and saved 2 hours. I'll contribute my Lambda gotchas." | Visible attribution on everything you install — you see who helped you, you want to help back. |
619
+ | **The content improves** | When 50 orgs use your trait, they file issues, suggest edge cases, submit PRs. Your trait gets better than you could make it alone. | GitHub-native contribution (issues, PRs). Feedback flows back to the author. |
620
+ | **Org visibility** | "Acme Corp contributed the healthcare compliance domain" is good press. Signals engineering maturity. | Org-level attribution alongside individual attribution. |
621
+ | **Hiring signal** | Companies that contribute are signaling "we take engineering seriously." Engineers notice. | Contributor page on agentboot.dev lists orgs and individuals. |
622
+
623
+ ### What Does NOT Motivate Sustained Contribution
624
+
625
+ - **Stars/likes** — dopamine hit on day one, forgotten by day three
626
+ - **Gamification** (badges, leaderboards, streaks) — attracts gaming behavior, not quality
627
+ - **Points/tokens** — creates mercenary contributors who optimize for quantity
628
+ - **Forced contribution** ("you must contribute to use the marketplace") — creates resentment
629
+
630
+ AgentBoot will not gamify contributions. No leaderboards. No badges. No streak
631
+ counters. These attract low-quality volume. We want high-quality contributions from
632
+ people who have real knowledge to share.
633
+
634
+ ### How AgentBoot Maximizes Contribution Value
635
+
636
+ **1. Attribution that matters professionally:**
637
+
638
+ Every marketplace item has permanent, visible attribution:
639
+
640
+ ```yaml
641
+ ---
642
+ trait: gdpr-awareness
643
+ version: 2.1.0
644
+ author:
645
+ name: Jane Doe
646
+ github: janedoe
647
+ org: Acme Corp # Optional — org-level credit
648
+ attribution:
649
+ - name: Jane Doe # Original author
650
+ contribution: "Initial implementation"
651
+ - name: Bob Smith # Co-contributor
652
+ contribution: "Added right-to-deletion rules"
653
+ - name: Acme Corp # Org credit
654
+ contribution: "Production-validated at scale"
655
+ ---
656
+ ```
657
+
658
+ This attribution travels with the content. When an org installs `gdpr-awareness`,
659
+ the build output includes: `# Contributed by Jane Doe (@janedoe) / Acme Corp`.
660
+ The contributor's name is in every repo that uses their work.
661
+
662
+ **2. Usage metrics visible to contributors:**
663
+
664
+ Contributors can see (anonymized) how their content is used:
665
+
666
+ ```
667
+ Your Contributions — gdpr-awareness trait
668
+ ─────────────────────────────────────────
669
+ Installs: 412 orgs
670
+ Active usage: 89% (367 orgs used it in the last 30 days)
671
+ Issues filed: 3 (1 bug, 2 feature requests)
672
+ PRs received: 2 (1 merged, 1 open)
673
+ Composed by: 6 verified personas
674
+ ```
675
+
676
+ This isn't vanity — it's evidence. "My trait is used by 412 organizations" is a
677
+ concrete, verifiable career credential. The contributor can link to it.
678
+
679
+ **3. Feedback loop back to contributors:**
680
+
681
+ When an org encounters a problem with a marketplace trait:
682
+ - They file a GitHub issue on the marketplace repo
683
+ - The issue is tagged with the trait name and routed to the author
684
+ - The author gets feedback from real production usage
685
+ - The trait improves
686
+
687
+ This is the "your content gets better when others use it" motivation made concrete.
688
+ Contributors aren't just giving — they're getting a QA team for free.
689
+
690
+ **4. Contributor profiles on agentboot.dev:**
691
+
692
+ The marketplace website includes contributor profiles:
693
+
694
+ ```
695
+ Jane Doe (@janedoe) — Acme Corp
696
+ ────────────────────────────────
697
+
698
+ Contributions:
699
+ gdpr-awareness (trait) — 412 orgs, v2.1.0
700
+ pci-compliance (trait) — 89 orgs, v1.0.0
701
+ fintech-compliance (domain) — 34 orgs, v1.2.0
702
+
703
+ Total reach: 535 orgs
704
+ Member since: 2026-06
705
+ ```
706
+
707
+ This is a public, linkable page. Jane puts it on her profile. Recruiters see it.
708
+ Conference talk submissions reference it. It's professional capital, not internet
709
+ points.
710
+
711
+ **5. Org-level recognition:**
712
+
713
+ Organizations that contribute get listed:
714
+
715
+ ```
716
+ Contributing Organizations
717
+ ──────────────────────────
718
+
719
+ Acme Corp 3 traits, 1 domain healthcare, fintech
720
+ MegaTech Inc 5 gotchas infrastructure
721
+ StartupCo 1 persona accessibility
722
+ ```
723
+
724
+ This serves the org's motivation: "we contribute to the ecosystem" is a
725
+ recruiting signal and a brand signal. It costs the org nothing (the content was
726
+ already written for internal use) and buys goodwill.
727
+
728
+ **6. Make sharing a one-command action:**
729
+
730
+ The biggest barrier to contribution isn't motivation — it's friction. The developer
731
+ has a great Postgres gotchas file. They'd share it if it took 30 seconds. They
732
+ won't if it takes 30 minutes.
733
+
734
+ ```bash
735
+ # Developer has a gotcha in their org's repo
736
+ agentboot publish gotcha postgres-rls --to marketplace
737
+
738
+ # AgentBoot:
739
+ # 1. Strips org-specific content (internal URLs, paths, names)
740
+ # 2. Validates format and lint
741
+ # 3. Generates README from content
742
+ # 4. Opens PR to agentboot/marketplace
743
+ # 5. Done. Developer's name in the PR. Review handles the rest.
744
+ ```
745
+
746
+ The `--to marketplace` flag does the generalization work. It scans for org-specific
747
+ content (internal URLs, proprietary names, hardcoded paths) and either strips it or
748
+ warns the contributor. The goal: sharing should be easier than not sharing.
749
+
750
+ ### The Virtuous Cycle
751
+
752
+ ```
753
+ Org writes trait for internal use
754
+
755
+
756
+ agentboot publish (30 seconds)
757
+
758
+
759
+ Marketplace PR → reviewed → merged
760
+
761
+
762
+ Other orgs install and use it
763
+
764
+ ├──► Issues filed → trait improves
765
+
766
+ ├──► Contributor gets usage stats → professional credit
767
+
768
+ └──► More people see the marketplace → more contributions
769
+
770
+
771
+ Marketplace grows → more valuable → more adoption
772
+
773
+
774
+ AgentBoot becomes "where the traits are"
775
+ (the npm effect)
776
+ ```
777
+
778
+ The flywheel: useful content attracts users. Users become contributors. Contributors
779
+ add more useful content. The marketplace becomes the default place to look for AI
780
+ governance content — not because of marketing, but because that's where everything is.
781
+
782
+ ---
783
+
784
+ ## Monetization Considerations
785
+
786
+ The marketplace itself is free and open. But there are legitimate monetization
787
+ paths for the ecosystem:
788
+
789
+ | Model | What | Who pays |
790
+ |-------|------|---------|
791
+ | **Free core + paid domains** | Core traits/personas are free. Premium domain layers (SOC 2 automation, HIPAA pre-audit) are paid. | Orgs that need compliance |
792
+ | **Free self-host + paid managed** | Self-host the marketplace for free. Pay for a managed marketplace with automatic updates, quality monitoring, and SLA. | Enterprise orgs |
793
+ | **Consulting marketplace** | Marketplace lists consulting partners who implement AgentBoot for orgs. AgentBoot takes a referral fee. | Orgs that need help |
794
+ | **Certification** | "AgentBoot Certified" trait/domain authors who meet advanced quality standards. | Trait authors who want credibility |
795
+
796
+ These are future considerations. V1 is free and open. Monetization is a V2+
797
+ conversation based on what the community actually values.
798
+
799
+ ---
800
+
801
+ ## Phased Rollout
802
+
803
+ | Phase | What | When |
804
+ |-------|------|------|
805
+ | V1 | Core traits + personas in a public marketplace repo. `agentboot add --from marketplace`. | At launch |
806
+ | V1.5 | Contribution guide. First community PRs. Verified review process. | Post-launch |
807
+ | V2 | SuperClaude cross-listing. Domain layers (healthcare, fintech). Web catalog at agentboot.dev. | Growth phase |
808
+ | V2+ | Community marketplace (Layer 3). Search. Trust signals. Monetization exploration. | Scale phase |
809
+
810
+ ---
811
+
812
+ *See also:*
813
+ - [`docs/third-party-ecosystem.md`](third-party-ecosystem.md) — SuperClaude, ArcKit, spec-kit analysis
814
+ - [`docs/delivery-methods.md`](delivery-methods.md) — CC plugin marketplace mechanics
815
+ - [`docs/org-connection.md`](org-connection.md) — private marketplace hosting for orgs
816
+ - [`docs/extending.md`](extending.md) — domain layer structure
817
+
818
+ Sources:
819
+ - [Create and distribute a plugin marketplace — Claude Code Docs](https://code.claude.com/docs/en/plugin-marketplaces)
820
+ - [Official Claude Code Plugins — GitHub](https://github.com/anthropics/claude-plugins-official)
821
+ - [SuperClaude Framework — GitHub](https://github.com/SuperClaude-Org/SuperClaude_Framework)
822
+ - [Claude Code Plugin Marketplace — claudemarketplaces.com](https://claudemarketplaces.com/)