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.
- package/README.md +9 -8
- package/agentboot.config.json +4 -1
- package/package.json +2 -2
- package/scripts/cli.ts +465 -18
- package/scripts/compile.ts +724 -75
- package/scripts/dev-sync.ts +1 -1
- package/scripts/lib/config.ts +259 -1
- package/scripts/lib/frontmatter.ts +3 -1
- package/scripts/validate.ts +12 -7
- package/website/docusaurus.config.ts +117 -0
- package/website/package-lock.json +18448 -0
- package/website/package.json +47 -0
- package/website/sidebars.ts +53 -0
- package/website/src/css/custom.css +23 -0
- package/website/src/pages/index.module.css +23 -0
- package/website/src/pages/index.tsx +125 -0
- package/website/static/.nojekyll +0 -0
- package/website/static/CNAME +1 -0
- package/website/static/img/favicon.ico +0 -0
- package/website/static/img/logo.svg +1 -0
- package/.github/ISSUE_TEMPLATE/persona-request.md +0 -62
- package/.github/ISSUE_TEMPLATE/quality-feedback.md +0 -67
- package/.github/workflows/cla.yml +0 -25
- package/.github/workflows/validate.yml +0 -49
- package/.idea/agentboot.iml +0 -9
- package/.idea/misc.xml +0 -6
- package/.idea/modules.xml +0 -8
- package/.idea/vcs.xml +0 -6
- package/CLAUDE.md +0 -230
- package/CONTRIBUTING.md +0 -168
- package/PERSONAS.md +0 -156
- package/core/instructions/baseline.instructions.md +0 -133
- package/core/instructions/security.instructions.md +0 -186
- package/core/personas/code-reviewer/SKILL.md +0 -175
- package/core/personas/security-reviewer/SKILL.md +0 -233
- package/core/personas/test-data-expert/SKILL.md +0 -234
- package/core/personas/test-generator/SKILL.md +0 -262
- package/core/traits/audit-trail.md +0 -182
- package/core/traits/confidence-signaling.md +0 -172
- package/core/traits/critical-thinking.md +0 -129
- package/core/traits/schema-awareness.md +0 -132
- package/core/traits/source-citation.md +0 -174
- package/core/traits/structured-output.md +0 -199
- package/docs/ci-cd-automation.md +0 -548
- package/docs/claude-code-reference/README.md +0 -21
- package/docs/claude-code-reference/agentboot-coverage.md +0 -484
- package/docs/claude-code-reference/feature-inventory.md +0 -906
- package/docs/cli-commands-audit.md +0 -112
- package/docs/cli-design.md +0 -924
- package/docs/concepts.md +0 -1117
- package/docs/config-schema-audit.md +0 -121
- package/docs/configuration.md +0 -645
- package/docs/delivery-methods.md +0 -758
- package/docs/developer-onboarding.md +0 -342
- package/docs/extending.md +0 -448
- package/docs/getting-started.md +0 -298
- package/docs/knowledge-layer.md +0 -464
- package/docs/marketplace.md +0 -822
- package/docs/org-connection.md +0 -570
- package/docs/plans/architecture.md +0 -2429
- package/docs/plans/design.md +0 -2018
- package/docs/plans/prd.md +0 -1862
- package/docs/plans/stack-rank.md +0 -261
- package/docs/plans/technical-spec.md +0 -2755
- package/docs/privacy-and-safety.md +0 -807
- package/docs/prompt-optimization.md +0 -1071
- package/docs/test-plan.md +0 -972
- package/docs/third-party-ecosystem.md +0 -496
- package/domains/compliance-template/README.md +0 -173
- package/domains/compliance-template/traits/compliance-aware.md +0 -228
- package/examples/enterprise/agentboot.config.json +0 -184
- package/examples/minimal/agentboot.config.json +0 -46
- package/tests/REGRESSION-PLAN.md +0 -705
- package/tests/TEST-PLAN.md +0 -111
- package/tests/cli.test.ts +0 -705
- package/tests/pipeline.test.ts +0 -608
- package/tests/validate.test.ts +0 -278
- 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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
43
|
-
|
|
44
|
-
|
|
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
|
|
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
|
|
package/agentboot.config.json
CHANGED
|
@@ -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
|
|
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.
|
|
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
|
-
"
|
|
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",
|