buildanything 1.2.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.
- package/.claude-plugin/plugin.json +1 -1
- package/README.md +1 -1
- package/commands/build.md +2 -2
- package/hooks/session-start +1 -1
- package/package.json +1 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "buildanything",
|
|
3
|
-
"version": "1.2.
|
|
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
|
|
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/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 —
|
|
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
|
|
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
|
|
package/hooks/session-start
CHANGED
|
@@ -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
|
|
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