buildanything 1.7.0 → 1.7.1
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 +1 -1
- package/.claude-plugin/plugin.json +1 -1
- package/README.md +71 -61
- package/package.json +1 -1
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
"name": "buildanything",
|
|
13
13
|
"source": "./",
|
|
14
14
|
"description": "Full product build pipeline with 73 specialist agents orchestrated across architecture, implementation, testing, and hardening phases. Includes /build (full factory) and /idea-sweep (parallel research).",
|
|
15
|
-
"version": "1.7.
|
|
15
|
+
"version": "1.7.1"
|
|
16
16
|
}
|
|
17
17
|
]
|
|
18
18
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "buildanything",
|
|
3
|
-
"version": "1.7.
|
|
3
|
+
"version": "1.7.1",
|
|
4
4
|
"description": "One command to build an entire product. 73 specialist agents orchestrated into a full engineering pipeline — from idea to shipped, tested, reviewed code.",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Sujit"
|
package/README.md
CHANGED
|
@@ -2,17 +2,18 @@
|
|
|
2
2
|
|
|
3
3
|
**One command to build an entire product.**
|
|
4
4
|
|
|
5
|
-
buildanything is a Claude Code plugin that orchestrates
|
|
5
|
+
buildanything is a Claude Code plugin that orchestrates 55 specialist AI agents into a full engineering pipeline — from idea to shipped, tested, reviewed code. You describe what you want to build. buildanything handles research, design, architecture, implementation, behavioral testing, and hardening.
|
|
6
6
|
|
|
7
7
|
No agent expertise required. No manual coordination. Just `/build`.
|
|
8
8
|
|
|
9
9
|
## Install
|
|
10
10
|
|
|
11
|
-
**One command:**
|
|
12
11
|
```
|
|
13
12
|
npx buildanything
|
|
14
13
|
```
|
|
15
14
|
|
|
15
|
+
This installs the plugin, companion plugins, and [agent-browser](https://github.com/vercel-labs/agent-browser) for behavioral testing.
|
|
16
|
+
|
|
16
17
|
**Or manually in Claude Code:**
|
|
17
18
|
```
|
|
18
19
|
/plugin marketplace add sujitmeka/buildanything
|
|
@@ -23,95 +24,104 @@ npx buildanything
|
|
|
23
24
|
|
|
24
25
|
### `/build` — Full Product Pipeline
|
|
25
26
|
|
|
26
|
-
Takes
|
|
27
|
-
|
|
28
|
-
1. **Architecture** — Backend Architect, UX Architect, Security Engineer, and code-architect design the system. Sprint Prioritizer and Senior Project Manager break it into ordered tasks with acceptance criteria.
|
|
27
|
+
Takes an idea and builds it through 8 phases with quality gates, metric-driven iteration loops, and behavioral verification:
|
|
29
28
|
|
|
30
|
-
|
|
29
|
+
0. **Context & Pre-Flight** — Scans for existing work, checks prerequisites, initializes state.
|
|
30
|
+
1. **Brainstorm & Research** — Interactive brainstorming + 5 parallel research agents (market, tech, user, business, risk). Writes CLAUDE.md as the product brain.
|
|
31
|
+
2. **Architecture & Planning** — 4 parallel architecture agents + sprint planning with user journeys, NFRs, and behavioral acceptance criteria per task.
|
|
32
|
+
3. **Design & Visual Identity** — Competitive research via Playwright, living style guide with every component rendered and interactive, visual QA scoring at 80/100. Anti-AI-template detection.
|
|
33
|
+
4. **Foundation** — Scaffolding, design system from style guide, acceptance test stubs (TDD-style — tests fail until features are built).
|
|
34
|
+
5. **Build** — Per-task: implement → cleanup → metric loop → behavioral smoke test (agent-browser) → 7-check verification. Each task verified before the next starts.
|
|
35
|
+
6. **Harden** — 5 parallel audits (API, performance, accessibility, security, UX quality) → eval harness → metric loop → E2E tests from user journeys → autonomous dogfooding → fake data detector → Reality Checker with fix-and-retest loops.
|
|
36
|
+
7. **Ship** — Requirements coverage report, documentation, learnings capture.
|
|
31
37
|
|
|
32
|
-
|
|
38
|
+
```
|
|
39
|
+
/build a prediction market maker for Polymarket
|
|
40
|
+
/build docs/plans/my-design.md --autonomous
|
|
41
|
+
```
|
|
33
42
|
|
|
34
|
-
|
|
43
|
+
### `/idea-sweep` — Parallel Research Sweep
|
|
35
44
|
|
|
36
|
-
5
|
|
45
|
+
5 research agents evaluate an idea in parallel. Outputs a decision brief: GO / PIVOT / INVESTIGATE / KILL.
|
|
37
46
|
|
|
38
47
|
```
|
|
39
|
-
/
|
|
40
|
-
/build docs/plans/2025-06-15-my-idea-design.md
|
|
48
|
+
/idea-sweep AI-powered building code compliance checker
|
|
41
49
|
```
|
|
42
50
|
|
|
43
|
-
###
|
|
51
|
+
### Post-Build Commands
|
|
44
52
|
|
|
45
|
-
|
|
53
|
+
| Command | Use case |
|
|
54
|
+
|---|---|
|
|
55
|
+
| `/fix` | "The submit button doesn't work" — scoped bug fixing with agent-browser verification |
|
|
56
|
+
| `/ux-review` | "The dashboard feels cramped" — UX audit against the living style guide, mobile checks |
|
|
57
|
+
| `/add-feature` | "Add a pause button" — mini build cycle using existing design system and architecture |
|
|
58
|
+
| `/dogfood` | "Test everything" — autonomous exploratory testing of the running app |
|
|
59
|
+
| `/verify` | "Does it all pass?" — quick 7-check health check |
|
|
60
|
+
| `/refactor` | "Change the auth to OAuth" — architect plans the change, then incremental execution |
|
|
46
61
|
|
|
47
|
-
|
|
48
|
-
- **tech-feasibility** — Architecture sketch, hard problems, build vs buy, MVP scope
|
|
49
|
-
- **user-research** — Persona, JTBD, current alternatives, behavioral barriers
|
|
50
|
-
- **business-model** — Revenue model, unit economics, growth loops, moat
|
|
51
|
-
- **risk-analysis** — Regulatory, security, dependencies, failure modes
|
|
62
|
+
All commands are argument-driven — they scope themselves to what you describe.
|
|
52
63
|
|
|
53
|
-
|
|
64
|
+
## How It Works
|
|
54
65
|
|
|
55
|
-
|
|
56
|
-
/idea-sweep AI-powered building code compliance checker
|
|
57
|
-
```
|
|
66
|
+
### Behavioral Verification (agent-browser)
|
|
58
67
|
|
|
59
|
-
|
|
68
|
+
Every UI task is smoke tested after implementation. [agent-browser](https://github.com/vercel-labs/agent-browser) opens the app, clicks buttons, fills forms, and collects evidence:
|
|
60
69
|
|
|
61
|
-
|
|
70
|
+
- **Snapshot diffs** — verifies DOM actually changes when you click something
|
|
71
|
+
- **Network inspection** — catches failed API calls and missing endpoints
|
|
72
|
+
- **Console errors** — catches uncaught JS exceptions
|
|
73
|
+
- **Annotated screenshots** — labeled visual evidence (Claude is multimodal)
|
|
74
|
+
- **HAR capture** — full network traffic for fake data analysis
|
|
62
75
|
|
|
63
|
-
|
|
64
|
-
Brand Guardian · Image Prompt Engineer · Inclusive Visuals Specialist · UI Designer · UX Architect · UX Researcher · Visual Storyteller · Whimsy Injector
|
|
76
|
+
If a button doesn't work, the smoke test catches it immediately — not in Phase 6.
|
|
65
77
|
|
|
66
|
-
###
|
|
67
|
-
AI Engineer · Autonomous Optimization Architect · Backend Architect · Data Engineer · DevOps Automator · Frontend Developer · Mobile App Builder · Rapid Prototyper · Security Engineer · Senior Developer · Technical Writer
|
|
78
|
+
### Living Style Guide
|
|
68
79
|
|
|
69
|
-
|
|
70
|
-
App Store Optimizer · Content Creator · Growth Hacker · Instagram Curator · Reddit Community Builder · Social Media Strategist · TikTok Strategist · Twitter Engager · WeChat Official Account Manager · Xiaohongshu Specialist · Zhihu Strategist
|
|
80
|
+
Phase 3 builds a rendered, interactive style guide at `/design-system` with every component in every state. This ships with the product and is referenced at every stage:
|
|
71
81
|
|
|
72
|
-
|
|
73
|
-
|
|
82
|
+
- Phase 4: Design system tokens match the style guide
|
|
83
|
+
- Phase 5: Implementation agents reference it for UI tasks
|
|
84
|
+
- Phase 6: UX audit compares every page against it
|
|
74
85
|
|
|
75
|
-
###
|
|
76
|
-
Experiment Tracker · Project Shepherd · Senior Project Manager · Studio Operations · Studio Producer
|
|
86
|
+
### Feedback Loops
|
|
77
87
|
|
|
78
|
-
|
|
79
|
-
macOS Spatial/Metal Engineer · Terminal Integration Specialist · visionOS Spatial Engineer · XR Cockpit Interaction Specialist · XR Immersive Developer · XR Interface Architect
|
|
88
|
+
Every testing step feeds back into development:
|
|
80
89
|
|
|
81
|
-
|
|
82
|
-
|
|
90
|
+
- Smoke test fails → fix agent + re-test (max 2 cycles)
|
|
91
|
+
- Dogfood finds issues → classify + fix + re-dogfood (max 3 cycles)
|
|
92
|
+
- Fake data detected → fix agent replaces with real API calls (max 2 cycles)
|
|
93
|
+
- Reality Checker says NEEDS WORK → classify issues + fix + re-verify + re-check (max 2 cycles)
|
|
83
94
|
|
|
84
|
-
|
|
85
|
-
Analytics Reporter · Executive Summary Generator · Finance Tracker · Infrastructure Maintainer · Legal Compliance Checker · Support Responder
|
|
95
|
+
Nothing gets logged and ignored.
|
|
86
96
|
|
|
87
|
-
|
|
88
|
-
Accessibility Auditor · API Tester · Evidence Collector · Performance Benchmarker · Reality Checker · Test Results Analyzer · Tool Evaluator · Workflow Optimizer
|
|
97
|
+
## The 55 Agents
|
|
89
98
|
|
|
90
|
-
###
|
|
91
|
-
|
|
99
|
+
### Design (8)
|
|
100
|
+
Brand Guardian · Image Prompt Engineer · Inclusive Visuals Specialist · UI Designer · UX Architect · UX Researcher · Visual Storyteller · Whimsy Injector
|
|
92
101
|
|
|
93
|
-
|
|
102
|
+
### Engineering (9)
|
|
103
|
+
AI Engineer · Autonomous Optimization Architect · Backend Architect · Data Engineer · DevOps Automator · Frontend Developer · Mobile App Builder · Rapid Prototyper · Security Engineer · Senior Developer · Technical Writer
|
|
94
104
|
|
|
95
|
-
|
|
105
|
+
### Marketing (8)
|
|
106
|
+
App Store Optimizer · Instagram Curator · Reddit Community Builder · Social Media Strategist · TikTok Strategist · Twitter Engager · WeChat Official Account Manager · Xiaohongshu Specialist · Zhihu Strategist
|
|
96
107
|
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
- **code-review** — Used for final code review passes
|
|
100
|
-
- **commit-commands** — Used for clean git commits during the pipeline
|
|
108
|
+
### Product (2)
|
|
109
|
+
Behavioral Nudge Engine · Feedback Synthesizer
|
|
101
110
|
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
111
|
+
### Project Management (1)
|
|
112
|
+
Experiment Tracker
|
|
113
|
+
|
|
114
|
+
### Specialized (4)
|
|
115
|
+
Agentic Identity & Trust Architect · Cultural Intelligence Strategist · Developer Advocate · Data Consolidation Agent · Report Distribution Agent · Sales Data Extraction Agent
|
|
116
|
+
|
|
117
|
+
### Support (5)
|
|
118
|
+
Analytics Reporter · Executive Summary Generator · Finance Tracker · Legal Compliance Checker · Support Responder
|
|
109
119
|
|
|
110
|
-
|
|
120
|
+
### Testing (7)
|
|
121
|
+
Accessibility Auditor · API Tester · Evidence Collector · Performance Benchmarker · Reality Checker · Test Results Analyzer · Tool Evaluator · Workflow Optimizer
|
|
111
122
|
|
|
112
|
-
|
|
113
|
-
-
|
|
114
|
-
- Claude Code plugin architecture by [Anthropic](https://github.com/anthropics/claude-code)
|
|
123
|
+
### Research (5)
|
|
124
|
+
market-intel · tech-feasibility · user-research · business-model · risk-analysis
|
|
115
125
|
|
|
116
126
|
## License
|
|
117
127
|
|
package/package.json
CHANGED