agentboot 0.1.0 → 0.3.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/README.md +9 -8
  2. package/agentboot.config.json +4 -1
  3. package/package.json +2 -2
  4. package/scripts/cli.ts +465 -18
  5. package/scripts/compile.ts +724 -75
  6. package/scripts/dev-sync.ts +1 -1
  7. package/scripts/lib/config.ts +259 -1
  8. package/scripts/lib/frontmatter.ts +3 -1
  9. package/scripts/validate.ts +12 -7
  10. package/website/docusaurus.config.ts +117 -0
  11. package/website/package-lock.json +18448 -0
  12. package/website/package.json +47 -0
  13. package/website/sidebars.ts +53 -0
  14. package/website/src/css/custom.css +23 -0
  15. package/website/src/pages/index.module.css +23 -0
  16. package/website/src/pages/index.tsx +125 -0
  17. package/website/static/.nojekyll +0 -0
  18. package/website/static/CNAME +1 -0
  19. package/website/static/img/favicon.ico +0 -0
  20. package/website/static/img/logo.svg +1 -0
  21. package/.github/ISSUE_TEMPLATE/persona-request.md +0 -62
  22. package/.github/ISSUE_TEMPLATE/quality-feedback.md +0 -67
  23. package/.github/workflows/cla.yml +0 -25
  24. package/.github/workflows/validate.yml +0 -49
  25. package/.idea/agentboot.iml +0 -9
  26. package/.idea/misc.xml +0 -6
  27. package/.idea/modules.xml +0 -8
  28. package/.idea/vcs.xml +0 -6
  29. package/CLAUDE.md +0 -230
  30. package/CONTRIBUTING.md +0 -168
  31. package/PERSONAS.md +0 -156
  32. package/core/instructions/baseline.instructions.md +0 -133
  33. package/core/instructions/security.instructions.md +0 -186
  34. package/core/personas/code-reviewer/SKILL.md +0 -175
  35. package/core/personas/security-reviewer/SKILL.md +0 -233
  36. package/core/personas/test-data-expert/SKILL.md +0 -234
  37. package/core/personas/test-generator/SKILL.md +0 -262
  38. package/core/traits/audit-trail.md +0 -182
  39. package/core/traits/confidence-signaling.md +0 -172
  40. package/core/traits/critical-thinking.md +0 -129
  41. package/core/traits/schema-awareness.md +0 -132
  42. package/core/traits/source-citation.md +0 -174
  43. package/core/traits/structured-output.md +0 -199
  44. package/docs/ci-cd-automation.md +0 -548
  45. package/docs/claude-code-reference/README.md +0 -21
  46. package/docs/claude-code-reference/agentboot-coverage.md +0 -484
  47. package/docs/claude-code-reference/feature-inventory.md +0 -906
  48. package/docs/cli-commands-audit.md +0 -112
  49. package/docs/cli-design.md +0 -924
  50. package/docs/concepts.md +0 -1117
  51. package/docs/config-schema-audit.md +0 -121
  52. package/docs/configuration.md +0 -645
  53. package/docs/delivery-methods.md +0 -758
  54. package/docs/developer-onboarding.md +0 -342
  55. package/docs/extending.md +0 -448
  56. package/docs/getting-started.md +0 -298
  57. package/docs/knowledge-layer.md +0 -464
  58. package/docs/marketplace.md +0 -822
  59. package/docs/org-connection.md +0 -570
  60. package/docs/plans/architecture.md +0 -2429
  61. package/docs/plans/design.md +0 -2018
  62. package/docs/plans/prd.md +0 -1862
  63. package/docs/plans/stack-rank.md +0 -261
  64. package/docs/plans/technical-spec.md +0 -2755
  65. package/docs/privacy-and-safety.md +0 -807
  66. package/docs/prompt-optimization.md +0 -1071
  67. package/docs/test-plan.md +0 -972
  68. package/docs/third-party-ecosystem.md +0 -496
  69. package/domains/compliance-template/README.md +0 -173
  70. package/domains/compliance-template/traits/compliance-aware.md +0 -228
  71. package/examples/enterprise/agentboot.config.json +0 -184
  72. package/examples/minimal/agentboot.config.json +0 -46
  73. package/tests/REGRESSION-PLAN.md +0 -705
  74. package/tests/TEST-PLAN.md +0 -111
  75. package/tests/cli.test.ts +0 -705
  76. package/tests/pipeline.test.ts +0 -608
  77. package/tests/validate.test.ts +0 -278
  78. package/tsconfig.json +0 -62
package/README.md CHANGED
@@ -29,19 +29,20 @@ The output works without AgentBoot installed. Any platform that reads Markdown c
29
29
  ## Quickstart
30
30
 
31
31
  ```bash
32
- # Install
33
- npm install agentboot
32
+ # Install (pick one)
33
+ brew tap agentboot-dev/agentboot && brew install agentboot
34
+ npm install -g agentboot
34
35
 
35
36
  # Set up a new personas repo
36
- npx agentboot setup
37
+ agentboot setup
37
38
 
38
39
  # Configure your org
39
40
  # Edit agentboot.config.json with your org name, groups, and teams
40
41
 
41
42
  # Build and sync
42
- npx agentboot build
43
- npx agentboot sync --dry-run # preview first
44
- npx agentboot sync # deploy to repos
43
+ agentboot build
44
+ agentboot sync --dry-run # preview first
45
+ agentboot sync # deploy to repos
45
46
  ```
46
47
 
47
48
  Your repos now have:
@@ -123,7 +124,7 @@ Everything is driven by `agentboot.config.json`:
123
124
  agentboot build # Compile personas from traits
124
125
  agentboot validate # Pre-build validation checks
125
126
  agentboot sync # Distribute to target repos
126
- agentboot full-build # clean → validate → build → sync pipeline
127
+ agentboot dev-build # clean → validate → build → dev-sync pipeline
127
128
  agentboot setup # Scaffold a new personas repo
128
129
  agentboot add <type> # Create a new persona, trait, or gotcha
129
130
  agentboot doctor # Diagnose configuration issues
@@ -165,7 +166,7 @@ See [CONTRIBUTING.md](CONTRIBUTING.md) for guidelines.
165
166
 
166
167
  ## License
167
168
 
168
- Apache 2.0 — see [LICENSE](LICENSE).
169
+ Apache 2.0 — see [LICENSE](LICENSE). "AgentBoot" is a trademark of Michel Saavedra — see [TRADEMARK.md](TRADEMARK.md).
169
170
 
170
171
  ---
171
172
 
@@ -5,7 +5,7 @@
5
5
  // Convention over configuration: every field has a sensible default.
6
6
  // You only need to specify what's different about your organization.
7
7
  //
8
- // Run `npm run full-build` after editing to validate, compile, and sync.
8
+ // Run `npm run dev-build` after editing to validate, compile, and sync.
9
9
 
10
10
  // ---------------------------------------------------------------------------
11
11
  // Organization identity
@@ -184,6 +184,9 @@
184
184
  // Claude Code-specific output configuration (only applies to "claude" platform).
185
185
  // ---------------------------------------------------------------------------
186
186
 
187
+ // Claude Code-specific output (experimental — Phase 2).
188
+ // Generates settings.json and .mcp.json when uncommented.
189
+ // Requires Claude Code to support these features.
187
190
  // "claude": {
188
191
  // "hooks": {},
189
192
  // "permissions": { "allow": [], "deny": [] },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agentboot",
3
- "version": "0.1.0",
3
+ "version": "0.3.0",
4
4
  "description": "Convention over configuration for agentic development teams. The Spring Boot of Claude Code governance.",
5
5
  "license": "Apache-2.0",
6
6
  "author": "Mike Saavedra <mike@agentboot.dev>",
@@ -44,7 +44,7 @@
44
44
  "build": "tsx scripts/compile.ts",
45
45
  "validate": "tsx scripts/validate.ts",
46
46
  "sync": "tsx scripts/sync.ts",
47
- "full-build": "npm run clean && npm run validate && npm run build && npm run dev-sync",
47
+ "dev-build": "npm run clean && npm run validate && npm run build && npm run dev-sync",
48
48
  "test": "vitest run",
49
49
  "test:watch": "vitest",
50
50
  "typecheck": "tsc --noEmit",