@bobsworkshop/cli 0.2.0 → 0.5.2
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 +120 -52
- 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
|
---
|
|
@@ -21,40 +27,48 @@
|
|
|
21
27
|
|
|
22
28
|
Every other AI coding assistant lives in a browser, disconnected from your actual workflow. Bob lives where your code lives — in your terminal. He sees your files, understands your architecture, writes code with your approval, and learns how YOU work over time.
|
|
23
29
|
|
|
30
|
+
**We believe AI should empower developers, not exploit them.** Your code stays on your machine. Your data belongs to you. No surveillance, no vendor lock-in, no token meters draining your wallet while you think. Bob's CLI is built for the developer who refuses to hand over sovereignty in exchange for convenience. This is AI that works FOR you — on YOUR hardware, under YOUR control, at YOUR pace. Power to the people who build.
|
|
31
|
+
|
|
24
32
|
| Feature | Bob's CLI | Claude Code | Copilot | Cursor |
|
|
25
33
|
|---------|-----------|-------------|---------|--------|
|
|
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 | ✅ | ✅
|
|
34
|
+
| Local file awareness | ✅ | ✅ | ✅ | ✅ |
|
|
35
|
+
| Zero-cost local model | ✅ | ✅ | ❌ | ❌ |
|
|
36
|
+
| Behavioral profiling | ✅ | ❌ | ❌ | ❌ |
|
|
37
|
+
| Personalization Mode | ✅ | ❌ | ❌ | ❌ |
|
|
38
|
+
| Conversation persistence | ✅ | ✅ | ❌ | Partial |
|
|
39
|
+
| Deep Dives & Forks | ✅ | ❌ | ❌ | ❌ |
|
|
40
|
+
| Remote execution (SovereignLink) | ✅ | Partial | ❌ | ❌ |
|
|
41
|
+
| Cross-surface sync (CLI ↔ Web) | ✅ | ✅ | ❌ | ❌ |
|
|
42
|
+
| Autonomous code repair | ✅ | ✅ | ❌ | ✅ |
|
|
43
|
+
| Source code stays on-device | ✅ | ✅ | ❌ | ✅ |
|
|
36
44
|
|
|
37
45
|
---
|
|
38
46
|
|
|
39
47
|
## Installation
|
|
40
48
|
|
|
41
|
-
|
|
49
|
+
```bash
|
|
50
|
+
pnpm add -g @bobsworkshop/cli
|
|
51
|
+
```
|
|
42
52
|
|
|
43
53
|
Or with npm:
|
|
44
54
|
|
|
45
|
-
|
|
55
|
+
```bash
|
|
56
|
+
npm install -g @bobsworkshop/cli
|
|
57
|
+
```
|
|
46
58
|
|
|
47
59
|
Verify:
|
|
48
60
|
|
|
49
|
-
|
|
61
|
+
```bash
|
|
62
|
+
bob whoami
|
|
63
|
+
```
|
|
50
64
|
|
|
51
65
|
**Requirements:**
|
|
52
66
|
- Node.js 18+
|
|
53
67
|
- 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
|
|
68
|
+
- For local AI: [Ollama](https://ollama.com) with a downloaded model
|
|
69
|
+
- For platform features: A [Bob's Workshop](https://bobs-workshop.web.app) account
|
|
56
70
|
|
|
57
|
-
> Full setup guide: https://seedling-io.gitbook.io/bob-cli/
|
|
71
|
+
> 📖 Full setup guide: https://seedling-io.gitbook.io/bob-cli/
|
|
58
72
|
|
|
59
73
|
---
|
|
60
74
|
|
|
@@ -62,21 +76,31 @@ Verify:
|
|
|
62
76
|
|
|
63
77
|
### Local-First (Free)
|
|
64
78
|
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
79
|
+
```bash
|
|
80
|
+
bob chat "hello, what can you help me with?"
|
|
81
|
+
```
|
|
68
82
|
|
|
69
|
-
No internet. No API keys. No cost. Your code never leaves your machine.
|
|
83
|
+
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
84
|
|
|
71
85
|
### Platform (Subscribers)
|
|
72
86
|
|
|
73
|
-
|
|
74
|
-
|
|
87
|
+
```bash
|
|
88
|
+
bob login
|
|
89
|
+
bob chat "help me refactor this service"
|
|
90
|
+
```
|
|
75
91
|
|
|
76
92
|
Sync to web. Access Claude, Gemini, deep dives, forks, and personalization.
|
|
77
93
|
|
|
78
94
|
---
|
|
79
95
|
|
|
96
|
+
## First Run Experience
|
|
97
|
+
|
|
98
|
+
When you first install Bob's CLI, you're greeted with a branded welcome screen:
|
|
99
|
+
|
|
100
|
+

|
|
101
|
+
|
|
102
|
+
---
|
|
103
|
+
|
|
80
104
|
## Features
|
|
81
105
|
|
|
82
106
|
| Feature | Description |
|
|
@@ -95,6 +119,47 @@ Sync to web. Access Claude, Gemini, deep dives, forks, and personalization.
|
|
|
95
119
|
|
|
96
120
|
---
|
|
97
121
|
|
|
122
|
+
## Code Analysis
|
|
123
|
+
|
|
124
|
+
Bob performs production-grade QA reviews across your entire codebase — identifying bugs, features, improvements, and upgrades with actionable implementation instructions:
|
|
125
|
+
|
|
126
|
+

|
|
127
|
+
|
|
128
|
+
```bash
|
|
129
|
+
bob analyse # Run full code review
|
|
130
|
+
bob analyse --results # View dashboard
|
|
131
|
+
bob analyse --auto # Auto-fix with safety constraints
|
|
132
|
+
```
|
|
133
|
+
|
|
134
|
+
---
|
|
135
|
+
|
|
136
|
+
## Commands
|
|
137
|
+
|
|
138
|
+

|
|
139
|
+
|
|
140
|
+
```
|
|
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
|
|
157
|
+
```
|
|
158
|
+
|
|
159
|
+
> 📖 Full command reference: https://seedling-io.gitbook.io/bob-cli/bobs-cli-product-wiki-and-user-guide/command-reference
|
|
160
|
+
|
|
161
|
+
---
|
|
162
|
+
|
|
98
163
|
## Personalization Mode
|
|
99
164
|
|
|
100
165
|
Powered by the **Frank Reasoning Engine**. Bob learns how you work and adapts:
|
|
@@ -103,49 +168,48 @@ Powered by the **Frank Reasoning Engine**. Bob learns how you work and adapts:
|
|
|
103
168
|
- Blind spots proactively addressed
|
|
104
169
|
- Emotional state calibrated encouragement
|
|
105
170
|
|
|
106
|
-
|
|
107
|
-
|
|
171
|
+
```bash
|
|
172
|
+
bob profile --cloud
|
|
173
|
+
bob chat --personalized "what should I focus on?"
|
|
174
|
+
```
|
|
108
175
|
|
|
109
176
|
---
|
|
110
177
|
|
|
111
|
-
##
|
|
178
|
+
## Architecture
|
|
179
|
+
|
|
180
|
+
```
|
|
181
|
+
Tier 1 — Local (Free) Tier 3 — Platform (Subscription)
|
|
182
|
+
───────────────────────── ─────────────────────────────────
|
|
183
|
+
▸ Your model (Ollama) ▸ Claude / Gemini
|
|
184
|
+
▸ Files on your machine ▸ Conversations sync to web
|
|
185
|
+
▸ Local profiling ▸ Cloud profiling + Frank Engine
|
|
186
|
+
▸ Zero cost ▸ Deep dives, forks, remote exec
|
|
187
|
+
```
|
|
112
188
|
|
|
113
|
-
|
|
114
|
-
bob consult "question" # Strategic advice
|
|
115
|
-
bob index # Index codebase
|
|
116
|
-
bob analyse # Code review
|
|
117
|
-
bob analyse --auto # Auto-fix
|
|
118
|
-
bob autonomy # Full autonomous repair
|
|
119
|
-
bob profile --cloud # Generate DNA profile
|
|
120
|
-
bob profile # View dashboard
|
|
121
|
-
bob deepdive # Sandboxed exploration
|
|
122
|
-
bob fork "topic" # Branch conversation
|
|
123
|
-
bob serve # Start SovereignLink
|
|
124
|
-
bob remote chat "msg" # Remote execution
|
|
125
|
-
bob push "message" # Git push
|
|
126
|
-
bob login # Authenticate
|
|
127
|
-
bob byok set google <key> # Add BYOK key
|
|
128
|
-
bob whoami # Status
|
|
189
|
+
Same commands. Scale without changing tools.
|
|
129
190
|
|
|
130
191
|
---
|
|
131
192
|
|
|
132
|
-
##
|
|
193
|
+
## The Philosophy
|
|
133
194
|
|
|
134
|
-
|
|
135
|
-
- Your model (Ollama) - Claude / Gemini
|
|
136
|
-
- Files on your machine - Conversations sync to web
|
|
137
|
-
- Local profiling - Cloud profiling + Frank Engine
|
|
138
|
-
- Zero cost - Deep dives, forks, remote exec
|
|
195
|
+
Bob's CLI exists because we believe the future of software development should be **owned by the developer, not rented from a corporation.**
|
|
139
196
|
|
|
140
|
-
|
|
197
|
+
- Your AI runs on **your hardware** — not someone else's data center
|
|
198
|
+
- Your source code **never leaves your machine** — unless you choose to connect
|
|
199
|
+
- Your conversations, your profile, your workflow — **yours to keep, yours to control**
|
|
200
|
+
- Zero cost to start. Zero permission needed. Zero compromises on privacy.
|
|
201
|
+
|
|
202
|
+
The cloud is optional. The power is not.
|
|
203
|
+
|
|
204
|
+
**This is AI for the people who build the future — not the companies who gatekeep it.**
|
|
141
205
|
|
|
142
206
|
---
|
|
143
207
|
|
|
144
208
|
## Documentation
|
|
145
209
|
|
|
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
|
|
210
|
+
- 📖 Full Docs: https://seedling-io.gitbook.io/bob-cli/
|
|
211
|
+
- 🌐 Web App: https://bobs-workshop.web.app
|
|
212
|
+
- 📦 npm: https://www.npmjs.com/package/@bobsworkshop/cli
|
|
149
213
|
|
|
150
214
|
---
|
|
151
215
|
|
|
@@ -153,8 +217,12 @@ Same commands. Scale without changing tools.
|
|
|
153
217
|
|
|
154
218
|
**The AI coding tool that learns how you think.**
|
|
155
219
|
|
|
220
|
+
**Sovereign. Free. Yours.**
|
|
221
|
+
|
|
156
222
|
Bob's CLI · Bob's Workshop · Seedling
|
|
157
223
|
|
|
158
224
|
*Written by Bob.*
|
|
159
225
|
|
|
160
|
-
</div>
|
|
226
|
+
</div>
|
|
227
|
+
|
|
228
|
+
|