agent-bober 0.4.2 → 0.4.3
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/README.md +30 -4
- package/package.json +1 -1
- package/skills/bober.run/SKILL.md +15 -8
package/README.md
CHANGED
|
@@ -101,14 +101,40 @@ Specialized workflows:
|
|
|
101
101
|
### CLI
|
|
102
102
|
|
|
103
103
|
```bash
|
|
104
|
-
npx agent-bober init [preset] # Initialize project
|
|
105
|
-
npx agent-bober plan
|
|
104
|
+
npx agent-bober init [preset] # Initialize project
|
|
105
|
+
npx agent-bober plan "feature" # Run the planner
|
|
106
106
|
npx agent-bober sprint # Execute next sprint
|
|
107
107
|
npx agent-bober eval # Evaluate current sprint
|
|
108
|
-
npx agent-bober run
|
|
109
|
-
npx agent-bober status # Show plan progress
|
|
108
|
+
npx agent-bober run "feature" # Full autonomous loop
|
|
110
109
|
```
|
|
111
110
|
|
|
111
|
+
### Fully Autonomous Mode (no human in the loop)
|
|
112
|
+
|
|
113
|
+
**Option A: Claude Code (recommended)**
|
|
114
|
+
|
|
115
|
+
Launch Claude Code with auto-accept permissions, then run the pipeline:
|
|
116
|
+
|
|
117
|
+
```bash
|
|
118
|
+
cd your-project
|
|
119
|
+
agent-bober init nextjs
|
|
120
|
+
claude --dangerously-skip-permissions
|
|
121
|
+
# Inside Claude Code:
|
|
122
|
+
/bober-run Build a complete dashboard with auth, CRUD, and charts
|
|
123
|
+
```
|
|
124
|
+
|
|
125
|
+
Claude will plan, build, evaluate, rework, and iterate without asking you anything. Come back to a finished project.
|
|
126
|
+
|
|
127
|
+
**Option B: CLI with API key**
|
|
128
|
+
|
|
129
|
+
```bash
|
|
130
|
+
export ANTHROPIC_API_KEY=sk-ant-...
|
|
131
|
+
cd your-project
|
|
132
|
+
agent-bober init nextjs
|
|
133
|
+
agent-bober run "Build a complete dashboard with auth, CRUD, and charts"
|
|
134
|
+
```
|
|
135
|
+
|
|
136
|
+
The CLI uses the Anthropic SDK directly — no approval prompts at all.
|
|
137
|
+
|
|
112
138
|
---
|
|
113
139
|
|
|
114
140
|
## Configuration
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "agent-bober",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.3",
|
|
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",
|
|
@@ -8,6 +8,18 @@ argument-hint: <task-description>
|
|
|
8
8
|
|
|
9
9
|
You are running the **bober.run** skill. This is the top-level orchestrator that runs the entire Generator-Evaluator pipeline from start to finish: planning, sprint execution, evaluation, and iteration. The user provides a task description and you deliver a working implementation.
|
|
10
10
|
|
|
11
|
+
## Autonomous Mode
|
|
12
|
+
|
|
13
|
+
This command is designed to run **fully autonomously** — do NOT stop to ask the user for confirmation between phases unless something is genuinely ambiguous or blocked. Specifically:
|
|
14
|
+
|
|
15
|
+
- **Do NOT ask** "should I continue to the next sprint?" — just continue.
|
|
16
|
+
- **Do NOT ask** "should I start building?" after planning — just start.
|
|
17
|
+
- **Do NOT ask** "should I rework?" after a failed evaluation — just rework (up to maxIterations).
|
|
18
|
+
- **Do NOT ask** for approval on file writes, commits, or evaluation runs — just do them.
|
|
19
|
+
- **DO stop** only if: you hit maxIterations on a sprint and cannot progress, or the task description is genuinely unclear and you cannot infer intent.
|
|
20
|
+
|
|
21
|
+
The user launched this command to walk away and come back to a finished product. Respect that intent.
|
|
22
|
+
|
|
11
23
|
## Overview
|
|
12
24
|
|
|
13
25
|
The pipeline follows this flow:
|
|
@@ -53,14 +65,9 @@ If `bober.config.json` exists, read the configuration.
|
|
|
53
65
|
|
|
54
66
|
Read `.bober/specs/` and `.bober/progress.md`. If there is an existing plan with incomplete sprints:
|
|
55
67
|
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
A) Continue with the existing plan (resume from sprint <next>)
|
|
61
|
-
B) Create a new plan for your task (the existing plan stays but won't be executed)
|
|
62
|
-
C) Archive the existing plan and start fresh
|
|
63
|
-
```
|
|
68
|
+
- If the user provided a new task description that clearly differs from the existing plan → create a new plan (option B)
|
|
69
|
+
- If the user provided no task or a task that matches the existing plan → resume from the next incomplete sprint (option A)
|
|
70
|
+
- Log your decision but do NOT ask the user — autonomous mode means you decide and move forward
|
|
64
71
|
|
|
65
72
|
### 1c. Run the Planning Phase
|
|
66
73
|
|