@bobsworkshop/cli 0.5.3 → 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
@@ -1,4 +1,3 @@
1
- // File: README.md
2
1
  <div align="center">
3
2
 
4
3
  # ◉ Bob's CLI
@@ -8,12 +7,13 @@
8
7
  [![npm version](https://img.shields.io/npm/v/@bobsworkshop/cli)](https://www.npmjs.com/package/@bobsworkshop/cli)
9
8
  [![Node](https://img.shields.io/badge/node-%3E%3D18-brightgreen)](https://nodejs.org)
10
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)
11
11
 
12
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.
13
13
 
14
14
  ![Bob's CLI](https://raw.githubusercontent.com/Topseeder1/bob-cli/master/assets/BobWelcome.gif)
15
15
 
16
- [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/)
17
17
 
18
18
  ---
19
19
 
@@ -35,6 +35,8 @@ Every other AI coding assistant lives in a browser, disconnected from your actua
35
35
  | Zero-cost local model | ✅ | ✅ | ❌ | ❌ |
36
36
  | Behavioral profiling | ✅ | ❌ | ❌ | ❌ |
37
37
  | Personalization Mode | ✅ | ❌ | ❌ | ❌ |
38
+ | Digital twin simulation | ✅ | ❌ | ❌ | ❌ |
39
+ | Autonomous task dispatch | ✅ | ❌ | ❌ | ❌ |
38
40
  | Conversation persistence | ✅ | ✅ | ❌ | Partial |
39
41
  | Deep Dives & Forks | ✅ | ❌ | ❌ | ❌ |
40
42
  | Remote execution (SovereignLink) | ✅ | Partial | ❌ | ❌ |
@@ -89,7 +91,7 @@ bob login
89
91
  bob chat "help me refactor this service"
90
92
  ```
91
93
 
92
- Sync to web. Access Claude, Gemini, deep dives, forks, and personalization.
94
+ Sync to web. Access Claude, Gemini, deep dives, forks, personalization, and UserBob.
93
95
 
94
96
  ---
95
97
 
@@ -111,6 +113,8 @@ When you first install Bob's CLI, you're greeted with a branded welcome screen:
111
113
  | **Analyse** | Full QA code review with auto-fix |
112
114
  | **Autonomy** | Autonomous repair across entire codebase |
113
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 |
114
118
  | **Deep Dive** | Sandboxed exploration on any message |
115
119
  | **Fork** | Branch conversations into sub-projects |
116
120
  | **SovereignLink** | Remote execution from any device |
@@ -133,27 +137,137 @@ bob analyse --auto # Auto-fix with safety constraints
133
137
 
134
138
  ---
135
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
+
136
235
  ## Commands
137
236
 
138
237
  ![Help Output](https://raw.githubusercontent.com/Topseeder1/bob-cli/master/assets/BobCliHelpOutput.gif)
139
238
 
140
239
  ```
141
- bob chat "question" # AI coding partner
142
- bob consult "question" # Strategic advice
143
- bob index # Index codebase
144
- bob analyse # Code review
145
- bob analyse --auto # Auto-fix
146
- bob autonomy # Full autonomous repair
147
- bob profile --cloud # Generate DNA profile
148
- bob profile # View dashboard
149
- bob deepdive # Sandboxed exploration
150
- bob fork "topic" # Branch conversation
151
- bob serve # Start SovereignLink
152
- bob remote chat "msg" # Remote execution
153
- bob push "message" # Git push
154
- bob login # Authenticate
155
- bob byok set google <key> # Add BYOK key
156
- 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
157
271
  ```
158
272
 
159
273
  > 📖 Full command reference: https://seedling-io.gitbook.io/bob-cli/bobs-cli-product-wiki-and-user-guide/command-reference
@@ -167,6 +281,7 @@ Powered by the **Frank Reasoning Engine**. Bob learns how you work and adapts:
167
281
  - Tone, pacing, and depth matched to your style
168
282
  - Blind spots proactively addressed
169
283
  - Emotional state calibrated encouragement
284
+ - UserBob uses your DNA to act as your authentic digital twin
170
285
 
171
286
  ```bash
172
287
  bob profile --cloud
@@ -183,6 +298,7 @@ Tier 1 — Local (Free) Tier 3 — Platform (Subscription)
183
298
  ▸ Your model (Ollama) ▸ Claude / Gemini
184
299
  ▸ Files on your machine ▸ Conversations sync to web
185
300
  ▸ Local profiling ▸ Cloud profiling + Frank Engine
301
+ ▸ Local UserBob simulation ▸ UserBob + autonomous dispatch
186
302
  ▸ Zero cost ▸ Deep dives, forks, remote exec
187
303
  ```
188
304
 
@@ -190,6 +306,16 @@ Same commands. Scale without changing tools.
190
306
 
191
307
  ---
192
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
+
193
319
  ## The Philosophy
194
320
 
195
321
  Bob's CLI exists because we believe the future of software development should be **owned by the developer, not rented from a corporation.**
@@ -224,5 +350,3 @@ Bob's CLI · Bob's Workshop · Seedling
224
350
  *Written by Bob.*
225
351
 
226
352
  </div>
227
-
228
-