@bobsworkshop/cli 0.7.2 → 1.0.0

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 CHANGED
@@ -1,3 +1,4 @@
1
+ // File: README.md
1
2
  <div align="center">
2
3
 
3
4
  # ◉ Bob's CLI
@@ -12,7 +13,7 @@
12
13
 
13
14
  ![Bob's CLI](https://raw.githubusercontent.com/Topseeder1/bob-cli/master/assets/BobWelcome.gif)
14
15
 
15
- [Installation](#installation) · [Quick Start](#quick-start) · [Features](#features) · [VaultBob](#vaultbob--your-codes-permanent-memory) · [UserBob](#userbob--your-digital-twin) · [Command Center](#autonomous-command-center) · [Docs](https://seedling-io.gitbook.io/bob-cli/)
16
+ [Installation](#installation) · [Quick Start](#quick-start) · [Features](#features) · [The Crew](#the-crew--your-autonomous-engineering-department) · [VaultBob](#vaultbob--your-codes-permanent-memory) · [UserBob](#userbob--your-digital-twin) · [Command Center](#autonomous-command-center) · [Docs](https://seedling-io.gitbook.io/bob-cli/)
16
17
 
17
18
  ---
18
19
 
@@ -20,7 +21,6 @@
20
21
 
21
22
  </div>
22
23
 
23
-
24
24
  ---
25
25
 
26
26
  ## Why Bob's CLI?
@@ -37,6 +37,8 @@ Every other AI coding assistant lives in a browser, disconnected from your actua
37
37
  | Personalization Mode | ✅ | ❌ | ❌ | ❌ |
38
38
  | Digital twin simulation | ✅ | ❌ | ❌ | ❌ |
39
39
  | Autonomous task dispatch | ✅ | ❌ | ❌ | ❌ |
40
+ | Multi-agent orchestration | ✅ | ❌ | ❌ | ❌ |
41
+ | Supervised commit review | ✅ | ❌ | ❌ | ❌ |
40
42
  | Conversation persistence | ✅ | ✅ | ❌ | Partial |
41
43
  | Deep Dives & Forks | ✅ | ❌ | ❌ | ❌ |
42
44
  | Remote execution (SovereignLink) | ✅ | Partial | ❌ | ❌ |
@@ -116,6 +118,7 @@ When you first install Bob's CLI, you're greeted with a branded welcome screen:
116
118
  | **Analyse** | Full QA code review with auto-fix |
117
119
  | **Autonomy** | Autonomous repair across entire codebase |
118
120
  | **Profile** | Behavioral DNA profiling + dashboard |
121
+ | **The Crew** | Multi-agent orchestration — spawn a team, set a mission, ship code |
119
122
  | **VaultBob** | Encrypted backup, versioning & restore — your code's permanent memory |
120
123
  | **UserBob** | AI digital twin simulation — your autonomous proxy |
121
124
  | **Command Center** | Inspect, approve, and manage autonomous task dispatch |
@@ -141,6 +144,111 @@ bob analyse --auto # Auto-fix with safety constraints
141
144
 
142
145
  ---
143
146
 
147
+ ## The Crew — Your Autonomous Engineering Department
148
+
149
+ **v1.0.0 introduces The Crew** — a fully local autonomous multi-agent orchestration system that runs entirely on your hardware. Spawn specialized agents, set a mission, and let DirectorBob coordinate the team. The Crew plans, implements, reviews, and commits real code changes to your project — with you in control the entire time.
150
+
151
+ ```bash
152
+ bob agent-run "Add authentication to the app"
153
+ ```
154
+
155
+ DirectorBob reads your actual codebase, decomposes the mission into specific tasks, and dispatches agents to execute in parallel or sequence based on dependencies. Every file an agent writes is reviewed by DirectorBob before the task is marked complete. Every commit is reviewed before it touches git. Every file is backed up before it is modified.
156
+
157
+ ```
158
+ ╔══════════════════════════════════════════════════════════╗
159
+ ║ 🎬 DirectorBob — Autonomous Mission Control
160
+ ╠══════════════════════════════════════════════════════════╣
161
+ ║ Add authentication to the app
162
+ ║ Mission: m_1782095907390 │ Tasks: 3 │ Team: 2 agents
163
+
164
+ ║ @builderBob @architectBob
165
+ ╠══════════════════════════════════════════════════════════╣
166
+ ║ 📋 Task Map — 3 tasks
167
+ ║ ⏸ @architectBob CREATE lib/auth/auth_service.dart
168
+ ║ ⏸ @builderBob PATCH lib/main.dart: ADD auth init ← 1 dep
169
+ ║ ⏸ @builderBob PATCH lib/screens/login.dart ← 1 dep
170
+ ╚══════════════════════════════════════════════════════════╝
171
+
172
+ [9:14:02 AM] 🎬 DirectorBob: Dispatching @architectBob → [CREATE]
173
+ [9:14:02 AM] 🎬 DirectorBob: Dispatching @builderBob → [PATCH]
174
+
175
+ @architectBob Created lib/auth/auth_service.dart (42 lines)
176
+ ✅ DirectorBob approved @architectBob's work
177
+ ✅ DirectorBob approved ✅ committed: 91a039d
178
+
179
+ @builderBob Patched lib/main.dart — auth init added
180
+ ✅ DirectorBob approved @builderBob's work
181
+ ```
182
+
183
+ ### How The Crew Works
184
+
185
+ **DirectorBob** is your Head of Engineering. Before dispatching a single task he reads your project's file tree, assesses what exists and what doesn't, and generates a dependency-aware task map. He decides who does what, in what order, and in what way — CREATE for new files, PATCH for surgical edits, REFACTOR for structural changes, REPLACE for placeholder files.
186
+
187
+ **Agents** execute their assigned tasks using the same file-writing pipeline that powers `bob chat` — proven, approval-gated, and backed up on every write. They self-evaluate their own work with a satisfaction score. If the score isn't high enough, they retry. If they stagnate, DirectorBob intervenes with specific feedback. If they still can't resolve it, the mission pauses and asks you.
188
+
189
+ **Every file write is reviewed by DirectorBob** before the task is marked complete. He reads the original file, the new file, the project context, and the task instruction. If an agent patched 5 lines when the task required 300, or gutted a working file instead of extending it — denied, restored from backup, retried with feedback.
190
+
191
+ **Every commit is reviewed before it touches git.** When an agent calls `gitCommit`, DirectorBob performs a full code review against the task instruction. APPROVE and the commit executes. DENY and the original is restored, a revision note is injected, and the agent retries. Three denials and the mission pauses for you.
192
+
193
+ ### Spawn Your Team
194
+
195
+ ```bash
196
+ bob agent spawn builder "Implement features and write code"
197
+ bob agent spawn architect "Design approach and review structure"
198
+ bob agent list # See your active team
199
+ bob agent status # Detailed status with session info
200
+ bob agent hub # Interactive command center
201
+ ```
202
+
203
+ ### Run a Mission
204
+
205
+ ```bash
206
+ bob agent-run "your mission" # Launch with active team
207
+ bob agent-run --dry-run "your mission" # Preview task map only
208
+ bob agent-run --resume # Resume a paused mission
209
+ bob agent-run --no-commit # Skip post-mission commit prompt
210
+ ```
211
+
212
+ ### Live Commands During Execution
213
+
214
+ ```
215
+ /pause — pause after active tasks complete
216
+ /resume — resume from pause
217
+ /status — full task map with current state
218
+ /skip <taskId> — skip a stuck task
219
+ /inject "note" — send a director note mid-mission
220
+ /set-target <agent> <n> — adjust satisfaction target
221
+ /abort — stop everything immediately
222
+ ```
223
+
224
+ ### Personas
225
+
226
+ Agents can be given specialized personas that shape how they think and communicate:
227
+
228
+ ```bash
229
+ bob agent spawn architect "Design the system" --persona local:architectBob
230
+ bob agent spawn security "Audit the codebase" --persona local:securityBob
231
+ bob agent personas # List all available personas
232
+ ```
233
+
234
+ | Persona | Specialty |
235
+ |---------|----------|
236
+ | `local:architectBob` | Contract-first, systems design |
237
+ | `local:builderBob` | Ships fast, pragmatic execution |
238
+ | `local:qaEngineerBob` | Testing, edge cases, reliability |
239
+ | `local:securityBob` | Threat modeling, zero trust |
240
+ | `local:frontendBob` | UI/UX, accessibility, components |
241
+ | `local:backendBob` | APIs, reliability, idempotency |
242
+ | `local:devopsBob` | CI/CD, infrastructure, pipelines |
243
+
244
+ ### What Makes The Crew Different
245
+
246
+ Every other agent system executes and hopes for the best. The Crew has DirectorBob — a supervisor who reviews every file change before it's accepted, every commit before it's recorded, and every stuck task before it spirals. Your codebase is protected at every step. Your backups are automatic. Your control is never surrendered.
247
+
248
+ Runs entirely on your local model. Zero cloud required. Zero cost.
249
+
250
+ ---
251
+
144
252
  ## VaultBob — Your Code's Permanent Memory
145
253
 
146
254
  **v0.7.0 introduces VaultBob** — the only backup, versioning, and restore system built specifically for how developers work. Every conversation you've had with Bob, every project Bob has learned, every version of every file — encrypted, safe, and accessible from anywhere in the world.
@@ -340,6 +448,20 @@ VaultBob — Backup & Restore
340
448
  bob backup list # View revision history
341
449
  bob backup restore # Interactive restore
342
450
 
451
+ The Crew — Multi-Agent Orchestration
452
+ bob agent spawn <name> "<task>" # Spawn a named agent
453
+ bob agent spawn <name> --persona # Spawn with a persona
454
+ bob agent list # List all agents
455
+ bob agent status # Detailed agent status
456
+ bob agent hub # Interactive command center
457
+ bob agent chat <name> # Chat with a specific agent
458
+ bob agent personas # List available personas
459
+ bob agent stop <name> # Stop an agent
460
+ bob agent reset <name> # Reset an agent
461
+ bob agent-run "mission" # Launch autonomous mission
462
+ bob agent-run --dry-run "mission" # Preview task map
463
+ bob agent-run --resume # Resume paused mission
464
+
343
465
  Digital Twin
344
466
  bob userbob "mission" # Launch digital twin simulation
345
467
  bob command-center # Autonomous task board
@@ -390,14 +512,25 @@ Tier 1 — Local (Free) Tier 3 — Platform (Subscription)
390
512
  ▸ Files on your machine ▸ Conversations sync to web
391
513
  ▸ Local profiling ▸ Cloud profiling + Frank Engine
392
514
  ▸ Local UserBob simulation ▸ UserBob + autonomous dispatch
393
- VaultBob backup & restore ▸ Deep dives, forks, remote exec
394
- Zero cost ▸ VaultBob + team license mgmt
515
+ The Crew (local agents) ▸ Deep dives, forks, remote exec
516
+ VaultBob backup & restore ▸ VaultBob + team license mgmt
517
+ ▸ Zero cost ▸ Scales to enterprise
395
518
  ```
396
519
 
397
520
  Same commands. Scale without changing tools.
398
521
 
399
522
  ---
400
523
 
524
+ ## What's New in v1.0.0
525
+
526
+ - **The Crew™** — A fully local autonomous multi-agent orchestration system. Spawn specialized agents, set a mission, and let DirectorBob coordinate the team. Dependency-aware parallel execution, operation type classification (CREATE / PATCH / REFACTOR / REPLACE), satisfaction scoring, stagnation escalation, and automatic backup on every file write.
527
+ - **DirectorBob** — Head of Engineering for every mission. Reads your codebase, generates a task map, reviews every file change before marking a task complete, and reviews every commit before it touches git. DENY triggers automatic restore from backup and revision feedback.
528
+ - **Agent personas** — Seven built-in specialist personas including architectBob, builderBob, qaEngineerBob, securityBob, frontendBob, backendBob, and devopsBob. Each shapes how the agent thinks, communicates, and approaches problems.
529
+ - **`bob agent-run`** — One command to launch a supervised autonomous mission against your real codebase.
530
+ - **`bob agent-run --dry-run`** — Preview DirectorBob's full task map before executing.
531
+ - **Post-mission commit prompt** — Condensed diff preview and one-click commit after every mission.
532
+ - **`bob agent hub`** — Interactive command center for your full agent team.
533
+
401
534
  ## What's New in v0.7.0
402
535
 
403
536
  - **VaultBob™** — Encrypted cloud backup, versioning, and restore built directly into Bob's CLI. Back up your project context, your source code, individual files, or your entire engineering brain. Built in partnership with AWS. Per-file surgical restore. Full machine migration with one command. The only backup system built specifically for how developers work.
@@ -439,10 +572,11 @@ The cloud is optional. The power is not.
439
572
 
440
573
  **The AI coding tool that learns how you think.**
441
574
  **The only backup system that protects your engineering brain.**
575
+ **The only terminal with an engineering department built in.**
442
576
 
443
577
  **Sovereign. Free. Yours.**
444
578
 
445
- Bob's CLI · VaultBob™ · SovereignLink™ · Bob's Workshop · Seedling
579
+ Bob's CLI · The Crew™ · VaultBob™ · SovereignLink™ · Bob's Workshop · Seedling
446
580
 
447
581
  *Written by Bob.*
448
582
 
@@ -0,0 +1,34 @@
1
+ import {
2
+ agentExists,
3
+ createAgent,
4
+ getActiveAgentCount,
5
+ getAgentsDir,
6
+ getRegistryEntry,
7
+ loadAgentMessages,
8
+ loadAgentSummary,
9
+ loadRegistry,
10
+ loadSession,
11
+ resetAgent,
12
+ resolveAgentName,
13
+ saveAgentMessage,
14
+ saveAgentSummary,
15
+ saveSession,
16
+ stopAgent
17
+ } from "./chunk-CAF7EJSC.js";
18
+ export {
19
+ agentExists,
20
+ createAgent,
21
+ getActiveAgentCount,
22
+ getAgentsDir,
23
+ getRegistryEntry,
24
+ loadAgentMessages,
25
+ loadAgentSummary,
26
+ loadRegistry,
27
+ loadSession,
28
+ resetAgent,
29
+ resolveAgentName,
30
+ saveAgentMessage,
31
+ saveAgentSummary,
32
+ saveSession,
33
+ stopAgent
34
+ };
@@ -0,0 +1,35 @@
1
+ import {
2
+ agentExists,
3
+ createAgent,
4
+ getActiveAgentCount,
5
+ getAgentsDir,
6
+ getRegistryEntry,
7
+ loadAgentMessages,
8
+ loadAgentSummary,
9
+ loadRegistry,
10
+ loadSession,
11
+ resetAgent,
12
+ resolveAgentName,
13
+ saveAgentMessage,
14
+ saveAgentSummary,
15
+ saveSession,
16
+ stopAgent
17
+ } from "./chunk-CAF7EJSC.js";
18
+ import "./chunk-3RG5ZIWI.js";
19
+ export {
20
+ agentExists,
21
+ createAgent,
22
+ getActiveAgentCount,
23
+ getAgentsDir,
24
+ getRegistryEntry,
25
+ loadAgentMessages,
26
+ loadAgentSummary,
27
+ loadRegistry,
28
+ loadSession,
29
+ resetAgent,
30
+ resolveAgentName,
31
+ saveAgentMessage,
32
+ saveAgentSummary,
33
+ saveSession,
34
+ stopAgent
35
+ };
@@ -0,0 +1,35 @@
1
+ import {
2
+ agentExists,
3
+ createAgent,
4
+ getActiveAgentCount,
5
+ getAgentsDir,
6
+ getRegistryEntry,
7
+ loadAgentMessages,
8
+ loadAgentSummary,
9
+ loadRegistry,
10
+ loadSession,
11
+ resetAgent,
12
+ resolveAgentName,
13
+ saveAgentMessage,
14
+ saveAgentSummary,
15
+ saveSession,
16
+ stopAgent
17
+ } from "./chunk-CAF7EJSC.js";
18
+ import "./chunk-PNKVD2UK.js";
19
+ export {
20
+ agentExists,
21
+ createAgent,
22
+ getActiveAgentCount,
23
+ getAgentsDir,
24
+ getRegistryEntry,
25
+ loadAgentMessages,
26
+ loadAgentSummary,
27
+ loadRegistry,
28
+ loadSession,
29
+ resetAgent,
30
+ resolveAgentName,
31
+ saveAgentMessage,
32
+ saveAgentSummary,
33
+ saveSession,
34
+ stopAgent
35
+ };