@bobsworkshop/cli 0.5.4 → 0.6.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
@@ -7,12 +7,13 @@
7
7
  [![npm version](https://img.shields.io/npm/v/@bobsworkshop/cli)](https://www.npmjs.com/package/@bobsworkshop/cli)
8
8
  [![Node](https://img.shields.io/badge/node-%3E%3D18-brightgreen)](https://nodejs.org)
9
9
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
10
+ [![version](https://img.shields.io/badge/version-0.6.0-orange)](https://www.npmjs.com/package/@bobsworkshop/cli)
10
11
 
11
12
  **Bob's CLI** is a locally-installed developer tool that provides a senior-level AI engineering partner directly inside your native terminal. Stay in your development environment. Never switch to a browser. Ship faster.
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) · [Docs](https://seedling-io.gitbook.io/bob-cli/)
16
+ [Installation](#installation) · [Quick Start](#quick-start) · [Features](#features) · [UserBob](#userbob--your-digital-twin) · [Command Center](#autonomous-command-center) · [Docs](https://seedling-io.gitbook.io/bob-cli/)
16
17
 
17
18
  ---
18
19
 
@@ -34,6 +35,8 @@ Every other AI coding assistant lives in a browser, disconnected from your actua
34
35
  | Zero-cost local model | ✅ | ✅ | ❌ | ❌ |
35
36
  | Behavioral profiling | ✅ | ❌ | ❌ | ❌ |
36
37
  | Personalization Mode | ✅ | ❌ | ❌ | ❌ |
38
+ | Digital twin simulation | ✅ | ❌ | ❌ | ❌ |
39
+ | Autonomous task dispatch | ✅ | ❌ | ❌ | ❌ |
37
40
  | Conversation persistence | ✅ | ✅ | ❌ | Partial |
38
41
  | Deep Dives & Forks | ✅ | ❌ | ❌ | ❌ |
39
42
  | Remote execution (SovereignLink) | ✅ | Partial | ❌ | ❌ |
@@ -88,7 +91,7 @@ bob login
88
91
  bob chat "help me refactor this service"
89
92
  ```
90
93
 
91
- Sync to web. Access Claude, Gemini, deep dives, forks, and personalization.
94
+ Sync to web. Access Claude, Gemini, deep dives, forks, personalization, and UserBob.
92
95
 
93
96
  ---
94
97
 
@@ -110,6 +113,8 @@ When you first install Bob's CLI, you're greeted with a branded welcome screen:
110
113
  | **Analyse** | Full QA code review with auto-fix |
111
114
  | **Autonomy** | Autonomous repair across entire codebase |
112
115
  | **Profile** | Behavioral DNA profiling + dashboard |
116
+ | **UserBob** | AI digital twin simulation — your autonomous proxy |
117
+ | **Command Center** | Inspect, approve, and manage autonomous task dispatch |
113
118
  | **Deep Dive** | Sandboxed exploration on any message |
114
119
  | **Fork** | Branch conversations into sub-projects |
115
120
  | **SovereignLink** | Remote execution from any device |
@@ -132,27 +137,137 @@ bob analyse --auto # Auto-fix with safety constraints
132
137
 
133
138
  ---
134
139
 
140
+ ## UserBob — Your Digital Twin
141
+
142
+ **v0.6.0 introduces UserBob** — the most advanced feature in Bob's CLI. UserBob creates an autonomous AI proxy of you, built from your behavioral DNA, engineering philosophy, and communication style. Your digital twin negotiates with Bob on your behalf to advance a mission you define. You watch. You tune. You approve the results.
143
+
144
+ ```bash
145
+ bob userbob "Refactor the auth service error handling"
146
+ ```
147
+
148
+ The simulation runs autonomously — no human input required. Bob and your digital twin negotiate until satisfaction reaches your target, then implementation tasks are dispatched to Mini Bob for execution.
149
+
150
+ ```
151
+ ┌─ UserBob ──────────────────────────────────────────────────┐
152
+ │ The error handling in AuthService is incomplete. Bob, │
153
+ │ show me the current implementation before we proceed. │
154
+ └────────────────────────────────────────────────────────────┘
155
+ [SAT: 42%] [RES: 78%] [CONVERGING]
156
+
157
+ ┌──────────────────────────── Bob ─┐
158
+ │ Here's the current auth service │
159
+ │ — I can see three areas where │
160
+ │ error handling is missing... │
161
+ └──────────────────────────────────┘
162
+
163
+ ─── MISSION CONTROL ──────────────────────────────────────────
164
+ SAT: 42% → 85% │ STAG: 0/3 │ DIV: 0/2 │ GRADE: 60
165
+ ────────────────────────────────────────────────────────────────
166
+ ```
167
+
168
+ **Options:**
169
+
170
+ ```bash
171
+ bob userbob "mission" # Inline mission
172
+ bob userbob # Interactive mission prompt
173
+ bob userbob --target 70 --grading 60 # Custom parameters
174
+ bob userbob --stag 3 --div 2 # Set safety thresholds
175
+ bob userbob --resume # Resume stalled session
176
+ bob userbob --local "mission" # Tier 1 Ollama mode
177
+ ```
178
+
179
+ **Mid-session slash commands:**
180
+
181
+ ```
182
+ /set target 80 Update satisfaction target
183
+ /set grading 70 Update Teacher's Curve
184
+ /set stag 5 Set stalemate threshold
185
+ /set div 3 Set divergence threshold
186
+ /inject "note" Steer the simulation mid-session
187
+ /status Show current parameters
188
+ /abort Stop immediately
189
+ ```
190
+
191
+ **Generate your behavioral DNA first for best results:**
192
+
193
+ ```bash
194
+ bob profile --today # Local (requires Ollama)
195
+ bob profile --cloud # Cloud (Power tier)
196
+ ```
197
+
198
+ ---
199
+
200
+ ## Autonomous Command Center
201
+
202
+ Every task UserBob dispatches to Mini Bob is visible, manageable, and auditable from the CLI:
203
+
204
+ ```bash
205
+ bob command-center # Interactive task board
206
+ bob cc # Alias
207
+ bob command-center --stream # Live decision stream
208
+ bob command-center --settings # Configure autonomy thresholds
209
+ ```
210
+
211
+ **What you see:**
212
+
213
+ ```
214
+ ─── COMMAND CENTER ──────────────────────────────────────────
215
+ 2 PENDING │ 8 RUNNING │ 31 DONE │ 41 TOTAL
216
+ ────────────────────────────────────────────────────────────────
217
+
218
+ ● NEEDS APPROVAL [frontend ] Create the TabletHomePage layout...
219
+ ● IN PROGRESS [backend ] Update auth service error handling...
220
+ ● COMPLETE [cloud_functions] Deploy rate limiter utility...
221
+ ```
222
+
223
+ Select any task to see the full chain of custody: Trigger → Request → Outcome. Approve or deny pending tasks directly from the terminal with live execution log streaming.
224
+
225
+ **Configure how much autonomy UserBob has:**
226
+
227
+ ```bash
228
+ bob command-center --settings
229
+ # Set global confidence threshold (tasks below this % require approval)
230
+ # Set per-category overrides (always auto / always ask / use threshold)
231
+ ```
232
+
233
+ ---
234
+
135
235
  ## Commands
136
236
 
137
237
  ![Help Output](https://raw.githubusercontent.com/Topseeder1/bob-cli/master/assets/BobCliHelpOutput.gif)
138
238
 
139
239
  ```
140
- bob chat "question" # AI coding partner
141
- bob consult "question" # Strategic advice
142
- bob index # Index codebase
143
- bob analyse # Code review
144
- bob analyse --auto # Auto-fix
145
- bob autonomy # Full autonomous repair
146
- bob profile --cloud # Generate DNA profile
147
- bob profile # View dashboard
148
- bob deepdive # Sandboxed exploration
149
- bob fork "topic" # Branch conversation
150
- bob serve # Start SovereignLink
151
- bob remote chat "msg" # Remote execution
152
- bob push "message" # Git push
153
- bob login # Authenticate
154
- bob byok set google <key> # Add BYOK key
155
- bob whoami # Status
240
+ Conversation
241
+ bob chat "question" # AI coding partner
242
+ bob consult "question" # Strategic advice
243
+ bob conversations # List conversations
244
+ bob fork "topic" # Branch conversation
245
+ bob deepdive # Sandboxed exploration
246
+
247
+ Project Tools
248
+ bob index # Index codebase
249
+ bob analyse # Code review
250
+ bob analyse --auto # Auto-fix
251
+ bob autonomy # Full autonomous repair
252
+ bob push "message" # Git push
253
+
254
+ Digital Twin
255
+ bob userbob "mission" # Launch digital twin simulation
256
+ bob command-center # Autonomous task board
257
+ bob cc --stream # Live decision stream
258
+
259
+ Profile & Identity
260
+ bob profile --cloud # Generate DNA profile
261
+ bob profile # View dashboard
262
+ bob byok set google <key> # Add BYOK key
263
+
264
+ Remote (SovereignLink)
265
+ bob serve # Start SovereignLink
266
+ bob remote chat "msg" # Remote execution
267
+
268
+ Configuration
269
+ bob login # Authenticate
270
+ bob whoami # Status
156
271
  ```
157
272
 
158
273
  > 📖 Full command reference: https://seedling-io.gitbook.io/bob-cli/bobs-cli-product-wiki-and-user-guide/command-reference
@@ -166,6 +281,7 @@ Powered by the **Frank Reasoning Engine**. Bob learns how you work and adapts:
166
281
  - Tone, pacing, and depth matched to your style
167
282
  - Blind spots proactively addressed
168
283
  - Emotional state calibrated encouragement
284
+ - UserBob uses your DNA to act as your authentic digital twin
169
285
 
170
286
  ```bash
171
287
  bob profile --cloud
@@ -182,6 +298,7 @@ Tier 1 — Local (Free) Tier 3 — Platform (Subscription)
182
298
  ▸ Your model (Ollama) ▸ Claude / Gemini
183
299
  ▸ Files on your machine ▸ Conversations sync to web
184
300
  ▸ Local profiling ▸ Cloud profiling + Frank Engine
301
+ ▸ Local UserBob simulation ▸ UserBob + autonomous dispatch
185
302
  ▸ Zero cost ▸ Deep dives, forks, remote exec
186
303
  ```
187
304
 
@@ -189,6 +306,16 @@ Same commands. Scale without changing tools.
189
306
 
190
307
  ---
191
308
 
309
+ ## What's New in v0.6.0
310
+
311
+ - **`bob userbob`** — AI digital twin simulation. Declare a mission, watch your autonomous proxy negotiate with Bob to advance it. Supports Tier 1 (Ollama) and Tier 3 (platform) with live message streaming, HUD footer, and mid-session slash commands.
312
+ - **`bob command-center`** — Autonomous Command Center. Full visibility into every task UserBob dispatches. Approve, deny, and monitor execution with live streaming logs directly in your terminal.
313
+ - **BYOK fallback token gate** — Platform-wide security patch across 14 Cloud Functions. Prevents runaway billing when BYOK keys fail and fall to platform providers. Your wallet is protected.
314
+ - **`getCLIConversationMessages`** — Dedicated single-conversation poller. No more cross-conversation scanning for live simulation updates.
315
+ - **4 new Cloud Functions** — `getCLIAutonomousTasks`, `getCLITaskExecutionLog`, `updateCLIAutonomySettings`, `getCLIConversationMessages`.
316
+
317
+ ---
318
+
192
319
  ## The Philosophy
193
320
 
194
321
  Bob's CLI exists because we believe the future of software development should be **owned by the developer, not rented from a corporation.**
@@ -223,5 +350,3 @@ Bob's CLI · Bob's Workshop · Seedling
223
350
  *Written by Bob.*
224
351
 
225
352
  </div>
226
-
227
-