agent-bober 0.4.1 → 0.4.2
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/LICENSE +1 -1
- package/README.md +19 -17
- package/package.json +2 -2
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "bober",
|
|
3
3
|
"description": "Generator-Evaluator multi-agent harness for building applications autonomously with Claude",
|
|
4
4
|
"version": "0.1.0",
|
|
5
|
-
"author": { "name": "
|
|
5
|
+
"author": { "name": "BOBER3r" },
|
|
6
6
|
"homepage": "https://github.com/BOBER3r/agent-bober",
|
|
7
7
|
"repository": "https://github.com/BOBER3r/agent-bober",
|
|
8
8
|
"license": "MIT"
|
package/LICENSE
CHANGED
package/README.md
CHANGED
|
@@ -65,18 +65,19 @@ npx agent-bober init brownfield
|
|
|
65
65
|
|
|
66
66
|
Then in Claude Code:
|
|
67
67
|
```
|
|
68
|
-
/bober
|
|
69
|
-
/bober
|
|
70
|
-
/bober
|
|
71
|
-
/bober
|
|
68
|
+
/bober-principles # Define project standards (optional but recommended)
|
|
69
|
+
/bober-plan # Describe your feature, get a structured plan
|
|
70
|
+
/bober-sprint # Execute the next sprint
|
|
71
|
+
/bober-eval # Evaluate the sprint output
|
|
72
|
+
/bober-run # Full autonomous pipeline
|
|
72
73
|
```
|
|
73
74
|
|
|
74
75
|
Specialized workflows:
|
|
75
76
|
```
|
|
76
|
-
/bober
|
|
77
|
-
/bober
|
|
78
|
-
/bober
|
|
79
|
-
/bober
|
|
77
|
+
/bober-react # React web app workflow
|
|
78
|
+
/bober-solidity # EVM smart contract workflow
|
|
79
|
+
/bober-anchor # Solana program workflow
|
|
80
|
+
/bober-brownfield # Existing codebase workflow
|
|
80
81
|
```
|
|
81
82
|
|
|
82
83
|
---
|
|
@@ -87,14 +88,15 @@ Specialized workflows:
|
|
|
87
88
|
|
|
88
89
|
| Command | Description |
|
|
89
90
|
|---|---|
|
|
90
|
-
| `/bober
|
|
91
|
-
| `/bober
|
|
92
|
-
| `/bober
|
|
93
|
-
| `/bober
|
|
94
|
-
| `/bober
|
|
95
|
-
| `/bober
|
|
96
|
-
| `/bober
|
|
97
|
-
| `/bober
|
|
91
|
+
| `/bober-principles` | Define project principles — AI expands your rough notes into standards |
|
|
92
|
+
| `/bober-plan` | Plan any feature — stack-agnostic, sprint-decomposed |
|
|
93
|
+
| `/bober-sprint` | Execute the next sprint contract |
|
|
94
|
+
| `/bober-eval` | Evaluate current sprint output |
|
|
95
|
+
| `/bober-run` | Full autonomous pipeline (plan + sprint + eval loop) |
|
|
96
|
+
| `/bober-react` | React web application workflow |
|
|
97
|
+
| `/bober-solidity` | EVM smart contract workflow |
|
|
98
|
+
| `/bober-anchor` | Solana program workflow |
|
|
99
|
+
| `/bober-brownfield` | Existing codebase workflow |
|
|
98
100
|
|
|
99
101
|
### CLI
|
|
100
102
|
|
|
@@ -492,4 +494,4 @@ This project is inspired by and implements the patterns from Anthropic's [**"Har
|
|
|
492
494
|
|
|
493
495
|
## License
|
|
494
496
|
|
|
495
|
-
[MIT](LICENSE) -- Copyright (c) 2026
|
|
497
|
+
[MIT](LICENSE) -- Copyright (c) 2026 BOBER3r
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "agent-bober",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.2",
|
|
4
4
|
"description": "Generator-Evaluator multi-agent harness for building applications autonomously with Claude. Implements planner, sprint, and evaluator patterns.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
"claude-code",
|
|
27
27
|
"plugin"
|
|
28
28
|
],
|
|
29
|
-
"author": "
|
|
29
|
+
"author": "BOBER3r",
|
|
30
30
|
"license": "MIT",
|
|
31
31
|
"repository": {
|
|
32
32
|
"type": "git",
|