@bobsworkshop/cli 0.2.0 → 0.5.1
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 +103 -54
- package/dist/bin/analyse-auto-HYYDD4OQ.js +529 -0
- package/dist/bin/analyse-results-7TS24WG7.js +8 -0
- package/dist/bin/bob.js +5873 -0
- package/dist/bin/chunk-CI36GGK2.js +1000 -0
- package/dist/bob.js +701 -505
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -5,8 +5,14 @@
|
|
|
5
5
|
|
|
6
6
|
### Your AI Engineering Partner — In Your Terminal
|
|
7
7
|
|
|
8
|
+
[](https://www.npmjs.com/package/@bobsworkshop/cli)
|
|
9
|
+
[](https://nodejs.org)
|
|
10
|
+
[](https://opensource.org/licenses/MIT)
|
|
11
|
+
|
|
8
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.
|
|
9
13
|
|
|
14
|
+

|
|
15
|
+
|
|
10
16
|
[Installation](#installation) · [Quick Start](#quick-start) · [Features](#features) · [Docs](https://seedling-io.gitbook.io/bob-cli/)
|
|
11
17
|
|
|
12
18
|
---
|
|
@@ -23,38 +29,44 @@ Every other AI coding assistant lives in a browser, disconnected from your actua
|
|
|
23
29
|
|
|
24
30
|
| Feature | Bob's CLI | Claude Code | Copilot | Cursor |
|
|
25
31
|
|---------|-----------|-------------|---------|--------|
|
|
26
|
-
| Local file awareness | ✅ | ✅
|
|
27
|
-
| Zero-cost local model | ✅ | ✅
|
|
28
|
-
| Behavioral profiling | ✅ | ❌
|
|
29
|
-
| Personalization Mode | ✅ | ❌
|
|
30
|
-
| Conversation persistence | ✅ | ✅
|
|
31
|
-
| Deep Dives & Forks | ✅ | ❌
|
|
32
|
-
| Remote execution (SovereignLink) | ✅ | Partial
|
|
33
|
-
| Cross-surface sync (CLI ↔ Web) | ✅ | ✅
|
|
34
|
-
| Autonomous code repair | ✅ | ✅
|
|
35
|
-
| Source code stays on-device | ✅ | ✅
|
|
32
|
+
| Local file awareness | ✅ | ✅ | ✅ | ✅ |
|
|
33
|
+
| Zero-cost local model | ✅ | ✅ | ❌ | ❌ |
|
|
34
|
+
| Behavioral profiling | ✅ | ❌ | ❌ | ❌ |
|
|
35
|
+
| Personalization Mode | ✅ | ❌ | ❌ | ❌ |
|
|
36
|
+
| Conversation persistence | ✅ | ✅ | ❌ | Partial |
|
|
37
|
+
| Deep Dives & Forks | ✅ | ❌ | ❌ | ❌ |
|
|
38
|
+
| Remote execution (SovereignLink) | ✅ | Partial | ❌ | ❌ |
|
|
39
|
+
| Cross-surface sync (CLI ↔ Web) | ✅ | ✅ | ❌ | ❌ |
|
|
40
|
+
| Autonomous code repair | ✅ | ✅ | ❌ | ✅ |
|
|
41
|
+
| Source code stays on-device | ✅ | ✅ | ❌ | ✅ |
|
|
36
42
|
|
|
37
43
|
---
|
|
38
44
|
|
|
39
45
|
## Installation
|
|
40
46
|
|
|
41
|
-
|
|
47
|
+
```bash
|
|
48
|
+
pnpm add -g @bobsworkshop/cli
|
|
49
|
+
```
|
|
42
50
|
|
|
43
51
|
Or with npm:
|
|
44
52
|
|
|
45
|
-
|
|
53
|
+
```bash
|
|
54
|
+
npm install -g @bobsworkshop/cli
|
|
55
|
+
```
|
|
46
56
|
|
|
47
57
|
Verify:
|
|
48
58
|
|
|
49
|
-
|
|
59
|
+
```bash
|
|
60
|
+
bob whoami
|
|
61
|
+
```
|
|
50
62
|
|
|
51
63
|
**Requirements:**
|
|
52
64
|
- Node.js 18+
|
|
53
65
|
- Any terminal (VS Code, Android Studio, Windows Terminal, iTerm, PowerShell)
|
|
54
|
-
- For local AI: Ollama with a downloaded model
|
|
55
|
-
- For platform features: A Bob's Workshop account
|
|
66
|
+
- For local AI: [Ollama](https://ollama.com) with a downloaded model
|
|
67
|
+
- For platform features: A [Bob's Workshop](https://bobs-workshop.web.app) account
|
|
56
68
|
|
|
57
|
-
> Full setup guide: https://seedling-io.gitbook.io/bob-cli/
|
|
69
|
+
> 📖 Full setup guide: https://seedling-io.gitbook.io/bob-cli/
|
|
58
70
|
|
|
59
71
|
---
|
|
60
72
|
|
|
@@ -62,21 +74,31 @@ Verify:
|
|
|
62
74
|
|
|
63
75
|
### Local-First (Free)
|
|
64
76
|
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
77
|
+
```bash
|
|
78
|
+
bob chat "hello, what can you help me with?"
|
|
79
|
+
```
|
|
68
80
|
|
|
69
|
-
No internet. No API keys. No cost. Your code never leaves your machine.
|
|
81
|
+
Bob auto-detects Ollama running on your machine. No configuration needed. No internet. No API keys. No cost. Your code never leaves your machine.
|
|
70
82
|
|
|
71
83
|
### Platform (Subscribers)
|
|
72
84
|
|
|
73
|
-
|
|
74
|
-
|
|
85
|
+
```bash
|
|
86
|
+
bob login
|
|
87
|
+
bob chat "help me refactor this service"
|
|
88
|
+
```
|
|
75
89
|
|
|
76
90
|
Sync to web. Access Claude, Gemini, deep dives, forks, and personalization.
|
|
77
91
|
|
|
78
92
|
---
|
|
79
93
|
|
|
94
|
+
## First Run Experience
|
|
95
|
+
|
|
96
|
+
When you first install Bob's CLI, you're greeted with a branded welcome screen:
|
|
97
|
+
|
|
98
|
+

|
|
99
|
+
|
|
100
|
+
---
|
|
101
|
+
|
|
80
102
|
## Features
|
|
81
103
|
|
|
82
104
|
| Feature | Description |
|
|
@@ -95,47 +117,72 @@ Sync to web. Access Claude, Gemini, deep dives, forks, and personalization.
|
|
|
95
117
|
|
|
96
118
|
---
|
|
97
119
|
|
|
98
|
-
##
|
|
120
|
+
## Code Analysis
|
|
99
121
|
|
|
100
|
-
|
|
122
|
+
Bob performs production-grade QA reviews across your entire codebase — identifying bugs, features, improvements, and upgrades with actionable implementation instructions:
|
|
101
123
|
|
|
102
|
-
|
|
103
|
-
- Blind spots proactively addressed
|
|
104
|
-
- Emotional state calibrated encouragement
|
|
124
|
+

|
|
105
125
|
|
|
106
|
-
|
|
107
|
-
|
|
126
|
+
```bash
|
|
127
|
+
bob analyse # Run full code review
|
|
128
|
+
bob analyse --results # View dashboard
|
|
129
|
+
bob analyse --auto # Auto-fix with safety constraints
|
|
130
|
+
```
|
|
108
131
|
|
|
109
132
|
---
|
|
110
133
|
|
|
111
134
|
## Commands
|
|
112
135
|
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
136
|
+

|
|
137
|
+
|
|
138
|
+
```
|
|
139
|
+
bob chat "question" # AI coding partner
|
|
140
|
+
bob consult "question" # Strategic advice
|
|
141
|
+
bob index # Index codebase
|
|
142
|
+
bob analyse # Code review
|
|
143
|
+
bob analyse --auto # Auto-fix
|
|
144
|
+
bob autonomy # Full autonomous repair
|
|
145
|
+
bob profile --cloud # Generate DNA profile
|
|
146
|
+
bob profile # View dashboard
|
|
147
|
+
bob deepdive # Sandboxed exploration
|
|
148
|
+
bob fork "topic" # Branch conversation
|
|
149
|
+
bob serve # Start SovereignLink
|
|
150
|
+
bob remote chat "msg" # Remote execution
|
|
151
|
+
bob push "message" # Git push
|
|
152
|
+
bob login # Authenticate
|
|
153
|
+
bob byok set google <key> # Add BYOK key
|
|
154
|
+
bob whoami # Status
|
|
155
|
+
```
|
|
156
|
+
|
|
157
|
+
> 📖 Full command reference: https://seedling-io.gitbook.io/bob-cli/bobs-cli-product-wiki-and-user-guide/command-reference
|
|
158
|
+
|
|
159
|
+
---
|
|
160
|
+
|
|
161
|
+
## Personalization Mode
|
|
162
|
+
|
|
163
|
+
Powered by the **Frank Reasoning Engine**. Bob learns how you work and adapts:
|
|
164
|
+
|
|
165
|
+
- Tone, pacing, and depth matched to your style
|
|
166
|
+
- Blind spots proactively addressed
|
|
167
|
+
- Emotional state calibrated encouragement
|
|
168
|
+
|
|
169
|
+
```bash
|
|
170
|
+
bob profile --cloud
|
|
171
|
+
bob chat --personalized "what should I focus on?"
|
|
172
|
+
```
|
|
129
173
|
|
|
130
174
|
---
|
|
131
175
|
|
|
132
176
|
## Architecture
|
|
133
177
|
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
178
|
+
```
|
|
179
|
+
Tier 1 — Local (Free) Tier 3 — Platform (Subscription)
|
|
180
|
+
───────────────────────── ─────────────────────────────────
|
|
181
|
+
▸ Your model (Ollama) ▸ Claude / Gemini
|
|
182
|
+
▸ Files on your machine ▸ Conversations sync to web
|
|
183
|
+
▸ Local profiling ▸ Cloud profiling + Frank Engine
|
|
184
|
+
▸ Zero cost ▸ Deep dives, forks, remote exec
|
|
185
|
+
```
|
|
139
186
|
|
|
140
187
|
Same commands. Scale without changing tools.
|
|
141
188
|
|
|
@@ -143,9 +190,9 @@ Same commands. Scale without changing tools.
|
|
|
143
190
|
|
|
144
191
|
## Documentation
|
|
145
192
|
|
|
146
|
-
- Full Docs: https://seedling-io.gitbook.io/bob-cli/
|
|
147
|
-
- Web App: https://bobs-workshop.web.app
|
|
148
|
-
- npm: https://www.npmjs.com/package/@bobsworkshop/cli
|
|
193
|
+
- 📖 Full Docs: https://seedling-io.gitbook.io/bob-cli/
|
|
194
|
+
- 🌐 Web App: https://bobs-workshop.web.app
|
|
195
|
+
- 📦 npm: https://www.npmjs.com/package/@bobsworkshop/cli
|
|
149
196
|
|
|
150
197
|
---
|
|
151
198
|
|
|
@@ -157,4 +204,6 @@ Bob's CLI · Bob's Workshop · Seedling
|
|
|
157
204
|
|
|
158
205
|
*Written by Bob.*
|
|
159
206
|
|
|
160
|
-
</div>
|
|
207
|
+
</div>
|
|
208
|
+
|
|
209
|
+
|