buildanything 1.5.0 → 1.7.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/.claude-plugin/marketplace.json +2 -1
- package/.claude-plugin/plugin.json +10 -2
- package/agents/agentic-identity-trust.md +65 -311
- package/agents/data-consolidation-agent.md +3 -22
- package/agents/design-brand-guardian.md +52 -275
- package/agents/design-image-prompt-engineer.md +67 -196
- package/agents/design-ui-designer.md +55 -351
- package/agents/design-ux-architect.md +54 -427
- package/agents/design-ux-researcher.md +48 -299
- package/agents/design-whimsy-injector.md +58 -405
- package/agents/engineering-backend-architect.md +39 -202
- package/agents/engineering-data-engineer.md +41 -236
- package/agents/engineering-devops-automator.md +73 -258
- package/agents/engineering-frontend-developer.md +33 -206
- package/agents/engineering-mobile-app-builder.md +36 -446
- package/agents/engineering-rapid-prototyper.md +34 -428
- package/agents/engineering-security-engineer.md +44 -204
- package/agents/engineering-senior-developer.md +18 -138
- package/agents/engineering-technical-writer.md +40 -302
- package/agents/marketing-app-store-optimizer.md +63 -276
- package/agents/marketing-social-media-strategist.md +38 -87
- package/agents/project-management-experiment-tracker.md +62 -156
- package/agents/report-distribution-agent.md +4 -24
- package/agents/sales-data-extraction-agent.md +3 -22
- package/agents/specialized-cultural-intelligence-strategist.md +41 -62
- package/agents/specialized-developer-advocate.md +65 -234
- package/agents/support-analytics-reporter.md +76 -306
- package/agents/support-executive-summary-generator.md +26 -172
- package/agents/support-finance-tracker.md +67 -362
- package/agents/support-legal-compliance-checker.md +40 -497
- package/agents/support-support-responder.md +40 -532
- package/agents/testing-accessibility-auditor.md +67 -271
- package/agents/testing-api-tester.md +58 -274
- package/agents/testing-evidence-collector.md +48 -170
- package/agents/testing-performance-benchmarker.md +75 -236
- package/agents/testing-reality-checker.md +49 -192
- package/agents/testing-test-results-analyzer.md +70 -276
- package/agents/testing-tool-evaluator.md +52 -368
- package/agents/testing-workflow-optimizer.md +66 -415
- package/bin/setup.js +45 -0
- package/bin/sync-version.js +38 -0
- package/commands/add-feature.md +98 -0
- package/commands/build.md +285 -79
- package/commands/dogfood.md +43 -0
- package/commands/fix.md +89 -0
- package/commands/idea-sweep.md +19 -82
- package/commands/refactor.md +68 -0
- package/commands/ux-review.md +81 -0
- package/commands/verify.md +43 -0
- package/hooks/session-start +22 -14
- package/package.json +4 -1
- package/agents/agents-orchestrator.md +0 -365
- package/agents/data-analytics-reporter.md +0 -52
- package/agents/lsp-index-engineer.md +0 -312
- package/agents/macos-spatial-metal-engineer.md +0 -335
- package/agents/marketing-content-creator.md +0 -52
- package/agents/marketing-growth-hacker.md +0 -52
- package/agents/product-sprint-prioritizer.md +0 -152
- package/agents/product-trend-researcher.md +0 -157
- package/agents/project-management-project-shepherd.md +0 -192
- package/agents/project-management-studio-operations.md +0 -198
- package/agents/project-management-studio-producer.md +0 -201
- package/agents/project-manager-senior.md +0 -133
- package/agents/support-infrastructure-maintainer.md +0 -616
- package/agents/terminal-integration-specialist.md +0 -68
- package/agents/visionos-spatial-engineer.md +0 -52
- package/agents/xr-cockpit-interaction-specialist.md +0 -30
- package/agents/xr-immersive-developer.md +0 -30
- package/agents/xr-interface-architect.md +0 -30
- package/commands/protocols/brainstorm.md +0 -99
- package/commands/protocols/build-fix.md +0 -52
- package/commands/protocols/cleanup.md +0 -56
- package/commands/protocols/eval-harness.md +0 -62
- package/commands/protocols/metric-loop.md +0 -94
- package/commands/protocols/planning.md +0 -56
- package/commands/protocols/verify.md +0 -63
|
@@ -0,0 +1,98 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: "Add a single feature to an existing project — lightweight build cycle using existing architecture, design system, and CLAUDE.md context"
|
|
3
|
+
argument-hint: "Describe the feature to add. --autonomous for unattended mode."
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
<HARD-GATE>
|
|
7
|
+
YOU ARE AN ORCHESTRATOR. YOU COORDINATE AGENTS. YOU DO NOT WRITE CODE.
|
|
8
|
+
|
|
9
|
+
"Launch an agent" = call the Agent tool. For implementation agents, set mode: "bypassPermissions". For parallel work, put multiple Agent tool calls in ONE message.
|
|
10
|
+
</HARD-GATE>
|
|
11
|
+
|
|
12
|
+
Input: $ARGUMENTS
|
|
13
|
+
|
|
14
|
+
If the input contains `--autonomous` or `--auto`, skip user approval gates and log decisions to `docs/plans/build-log.md`.
|
|
15
|
+
|
|
16
|
+
---
|
|
17
|
+
|
|
18
|
+
## Phase 1: Context Gathering
|
|
19
|
+
|
|
20
|
+
Read these files directly (no agent needed — this is fast):
|
|
21
|
+
|
|
22
|
+
1. `CLAUDE.md` — product context, tech stack, rules
|
|
23
|
+
2. `docs/plans/architecture.md` — current architecture
|
|
24
|
+
3. `docs/plans/sprint-tasks.md` — existing user journeys and scope
|
|
25
|
+
|
|
26
|
+
If any file is missing, proceed with what exists. If the codebase is unfamiliar or the feature touches unknown areas, spawn an Explore agent:
|
|
27
|
+
|
|
28
|
+
Call the Agent tool — description: "Explore codebase for [feature area]" — prompt: "Find all files related to [feature area]. Report: directory structure, key files, patterns used, relevant components/routes/APIs. Be concise."
|
|
29
|
+
|
|
30
|
+
---
|
|
31
|
+
|
|
32
|
+
## Phase 2: Plan the Feature
|
|
33
|
+
|
|
34
|
+
You do this yourself — no agent needed.
|
|
35
|
+
|
|
36
|
+
1. **Break the feature into 1-5 tasks** (most features are 1-3). Each task should be one commit-sized unit of work.
|
|
37
|
+
2. **Define behavioral acceptance criteria** for each task — what must be true when the task is done.
|
|
38
|
+
3. **Define the user journey** — the end-to-end flow the user will experience with this feature.
|
|
39
|
+
4. **Present the plan to the user for approval.** In autonomous mode, log the plan to `docs/plans/build-log.md` and proceed.
|
|
40
|
+
|
|
41
|
+
---
|
|
42
|
+
|
|
43
|
+
## Phase 3: Build
|
|
44
|
+
|
|
45
|
+
**For EACH task:**
|
|
46
|
+
|
|
47
|
+
### Step 3.1 — Implement
|
|
48
|
+
|
|
49
|
+
Call the Agent tool — description: "[task name]" — mode: "bypassPermissions" — prompt: "TASK: [task description + acceptance criteria]. HANDOFF — Architecture context: [paste ONLY the relevant section from architecture.md]. Style guide: the living style guide at /design-system shows component styling — match it. Implement with real code and tests. Commit: 'feat: [task]'. Report what you built, files changed, and test results."
|
|
50
|
+
|
|
51
|
+
Set `[COMPLEXITY: S/M/L]` based on task scope.
|
|
52
|
+
|
|
53
|
+
### Step 3.2 — Cleanup
|
|
54
|
+
|
|
55
|
+
Skip if trivial (< 20 lines, single file). Otherwise:
|
|
56
|
+
|
|
57
|
+
Call the Agent tool — description: "Cleanup [task name]" — mode: "bypassPermissions" — prompt: "Clean up these files: [list from implementation]. Fix: naming, dead code, unused imports, style, DRY. Do NOT add features, change architecture, or touch other files. If cleanup breaks acceptance criteria, revert."
|
|
58
|
+
|
|
59
|
+
### Step 3.3 — Smoke Test
|
|
60
|
+
|
|
61
|
+
Skip if this task has no UI surface. Otherwise run the Smoke Test Protocol (`protocols/smoke-test.md`): open the affected route, execute behavioral acceptance criteria via agent-browser, collect evidence. On FAIL: spawn fix agent with evidence. Max 2 fix-and-retest cycles.
|
|
62
|
+
|
|
63
|
+
### Step 3.4 — Verification
|
|
64
|
+
|
|
65
|
+
Run the Verification Protocol (`protocols/verify.md`). All 7 checks. If FAIL, fix before starting the next task.
|
|
66
|
+
|
|
67
|
+
---
|
|
68
|
+
|
|
69
|
+
## Phase 4: End-to-End Verification
|
|
70
|
+
|
|
71
|
+
### Step 4.1 — Run the User Journey
|
|
72
|
+
|
|
73
|
+
Call the Agent tool — description: "E2E: [feature name]" — mode: "bypassPermissions" — prompt: "Verify the full user journey for [feature name]: [paste the user journey from Phase 2]. Use agent-browser to walk through each step. For each step: interact, verify the expected outcome, capture evidence. Report PASS/FAIL per step with screenshots."
|
|
74
|
+
|
|
75
|
+
### Step 4.2 — Dogfood Affected Pages
|
|
76
|
+
|
|
77
|
+
Call the Agent tool — description: "Dogfood [feature area]" — prompt: "Open every page affected by [feature name]. Check for: broken layouts, console errors, missing data, dead links, regressions. Report issues with screenshots."
|
|
78
|
+
|
|
79
|
+
### Step 4.3 — Fix Loop
|
|
80
|
+
|
|
81
|
+
If issues found in 4.1 or 4.2: spawn a fix agent with the evidence. Re-run the failing check. Max 2 fix-and-retest cycles. After 2 failures:
|
|
82
|
+
- **Interactive:** present evidence to the user.
|
|
83
|
+
- **Autonomous:** log to `docs/plans/build-log.md` and proceed with a warning.
|
|
84
|
+
|
|
85
|
+
---
|
|
86
|
+
|
|
87
|
+
## Phase 5: Done
|
|
88
|
+
|
|
89
|
+
Report to the user:
|
|
90
|
+
|
|
91
|
+
```
|
|
92
|
+
FEATURE COMPLETE: [feature name]
|
|
93
|
+
Tasks: [done]/[total] | Tests: [count] passing
|
|
94
|
+
User journey: PASS/FAIL
|
|
95
|
+
Evidence: [paths to screenshots/logs]
|
|
96
|
+
```
|
|
97
|
+
|
|
98
|
+
If the feature expands the product scope, update `CLAUDE.md` to reflect the new capability.
|