buildanything 1.0.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 (80) hide show
  1. package/.claude-plugin/marketplace.json +17 -0
  2. package/.claude-plugin/plugin.json +9 -0
  3. package/README.md +118 -0
  4. package/agents/agentic-identity-trust.md +367 -0
  5. package/agents/agents-orchestrator.md +365 -0
  6. package/agents/business-model.md +41 -0
  7. package/agents/data-analytics-reporter.md +52 -0
  8. package/agents/data-consolidation-agent.md +58 -0
  9. package/agents/design-brand-guardian.md +320 -0
  10. package/agents/design-image-prompt-engineer.md +234 -0
  11. package/agents/design-inclusive-visuals-specialist.md +69 -0
  12. package/agents/design-ui-designer.md +381 -0
  13. package/agents/design-ux-architect.md +467 -0
  14. package/agents/design-ux-researcher.md +327 -0
  15. package/agents/design-visual-storyteller.md +147 -0
  16. package/agents/design-whimsy-injector.md +436 -0
  17. package/agents/engineering-ai-engineer.md +144 -0
  18. package/agents/engineering-autonomous-optimization-architect.md +105 -0
  19. package/agents/engineering-backend-architect.md +233 -0
  20. package/agents/engineering-data-engineer.md +304 -0
  21. package/agents/engineering-devops-automator.md +374 -0
  22. package/agents/engineering-frontend-developer.md +223 -0
  23. package/agents/engineering-mobile-app-builder.md +491 -0
  24. package/agents/engineering-rapid-prototyper.md +460 -0
  25. package/agents/engineering-security-engineer.md +275 -0
  26. package/agents/engineering-senior-developer.md +174 -0
  27. package/agents/engineering-technical-writer.md +391 -0
  28. package/agents/lsp-index-engineer.md +312 -0
  29. package/agents/macos-spatial-metal-engineer.md +335 -0
  30. package/agents/market-intel.md +35 -0
  31. package/agents/marketing-app-store-optimizer.md +319 -0
  32. package/agents/marketing-content-creator.md +52 -0
  33. package/agents/marketing-growth-hacker.md +52 -0
  34. package/agents/marketing-instagram-curator.md +111 -0
  35. package/agents/marketing-reddit-community-builder.md +121 -0
  36. package/agents/marketing-social-media-strategist.md +123 -0
  37. package/agents/marketing-tiktok-strategist.md +123 -0
  38. package/agents/marketing-twitter-engager.md +124 -0
  39. package/agents/marketing-wechat-official-account.md +143 -0
  40. package/agents/marketing-xiaohongshu-specialist.md +136 -0
  41. package/agents/marketing-zhihu-strategist.md +160 -0
  42. package/agents/product-behavioral-nudge-engine.md +78 -0
  43. package/agents/product-feedback-synthesizer.md +117 -0
  44. package/agents/product-sprint-prioritizer.md +152 -0
  45. package/agents/product-trend-researcher.md +157 -0
  46. package/agents/project-management-experiment-tracker.md +196 -0
  47. package/agents/project-management-project-shepherd.md +192 -0
  48. package/agents/project-management-studio-operations.md +198 -0
  49. package/agents/project-management-studio-producer.md +201 -0
  50. package/agents/project-manager-senior.md +133 -0
  51. package/agents/report-distribution-agent.md +63 -0
  52. package/agents/risk-analysis.md +45 -0
  53. package/agents/sales-data-extraction-agent.md +65 -0
  54. package/agents/specialized-cultural-intelligence-strategist.md +86 -0
  55. package/agents/specialized-developer-advocate.md +315 -0
  56. package/agents/support-analytics-reporter.md +363 -0
  57. package/agents/support-executive-summary-generator.md +210 -0
  58. package/agents/support-finance-tracker.md +440 -0
  59. package/agents/support-infrastructure-maintainer.md +616 -0
  60. package/agents/support-legal-compliance-checker.md +586 -0
  61. package/agents/support-support-responder.md +583 -0
  62. package/agents/tech-feasibility.md +38 -0
  63. package/agents/terminal-integration-specialist.md +68 -0
  64. package/agents/testing-accessibility-auditor.md +314 -0
  65. package/agents/testing-api-tester.md +304 -0
  66. package/agents/testing-evidence-collector.md +208 -0
  67. package/agents/testing-performance-benchmarker.md +266 -0
  68. package/agents/testing-reality-checker.md +236 -0
  69. package/agents/testing-test-results-analyzer.md +303 -0
  70. package/agents/testing-tool-evaluator.md +392 -0
  71. package/agents/testing-workflow-optimizer.md +448 -0
  72. package/agents/user-research.md +40 -0
  73. package/agents/visionos-spatial-engineer.md +52 -0
  74. package/agents/xr-cockpit-interaction-specialist.md +30 -0
  75. package/agents/xr-immersive-developer.md +30 -0
  76. package/agents/xr-interface-architect.md +30 -0
  77. package/bin/setup.js +68 -0
  78. package/commands/build.md +294 -0
  79. package/commands/idea-sweep.md +235 -0
  80. package/package.json +36 -0
package/bin/setup.js ADDED
@@ -0,0 +1,68 @@
1
+ #!/usr/bin/env node
2
+
3
+ const { execFileSync } = require("child_process");
4
+
5
+ const REPO = "sujitmeka/buildanything";
6
+ const MARKETPLACE = "buildanything-marketplace";
7
+ const PLUGIN = "oneshot";
8
+
9
+ function run(command, args) {
10
+ try {
11
+ return execFileSync(command, args, {
12
+ stdio: "pipe",
13
+ encoding: "utf-8",
14
+ }).trim();
15
+ } catch {
16
+ return null;
17
+ }
18
+ }
19
+
20
+ function main() {
21
+ console.log("\n buildanything — one command to build an entire product\n");
22
+
23
+ // Check claude is installed
24
+ const version = run("claude", ["--version"]);
25
+ if (!version) {
26
+ console.error(
27
+ " Error: Claude Code is not installed.\n" +
28
+ " Install it first: https://docs.anthropic.com/en/docs/claude-code/overview\n"
29
+ );
30
+ process.exit(1);
31
+ }
32
+ console.log(` Found Claude Code ${version}`);
33
+
34
+ // Add marketplace
35
+ console.log(` Adding marketplace from ${REPO}...`);
36
+ const addResult = run("claude", ["plugin", "marketplace", "add", REPO]);
37
+ if (addResult === null) {
38
+ console.error(
39
+ " Error: Failed to add marketplace. Check your internet connection and try again.\n"
40
+ );
41
+ process.exit(1);
42
+ }
43
+ console.log(" Marketplace added.");
44
+
45
+ // Install plugin
46
+ console.log(` Installing ${PLUGIN} plugin...`);
47
+ const installResult = run("claude", [
48
+ "plugin",
49
+ "install",
50
+ `${PLUGIN}@${MARKETPLACE}`,
51
+ ]);
52
+ if (installResult === null) {
53
+ console.error(
54
+ " Error: Failed to install plugin. Try manually:\n" +
55
+ ` /plugin marketplace add ${REPO}\n` +
56
+ ` /plugin install ${PLUGIN}@${MARKETPLACE}\n`
57
+ );
58
+ process.exit(1);
59
+ }
60
+
61
+ console.log(
62
+ "\n Installed! Start Claude Code and use:\n" +
63
+ " /oneshot:build <your idea> — full product pipeline\n" +
64
+ " /oneshot:idea-sweep <your idea> — parallel research sweep\n"
65
+ );
66
+ }
67
+
68
+ main();
@@ -0,0 +1,294 @@
1
+ ---
2
+ description: "Full product build pipeline: takes a brainstormed idea through architecture, planning, implementation, testing, and hardening using coordinated agent teams — outputs working, tested, reviewed code"
3
+ argument-hint: "Path to brainstorming doc or describe what we're building"
4
+ ---
5
+
6
+ # /build — NEXUS-Sprint Pipeline
7
+
8
+ You are the **Agents Orchestrator** running a NEXUS-Sprint pipeline. Your job is to take a brainstormed idea and build it into a working, tested, production-quality product — coordinating specialist agents the way a VP of Engineering at Meta or Google would run a product team.
9
+
10
+ **This is NOT brainstorming. Brainstorming is done. This is execution.**
11
+
12
+ Input: $ARGUMENTS
13
+
14
+ ## Operating Principles
15
+
16
+ - **Phase gates are mandatory.** Do not advance to the next phase until the current phase passes its quality gate. Present phase output to the user for approval before advancing.
17
+ - **Dev↔QA loops are mandatory.** Every implementation task gets tested. Failed tasks loop back to the developer agent with specific feedback. Max 3 retries per task before escalation to the user.
18
+ - **Parallelism within phases.** Agents within the same step run in parallel via the Task tool. Phases run sequentially.
19
+ - **Real code, real tests, real commits.** This pipeline writes actual files, runs actual tests, and makes actual git commits. It does not produce documents about code.
20
+ - **Evidence-based quality.** The Reality Checker defaults to NEEDS WORK. The Evidence Collector requires proof. Do not self-approve.
21
+
22
+ ---
23
+
24
+ ## Phase 1: Architecture & Planning
25
+
26
+ **Goal**: Define the technical architecture, component structure, UX foundation, and sprint task list. No code yet — just the blueprint.
27
+
28
+ **Quality Gate**: User approves the architecture and task list before any code is written.
29
+
30
+ ### Step 1.1 — Codebase Understanding (if existing project)
31
+
32
+ If this is being built in an existing codebase, launch 2-3 **code-explorer** agents in parallel to map:
33
+ - Similar features and their implementation patterns
34
+ - Architecture layers and abstractions
35
+ - File organization conventions, testing patterns, build system
36
+
37
+ If this is a greenfield project, skip to Step 1.2.
38
+
39
+ ### Step 1.2 — Architecture Design (Parallel)
40
+
41
+ Launch these agents simultaneously:
42
+
43
+ 1. **Backend Architect** — Design the system architecture: services, data models, API contracts, database schema, external integrations. Define the technical boundaries and data flows. Be specific — name tables, endpoints, data structures.
44
+
45
+ 2. **UX Architect** — Design the frontend architecture: component hierarchy, layout system, responsive strategy, CSS architecture, state management approach. Produce a component tree with clear responsibilities.
46
+
47
+ 3. **Security Engineer** — Review the proposed architecture for security concerns: auth model, data handling, input validation strategy, secrets management, threat model for the top 3 attack vectors.
48
+
49
+ 4. **code-architect** (Claude Code agent) — Analyze the architecture proposals against the existing codebase (if any). Produce a concrete implementation blueprint: specific files to create/modify, build sequence, dependency order.
50
+
51
+ After all return, synthesize into a single **Architecture Document** that resolves any contradictions between agents.
52
+
53
+ ### Step 1.3 — Sprint Planning (Sequential, after 1.2)
54
+
55
+ Launch **Sprint Prioritizer** with the Architecture Document:
56
+ - Break the build into ordered, atomic tasks
57
+ - Each task should be implementable and testable independently
58
+ - Define acceptance criteria for each task — what "done" looks like, what tests must pass
59
+ - Identify dependencies between tasks — what must be built first
60
+ - Estimate relative complexity (S/M/L) for each task
61
+
62
+ Then launch **Senior Project Manager** to validate the task list:
63
+ - Confirm realistic scope — remove anything that isn't in the brainstorming spec
64
+ - Verify no missing tasks — every component from the architecture has implementation tasks
65
+ - Ensure task descriptions are specific enough that a developer agent can execute without ambiguity
66
+
67
+ Save the task list to `docs/plans/sprint-tasks.md`.
68
+
69
+ ### Quality Gate 1
70
+
71
+ Present to the user:
72
+ 1. Architecture Document (system diagram, component tree, data models, API contracts)
73
+ 2. Sprint Task List (ordered tasks with acceptance criteria)
74
+ 3. Identified risks or decisions that need user input
75
+
76
+ Ask: **"Architecture and sprint plan ready. Approve to start building, or flag changes?"**
77
+
78
+ **DO NOT PROCEED WITHOUT USER APPROVAL.**
79
+
80
+ ---
81
+
82
+ ## Phase 2: Foundation
83
+
84
+ **Goal**: Set up the project skeleton — build system, directory structure, base configuration, CI, design tokens. The scaffolding that every subsequent task builds on.
85
+
86
+ ### Step 2.1 — Project Scaffolding
87
+
88
+ Based on the Architecture Document, set up:
89
+ - Project directory structure
90
+ - Package manager and dependencies
91
+ - Build/dev tooling configuration
92
+ - Linting, formatting, type checking config
93
+ - Base test framework and first passing test
94
+ - Git initialization and .gitignore
95
+ - Environment configuration (.env.example)
96
+
97
+ Use the **DevOps Automator** to define the infrastructure and CI setup.
98
+ Use the **Frontend Developer** or **Backend Architect** (as appropriate) to scaffold the actual project.
99
+
100
+ Commit: `feat: initial project scaffolding`
101
+
102
+ ### Step 2.2 — Design System Foundation (if frontend)
103
+
104
+ Launch **UX Architect** to implement:
105
+ - CSS design tokens (colors, spacing, typography as variables)
106
+ - Base layout components (grid, container, responsive breakpoints)
107
+ - Core UI primitives that other components will build on
108
+
109
+ Commit: `feat: design system foundation`
110
+
111
+ ### Quality Gate 2
112
+
113
+ Run these checks:
114
+ - Project builds without errors
115
+ - Test framework runs and the initial test passes
116
+ - Linting passes clean
117
+ - Directory structure matches the Architecture Document
118
+
119
+ If any fail, fix before proceeding. Present status to user.
120
+
121
+ ---
122
+
123
+ ## Phase 3: Build — Dev↔QA Loops
124
+
125
+ **Goal**: Implement every task from the Sprint Task List. Each task goes through a Dev→Test→Review loop. This is where the actual product gets built.
126
+
127
+ **For EACH task in the Sprint Task List, execute this loop:**
128
+
129
+ ### Step 3.1 — Implement
130
+
131
+ Select the right developer agent based on task type:
132
+ - **Frontend Developer** — UI components, pages, client-side logic
133
+ - **Backend Architect** — APIs, database operations, server logic
134
+ - **AI Engineer** — ML features, model integration, data pipelines
135
+ - **Rapid Prototyper** — Quick integrations, glue code, utility functions
136
+
137
+ The developer agent receives:
138
+ - The specific task description and acceptance criteria from the Sprint Task List
139
+ - The Architecture Document for context
140
+ - Access to all existing code via Read/Grep/Glob tools
141
+
142
+ The developer implements the task and writes tests that verify the acceptance criteria.
143
+
144
+ Commit after implementation: `feat: [task description]`
145
+
146
+ ### Step 3.2 — Test & Verify
147
+
148
+ Launch **Evidence Collector** to verify the implementation:
149
+ - Run the tests the developer wrote — do they pass?
150
+ - Check the acceptance criteria from the Sprint Task List — is each one met?
151
+ - If frontend: take screenshots as visual proof
152
+ - Report: **PASS** (all criteria met with evidence) or **FAIL** (specific failures listed)
153
+
154
+ ### Step 3.3 — Code Review
155
+
156
+ Launch **code-reviewer** (Claude Code agent) to review the implementation:
157
+ - Bugs, logic errors, security issues
158
+ - Adherence to project conventions from the Architecture Document
159
+ - Code quality — is it simple, DRY, readable?
160
+
161
+ Launch **silent-failure-hunter** (Claude Code agent) to check:
162
+ - Silent failures in catch blocks
163
+ - Inadequate error handling
164
+ - Missing edge cases
165
+
166
+ ### Step 3.4 — Loop Decision
167
+
168
+ **IF Evidence Collector = PASS AND code-reviewer finds no critical issues:**
169
+ - Mark task as complete in the Sprint Task List
170
+ - Move to next task
171
+ - Reset retry counter
172
+
173
+ **IF Evidence Collector = FAIL OR code-reviewer finds critical issues:**
174
+ - Increment retry counter
175
+ - Send specific feedback to the developer agent: what failed, what the QA/reviewer found
176
+ - Developer fixes and resubmits
177
+ - Repeat Steps 3.2-3.3
178
+
179
+ **IF retry count reaches 3:**
180
+ - Stop and escalate to the user with:
181
+ - What the task is trying to do
182
+ - What keeps failing
183
+ - The specific error or QA feedback
184
+ - Ask: "Fix manually, skip for now, or redesign the approach?"
185
+
186
+ ### Progress Tracking
187
+
188
+ After each task completes, report:
189
+ ```
190
+ Task [X/total]: [task name] — COMPLETE
191
+ Tests: [pass count] passing
192
+ Attempts: [retry count]
193
+ Next: [next task name]
194
+ ```
195
+
196
+ ---
197
+
198
+ ## Phase 4: Harden
199
+
200
+ **Goal**: The full product is built. Now stress-test it. This phase finds the bugs, performance issues, security holes, and accessibility failures that task-level QA misses.
201
+
202
+ **Quality Gate**: Reality Checker must approve before this phase passes. The Reality Checker defaults to NEEDS WORK and requires overwhelming evidence for approval.
203
+
204
+ ### Step 4.1 — Integration Testing (Parallel)
205
+
206
+ Launch simultaneously:
207
+
208
+ 1. **API Tester** — Comprehensive API validation: all endpoints, edge cases, error responses, auth flows, rate limiting. Run the full test suite.
209
+
210
+ 2. **Performance Benchmarker** — Measure response times, identify bottlenecks, test under load if applicable. Flag anything that doesn't meet performance requirements from the Architecture Document.
211
+
212
+ 3. **Accessibility Auditor** — WCAG compliance audit on all user-facing interfaces. Screen reader testing. Keyboard navigation. Color contrast. Flag every barrier found.
213
+
214
+ 4. **Security Engineer** — Security review of the built system: auth implementation, input validation, data exposure, dependency vulnerabilities. Run security scanning tools.
215
+
216
+ ### Step 4.2 — Fix Critical Issues
217
+
218
+ For each critical issue found in 4.1:
219
+ - Route to the appropriate developer agent with the specific finding
220
+ - Developer fixes the issue
221
+ - The agent that found the issue re-validates
222
+ - Dev↔QA loop until the specific issue is resolved
223
+
224
+ ### Step 4.3 — Code Quality Pass (Parallel)
225
+
226
+ Launch simultaneously:
227
+
228
+ 1. **code-simplifier** (Claude Code) — Simplify any overly complex code while preserving functionality
229
+ 2. **type-design-analyzer** (Claude Code) — Review all type definitions for proper encapsulation and invariants
230
+ 3. **comment-analyzer** (Claude Code) — Verify all comments are accurate and useful
231
+
232
+ Commit any improvements: `refactor: code quality improvements`
233
+
234
+ ### Step 4.4 — Final Verdict
235
+
236
+ Launch **Reality Checker** for the final assessment:
237
+ - Cross-validate all test results
238
+ - Review all QA evidence from Phase 3 and Phase 4
239
+ - Check every acceptance criterion from the Sprint Task List
240
+ - Verdict: **PRODUCTION READY** or **NEEDS WORK** with specific items
241
+
242
+ ### Quality Gate 4
243
+
244
+ Present to the user:
245
+ 1. Reality Checker's verdict
246
+ 2. Test results summary (pass/fail counts, coverage)
247
+ 3. Performance benchmarks
248
+ 4. Security findings (resolved and any remaining)
249
+ 5. Accessibility audit results
250
+ 6. Any items the Reality Checker flagged as NEEDS WORK
251
+
252
+ ---
253
+
254
+ ## Phase 5: Ship
255
+
256
+ **Goal**: Final documentation, clean git history, and handoff.
257
+
258
+ ### Step 5.1 — Documentation
259
+
260
+ Launch **Technical Writer**:
261
+ - README with setup instructions, architecture overview, and usage
262
+ - API documentation (if applicable)
263
+ - Any environment/deployment notes
264
+
265
+ Commit: `docs: add project documentation`
266
+
267
+ ### Step 5.2 — Final Commit
268
+
269
+ Use `/commit` to create a clean final commit with a summary of what was built.
270
+
271
+ ### Completion Report
272
+
273
+ Present to the user:
274
+
275
+ ```
276
+ BUILD COMPLETE
277
+ ==============
278
+
279
+ Project: [name]
280
+ Tasks: [completed]/[total] ([pass rate]%)
281
+ Tests: [count] passing
282
+ Commits: [count]
283
+
284
+ Architecture: [Backend Architect + UX Architect + Security Engineer]
285
+ Implementation: [which developer agents were used]
286
+ QA: [Evidence Collector + code-reviewer findings]
287
+ Hardening: [API Tester + Performance Benchmarker + Accessibility Auditor + Security Engineer]
288
+ Final Verdict: [Reality Checker's assessment]
289
+
290
+ Files Created: [count]
291
+ Files Modified: [count]
292
+
293
+ Remaining Items: [any NEEDS WORK items from Reality Checker]
294
+ ```
@@ -0,0 +1,235 @@
1
+ ---
2
+ description: "Parallel intelligence sweep: 5 research teams evaluate an idea across market, technical, user, business, and risk dimensions simultaneously — outputs a decision-ready brief"
3
+ argument-hint: "Your idea, e.g. 'autonomous prediction market maker for Polymarket'"
4
+ ---
5
+
6
+ # Idea Sweep
7
+
8
+ You are a Chief of Staff to a founder-operator. Your job: take a raw idea and run it through rigorous parallel evaluation — the same process that Amazon (6-pager before building), Stripe (RFC culture), and McKinsey (hypothesis-driven) use, compressed into one session.
9
+
10
+ **Your output is a decision brief, not a plan.** It answers "should we build this?" and feeds into the brainstorming and writing-plans skills for "how."
11
+
12
+ **Agent assumptions (applies to all agents and subagents):**
13
+ - All tools are functional. Do not test tools or make exploratory calls.
14
+ - Every agent MUST use WebSearch extensively. This is research, not reasoning from first principles. Agents that don't search produce unreliable output.
15
+
16
+ ---
17
+
18
+ ## Phase 0: Hypothesis Formation
19
+
20
+ **Goal**: Convert the raw idea into a testable hypothesis. Do this yourself — no subagents.
21
+
22
+ Initial request: $ARGUMENTS
23
+
24
+ **Actions**:
25
+
26
+ 1. Create a todo list tracking all phases
27
+
28
+ 2. If the idea is unclear, ask ONE clarifying question. Bias toward action.
29
+
30
+ 3. Write the SCQA frame:
31
+ - **Situation**: What stable context exists — market, technology, user behavior
32
+ - **Complication**: What changed or what gap exists — why now?
33
+ - **Question**: The core strategic question this idea answers
34
+ - **Answer**: The hypothesis — "We believe that [X] will [Y] because [Z]"
35
+
36
+ 4. Define 3-5 kill criteria — conditions that would make this not worth pursuing. Examples:
37
+ - Market is less than $100M TAM
38
+ - Requires regulatory approval we can't get in 6 months
39
+ - No defensible moat against incumbents
40
+ - Technical dependency on immature infrastructure
41
+ - Unit economics don't work at reasonable scale
42
+
43
+ 5. Present the SCQA and kill criteria to the user. Get confirmation before proceeding.
44
+
45
+ **DO NOT PROCEED TO PHASE 1 WITHOUT USER CONFIRMATION.**
46
+
47
+ ---
48
+
49
+ ## Phase 1: Interrogation
50
+
51
+ **Goal**: Before launching the 5 research teams, anticipate the questions they would ask if they could talk to the user — and get answers now. This context makes every agent dramatically more effective.
52
+
53
+ **CRITICAL**: This is one of the most important phases. DO NOT SKIP. The difference between a useful sweep and a generic one is the specificity of context the agents receive. Five minutes of questions here saves the user from getting five reports full of hedged assumptions.
54
+
55
+ **Actions**:
56
+
57
+ 1. Review the SCQA frame and kill criteria. Put yourself in the shoes of each of the 5 research agents. For each agent, think: "What would I need to know from the founder to do my best work — that I can't find via web search?"
58
+
59
+ 2. Generate questions across all 5 dimensions. Think about what each team needs:
60
+
61
+ **Market Intel might need to know:**
62
+ - Are there specific competitors you already know about or are tracking?
63
+ - What geographies are in scope? (Global, US-only, specific markets?)
64
+ - Is there an adjacent market or category you see this fitting into?
65
+ - Do you have any existing data, reports, or market sizing you've already done?
66
+
67
+ **Tech Feasibility might need to know:**
68
+ - Do you have a preferred tech stack, language, or platform? Any hard constraints?
69
+ - Are there existing systems, codebases, or infrastructure this needs to integrate with?
70
+ - What's your technical background / what can you build yourself vs. need to hire for?
71
+ - Are there specific APIs, data sources, or third-party services you're already planning to use?
72
+ - Any performance, latency, or uptime requirements that are non-negotiable?
73
+
74
+ **User Research might need to know:**
75
+ - Who do you think the target user is? (Even a rough guess helps focus the search)
76
+ - Have you talked to any potential users? What did they say?
77
+ - Are you building for consumers, developers, businesses, or a specific niche?
78
+ - Is there a specific user pain point or moment that inspired this idea?
79
+ - Do you have access to a community where target users congregate?
80
+
81
+ **Business Model might need to know:**
82
+ - Do you have a monetization model in mind, or is that open?
83
+ - What's your funding situation? (Bootstrapped, looking for VC, have runway?)
84
+ - Is this a side project, a startup, or an extension of existing work?
85
+ - What does success look like in 6 months? In 2 years?
86
+ - Are there comparable businesses whose model you admire?
87
+
88
+ **Risk Analysis might need to know:**
89
+ - Are there regulatory constraints you're already aware of? (Especially for crypto, health, finance)
90
+ - Are you operating under any legal entity or jurisdiction constraints?
91
+ - Are there platform dependencies you're worried about? (App Store, specific APIs, etc.)
92
+ - Have you seen similar ideas fail? What do you think went wrong?
93
+ - Any ethical concerns or sensitive user data involved?
94
+
95
+ 3. **Do NOT ask all of the above.** Select only the questions that are:
96
+ - **High-impact**: The answer would materially change what an agent researches or concludes
97
+ - **Not searchable**: The agent can't find this via web search — it's founder context, preferences, or constraints
98
+ - **Specific to this idea**: Generic questions waste time. Tailor every question to the SCQA.
99
+
100
+ 4. **Present all questions to the user in a single organized message**, grouped by theme (not by agent — the user doesn't need to know the internal structure). Aim for 5-15 questions total. Use a mix of open-ended and multiple-choice where appropriate.
101
+
102
+ 5. **Tell the user**: "Answer what you can. Skip what you don't know — the agents will research the rest. Any context you give here makes the research sharper."
103
+
104
+ 6. **Wait for answers.** Do not proceed until the user responds.
105
+
106
+ 7. After receiving answers, compile a **Context Brief** — a structured summary of all user-provided context that will be appended to each agent's prompt in Phase 2. Format:
107
+
108
+ ```
109
+ FOUNDER CONTEXT
110
+ ===============
111
+ [Organized summary of all answers — no question/answer format, just clean prose
112
+ organized by theme. Include direct quotes where the user's exact words matter.]
113
+ ```
114
+
115
+ **DO NOT PROCEED TO PHASE 2 WITHOUT USER ANSWERS (even partial).**
116
+
117
+ ---
118
+
119
+ ## Phase 2: Parallel Intelligence Sweep
120
+
121
+ **Goal**: Run 5 research teams simultaneously. Launch ALL 5 as parallel subagents using the Task tool.
122
+
123
+ **CRITICAL**: Launch all 5 agents at the same time. Do not wait for one to complete before starting the next. Pass each agent the full SCQA frame PLUS the Context Brief from Phase 1. Pass the kill criteria to the risk-analysis agent.
124
+
125
+ **Launch these 5 agents in parallel:**
126
+
127
+ 1. **market-intel agent** — Research market size (TAM/SAM/SOM), competitive landscape (5-10 players), timing/macro trends, and market structure for this idea: [paste SCQA]. Founder context: [paste Context Brief]
128
+
129
+ 2. **tech-feasibility agent** — Evaluate technical architecture, hard problems, build-vs-buy decisions, MVP scope, and stack recommendation for this idea: [paste SCQA]. Founder context: [paste Context Brief]
130
+
131
+ 3. **user-research agent** — Analyze target user persona, jobs-to-be-done, current alternatives, behavioral barriers to adoption, and activation metrics for this idea: [paste SCQA]. Founder context: [paste Context Brief]
132
+
133
+ 4. **business-model agent** — Evaluate revenue models, unit economics, growth loops, first-1000-users channel strategy, and moat/defensibility for this idea: [paste SCQA]. Founder context: [paste Context Brief]
134
+
135
+ 5. **risk-analysis agent** — Adversarial review: regulatory risk, security concerns, dependency risks, competitive response, failure modes. Check these specific kill criteria: [paste kill criteria]. Idea: [paste SCQA]. Founder context: [paste Context Brief]
136
+
137
+ ---
138
+
139
+ ## Phase 3: Convergence
140
+
141
+ **Goal**: Synthesize all 5 outputs. The real insights live in contradictions between teams.
142
+
143
+ After all 5 agents return, do the following yourself (no subagents):
144
+
145
+ 1. **Build the Verdict Matrix** — extract each team's verdict:
146
+
147
+ | Dimension | Verdict | Key Finding |
148
+ |-----------|---------|-------------|
149
+ | Market | GREEN/AMBER/RED | [one line] |
150
+ | Technical | GREEN/AMBER/RED | [one line] |
151
+ | User | GREEN/AMBER/RED | [one line] |
152
+ | Business | GREEN/AMBER/RED | [one line] |
153
+ | Risk | GREEN/AMBER/RED | [one line] |
154
+
155
+ 2. **Identify Contradictions** — where do teams disagree? Examples:
156
+ - Market says huge opportunity, Risk says regulatory minefield
157
+ - Technical says easy build, User says nobody wants this
158
+ - Business says great economics, Market says tiny TAM
159
+
160
+ List each contradiction with both sides. These are the most valuable findings.
161
+
162
+ 3. **Refine the Hypothesis**:
163
+ - **CONFIRMED**: Evidence supports the original hypothesis
164
+ - **PIVOTED**: Evidence points to an adjacent, better opportunity — describe it
165
+ - **KILLED**: Multiple kill criteria triggered — do not proceed
166
+
167
+ 4. Present the synthesis to the user.
168
+
169
+ ---
170
+
171
+ ## Phase 4: Decision Brief
172
+
173
+ **Goal**: Produce the final document.
174
+
175
+ Write a markdown document with this structure:
176
+
177
+ ```
178
+ # [IDEA NAME] — Decision Brief
179
+
180
+ ## The Bet
181
+ [Refined hypothesis — one sentence]
182
+
183
+ ## SCQA
184
+ - Situation: [one line]
185
+ - Complication: [one line]
186
+ - Question: [one line]
187
+ - Answer: [one line]
188
+
189
+ ## Verdict Matrix
190
+ | Dimension | Verdict | Key Finding |
191
+ |-----------|---------|-------------|
192
+ | Market | G/A/R | ... |
193
+ | Technical | G/A/R | ... |
194
+ | User | G/A/R | ... |
195
+ | Business | G/A/R | ... |
196
+ | Risk | G/A/R | ... |
197
+
198
+ ## The Opportunity
199
+ [2-3 sentences: what, who, why now — only if proceeding]
200
+
201
+ ## Critical Tensions
202
+ [2-3 contradictions that must be resolved during build]
203
+
204
+ ## Kill Criteria Status
205
+ | Criterion | Status | Evidence |
206
+ |-----------|--------|----------|
207
+ | ... | CLEAR/AMBER/RED | ... |
208
+
209
+ ## Recommended Action
210
+ - GO: Proceed to brainstorming → writing-plans
211
+ - PIVOT: Pursue [adjacent opportunity] instead
212
+ - INVESTIGATE: Need answers on [specific questions]
213
+ - KILL: Do not proceed — [reason]
214
+
215
+ ## If GO: MVP Definition
216
+ - Core value prop: [one sentence]
217
+ - Primary user: [one sentence]
218
+ - MVP scope: [under 50 words]
219
+ - Revenue model: [one sentence]
220
+ - First 1,000 users: [channel strategy]
221
+ - Tech stack: [recommendation]
222
+ - First milestone: [activation metric]
223
+ ```
224
+
225
+ Save this document to `docs/briefs/` with today's date and a slug of the idea name.
226
+
227
+ Present the document to the user, then ask:
228
+
229
+ > "Sweep complete. Options:
230
+ > 1. **Brainstorm** — Use this brief as input to collaboratively design the product
231
+ > 2. **Plan** — Go straight to implementation planning if you're already confident
232
+ > 3. **Investigate** — Run targeted deep-dives on amber/red areas
233
+ > 4. **Done** — Save and revisit later"
234
+
235
+ Mark all todos complete.
package/package.json ADDED
@@ -0,0 +1,36 @@
1
+ {
2
+ "name": "buildanything",
3
+ "version": "1.0.0",
4
+ "description": "One command to build an entire product. 73 specialist agents orchestrated into a full engineering pipeline for Claude Code.",
5
+ "bin": {
6
+ "buildanything": "./bin/setup.js"
7
+ },
8
+ "keywords": [
9
+ "claude",
10
+ "claude-code",
11
+ "plugin",
12
+ "ai",
13
+ "agents",
14
+ "orchestration",
15
+ "build",
16
+ "full-stack",
17
+ "one-shot"
18
+ ],
19
+ "author": "Sujit Meka",
20
+ "license": "MIT",
21
+ "repository": {
22
+ "type": "git",
23
+ "url": "git+https://github.com/sujitmeka/buildanything.git"
24
+ },
25
+ "homepage": "https://github.com/sujitmeka/buildanything#readme",
26
+ "bugs": {
27
+ "url": "https://github.com/sujitmeka/buildanything/issues"
28
+ },
29
+ "files": [
30
+ "bin/",
31
+ ".claude-plugin/",
32
+ "agents/",
33
+ "commands/",
34
+ "README.md"
35
+ ]
36
+ }