buildanything 1.0.0 → 1.0.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 +6 -6
- package/bin/setup.js +3 -3
- package/package.json +1 -1
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
},
|
|
10
10
|
"plugins": [
|
|
11
11
|
{
|
|
12
|
-
"name": "
|
|
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
15
|
}
|
package/README.md
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
#
|
|
1
|
+
# buildanything
|
|
2
2
|
|
|
3
3
|
**One command to build an entire product.**
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
buildanything is a Claude Code plugin that orchestrates 73 specialist AI agents into a full engineering pipeline. You describe what you want to build. buildanything handles architecture, implementation, testing, code review, security audit, accessibility, and documentation — the same process that teams at Meta, Google, and Stripe run, compressed into one session.
|
|
6
6
|
|
|
7
7
|
No agent expertise required. No manual coordination. Just `/build`.
|
|
8
8
|
|
|
@@ -16,7 +16,7 @@ npx buildanything
|
|
|
16
16
|
**Or manually in Claude Code:**
|
|
17
17
|
```
|
|
18
18
|
/plugin marketplace add sujitmeka/buildanything
|
|
19
|
-
/plugin install
|
|
19
|
+
/plugin install buildanything@buildanything-marketplace
|
|
20
20
|
```
|
|
21
21
|
|
|
22
22
|
## Commands
|
|
@@ -58,7 +58,7 @@ Outputs a decision brief: GO / PIVOT / INVESTIGATE / KILL.
|
|
|
58
58
|
|
|
59
59
|
## The 73 Agents
|
|
60
60
|
|
|
61
|
-
|
|
61
|
+
buildanything includes agents from [agency-agents](https://github.com/msitarzewski/agency-agents) and custom research agents, organized into specialist divisions:
|
|
62
62
|
|
|
63
63
|
### Design (8)
|
|
64
64
|
Brand Guardian · Image Prompt Engineer · Inclusive Visuals Specialist · UI Designer · UX Architect · UX Researcher · Visual Storyteller · Whimsy Injector
|
|
@@ -92,9 +92,9 @@ market-intel · tech-feasibility · user-research · business-model · risk-anal
|
|
|
92
92
|
|
|
93
93
|
## Works With
|
|
94
94
|
|
|
95
|
-
|
|
95
|
+
buildanything is designed to work alongside Claude Code's built-in plugins:
|
|
96
96
|
|
|
97
|
-
- **feature-dev** —
|
|
97
|
+
- **feature-dev** — buildanything's `/build` command invokes `code-architect`, `code-explorer`, and `code-reviewer` from this plugin
|
|
98
98
|
- **pr-review-toolkit** — `silent-failure-hunter`, `code-simplifier`, `type-design-analyzer`, `comment-analyzer` are used in hardening
|
|
99
99
|
- **code-review** — Used for final code review passes
|
|
100
100
|
- **commit-commands** — Used for clean git commits during the pipeline
|
package/bin/setup.js
CHANGED
|
@@ -4,7 +4,7 @@ const { execFileSync } = require("child_process");
|
|
|
4
4
|
|
|
5
5
|
const REPO = "sujitmeka/buildanything";
|
|
6
6
|
const MARKETPLACE = "buildanything-marketplace";
|
|
7
|
-
const PLUGIN = "
|
|
7
|
+
const PLUGIN = "buildanything";
|
|
8
8
|
|
|
9
9
|
function run(command, args) {
|
|
10
10
|
try {
|
|
@@ -60,8 +60,8 @@ function main() {
|
|
|
60
60
|
|
|
61
61
|
console.log(
|
|
62
62
|
"\n Installed! Start Claude Code and use:\n" +
|
|
63
|
-
" /
|
|
64
|
-
" /
|
|
63
|
+
" /buildanything:build <your idea> — full product pipeline\n" +
|
|
64
|
+
" /buildanything:idea-sweep <your idea> — parallel research sweep\n"
|
|
65
65
|
);
|
|
66
66
|
}
|
|
67
67
|
|
package/package.json
CHANGED