buildanything 1.1.0 → 1.2.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.
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "buildanything",
3
- "version": "1.1.0",
3
+ "version": "1.2.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
@@ -110,7 +110,7 @@ Install these from the official Anthropic marketplace for the full experience:
110
110
  ## Credits
111
111
 
112
112
  - Agent definitions from [agency-agents](https://github.com/msitarzewski/agency-agents) by Mike Sitarzewski
113
- - Orchestration patterns inspired by the [NEXUS framework](https://github.com/msitarzewski/agency-agents/blob/main/strategy/QUICKSTART.md)
113
+ - Orchestration patterns inspired by [agency-agents](https://github.com/msitarzewski/agency-agents)
114
114
  - Claude Code plugin architecture by [Anthropic](https://github.com/anthropics/claude-code)
115
115
 
116
116
  ## License
package/bin/setup.js CHANGED
@@ -5,6 +5,14 @@ const { execFileSync } = require("child_process");
5
5
  const REPO = "sujitmeka/buildanything";
6
6
  const MARKETPLACE = "buildanything-marketplace";
7
7
  const PLUGIN = "buildanything";
8
+ const OFFICIAL_MARKETPLACE = "claude-plugins-official";
9
+
10
+ const OFFICIAL_PLUGINS = [
11
+ { name: "feature-dev", desc: "code-architect, code-explorer, code-reviewer" },
12
+ { name: "pr-review-toolkit", desc: "silent-failure-hunter, code-simplifier, type-design-analyzer" },
13
+ { name: "code-review", desc: "final code review passes" },
14
+ { name: "commit-commands", desc: "clean git commits" },
15
+ ];
8
16
 
9
17
  function run(command, args) {
10
18
  try {
@@ -31,7 +39,7 @@ function main() {
31
39
  }
32
40
  console.log(` Found Claude Code ${version}`);
33
41
 
34
- // Add marketplace
42
+ // Add marketplace and install buildanything
35
43
  console.log(` Adding marketplace from ${REPO}...`);
36
44
  const addResult = run("claude", ["plugin", "marketplace", "add", REPO]);
37
45
  if (addResult === null) {
@@ -42,7 +50,6 @@ function main() {
42
50
  }
43
51
  console.log(" Marketplace added.");
44
52
 
45
- // Install plugin
46
53
  console.log(` Installing ${PLUGIN} plugin...`);
47
54
  const installResult = run("claude", [
48
55
  "plugin",
@@ -57,12 +64,39 @@ function main() {
57
64
  );
58
65
  process.exit(1);
59
66
  }
67
+ console.log(" buildanything installed.\n");
68
+
69
+ // Install official companion plugins
70
+ console.log(" Installing companion plugins from official marketplace...");
71
+ const installed = [];
72
+ const skipped = [];
73
+
74
+ for (const plugin of OFFICIAL_PLUGINS) {
75
+ const fullName = `${plugin.name}@${OFFICIAL_MARKETPLACE}`;
76
+ process.stdout.write(` ${plugin.name} (${plugin.desc})... `);
77
+ const result = run("claude", ["plugin", "install", fullName]);
78
+ if (result === null) {
79
+ console.log("skipped (may already be installed)");
80
+ skipped.push(plugin.name);
81
+ } else {
82
+ console.log("installed");
83
+ installed.push(plugin.name);
84
+ }
85
+ }
60
86
 
61
87
  console.log(
62
- "\n Installed! Start Claude Code and use:\n" +
88
+ "\n Setup complete! Start Claude Code and use:\n" +
63
89
  " /buildanything:build <your idea> — full product pipeline\n" +
64
90
  " /buildanything:idea-sweep <your idea> — parallel research sweep\n"
65
91
  );
92
+
93
+ if (installed.length > 0) {
94
+ console.log(` Companion plugins installed: ${installed.join(", ")}`);
95
+ }
96
+ if (skipped.length > 0) {
97
+ console.log(` Already installed: ${skipped.join(", ")}`);
98
+ }
99
+ console.log();
66
100
  }
67
101
 
68
102
  main();
package/commands/build.md CHANGED
@@ -3,7 +3,7 @@ description: "Full product build pipeline: takes a brainstormed idea through arc
3
3
  argument-hint: "Path to brainstorming doc or describe what we're building"
4
4
  ---
5
5
 
6
- # /build — NEXUS-Sprint Pipeline
6
+ # /build — buildanything pipeline
7
7
 
8
8
  ## PROCESS INTEGRITY — READ THIS FIRST
9
9
 
@@ -77,7 +77,7 @@ digraph build_pipeline {
77
77
 
78
78
  ---
79
79
 
80
- 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.
80
+ You are the **Agents Orchestrator** running the buildanything 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.
81
81
 
82
82
  **This is NOT brainstorming. Brainstorming is done. This is execution.**
83
83
 
@@ -17,7 +17,7 @@ else
17
17
  read -r -d '' CONTEXT << 'ORCHESTRATOR'
18
18
  BUILDANYTHING ORCHESTRATOR — ACTIVE BUILD DETECTED
19
19
 
20
- You are the Agents Orchestrator running a NEXUS-Sprint pipeline. You are NOT a solo developer. You coordinate specialist agents.
20
+ You are the Agents Orchestrator running the buildanything pipeline. You are NOT a solo developer. You coordinate specialist agents.
21
21
 
22
22
  CRITICAL RULES:
23
23
  1. You do NOT write implementation code yourself — you dispatch to specialist agents
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "buildanything",
3
- "version": "1.1.0",
3
+ "version": "1.2.1",
4
4
  "description": "One command to build an entire product. 73 specialist agents orchestrated into a full engineering pipeline for Claude Code.",
5
5
  "bin": {
6
6
  "buildanything": "./bin/setup.js"