@bobsworkshop/cli 0.1.3 → 0.1.5

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 ADDED
@@ -0,0 +1,160 @@
1
+ // File: README.md
2
+ <div align="center">
3
+
4
+ # ◉ Bob's CLI
5
+
6
+ ### Your AI Engineering Partner — In Your Terminal
7
+
8
+ **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
+
10
+ [Installation](#installation) · [Quick Start](#quick-start) · [Features](#features) · [Docs](https://seedling-io.gitbook.io/bob-cli/)
11
+
12
+ ---
13
+
14
+ *Built by [Bob's Workshop](https://bobs-workshop.web.app) — A Seedling Company*
15
+
16
+ </div>
17
+
18
+ ---
19
+
20
+ ## Why Bob's CLI?
21
+
22
+ 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
+
24
+ | Feature | Bob's CLI | Claude Code | Copilot | Cursor |
25
+ |---------|-----------|-------------|---------|--------|
26
+ | Local file awareness | ✅ | ✅ | ❌ | ✅ |
27
+ | Zero-cost local model | ✅ | ❌ | ❌ | ❌ |
28
+ | Behavioral profiling | ✅ | ❌ | ❌ | ❌ |
29
+ | Personalization Mode | ✅ | ❌ | ❌ | ❌ |
30
+ | Conversation persistence | ✅ | ❌ | ❌ | Partial |
31
+ | Deep Dives & Forks | ✅ | ❌ | ❌ | ❌ |
32
+ | Remote execution (SovereignLink) | ✅ | ❌ | ❌ | ❌ |
33
+ | Cross-surface sync (CLI ↔ Web) | ✅ | ❌ | ❌ | ❌ |
34
+ | Autonomous code repair | ✅ | Manual | ❌ | Partial |
35
+ | Source code stays on-device | ✅ | ❌ | ❌ | ❌ |
36
+
37
+ ---
38
+
39
+ ## Installation
40
+
41
+ pnpm add -g @bobsworkshop/cli
42
+
43
+ Or with npm:
44
+
45
+ npm install -g @bobsworkshop/cli
46
+
47
+ Verify:
48
+
49
+ bob whoami
50
+
51
+ **Requirements:**
52
+ - Node.js 18+
53
+ - 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
56
+
57
+ > Full setup guide: https://seedling-io.gitbook.io/bob-cli/
58
+
59
+ ---
60
+
61
+ ## Quick Start
62
+
63
+ ### Local-First (Free)
64
+
65
+ bob config set provider local
66
+ bob config set localEndpoint http://127.0.0.1:11434/api/chat
67
+ bob chat "hello, what can you help me with?"
68
+
69
+ No internet. No API keys. No cost. Your code never leaves your machine.
70
+
71
+ ### Platform (Subscribers)
72
+
73
+ bob login
74
+ bob chat "help me refactor this service"
75
+
76
+ Sync to web. Access Claude, Gemini, deep dives, forks, and personalization.
77
+
78
+ ---
79
+
80
+ ## Features
81
+
82
+ | Feature | Description |
83
+ |---------|-------------|
84
+ | **Chat** | AI coding partner with automatic file discovery |
85
+ | **Consult** | Strategic advice, no code output |
86
+ | **Index** | AI-powered project understanding |
87
+ | **Analyse** | Full QA code review with auto-fix |
88
+ | **Autonomy** | Autonomous repair across entire codebase |
89
+ | **Profile** | Behavioral DNA profiling + dashboard |
90
+ | **Deep Dive** | Sandboxed exploration on any message |
91
+ | **Fork** | Branch conversations into sub-projects |
92
+ | **SovereignLink** | Remote execution from any device |
93
+ | **BYOK** | Bring your own API keys |
94
+ | **Push** | Git stage + commit + push in one command |
95
+
96
+ ---
97
+
98
+ ## Personalization Mode
99
+
100
+ Powered by the **Frank Reasoning Engine**. Bob learns how you work and adapts:
101
+
102
+ - Tone, pacing, and depth matched to your style
103
+ - Blind spots proactively addressed
104
+ - Emotional state calibrated encouragement
105
+
106
+ bob profile --cloud
107
+ bob chat --personalized "what should I focus on?"
108
+
109
+ ---
110
+
111
+ ## Commands
112
+
113
+ bob chat "question" # AI coding partner
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
129
+
130
+ ---
131
+
132
+ ## Architecture
133
+
134
+ Tier 1 — Local (Free) Tier 3 — Platform (Subscription)
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
139
+
140
+ Same commands. Scale without changing tools.
141
+
142
+ ---
143
+
144
+ ## Documentation
145
+
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
149
+
150
+ ---
151
+
152
+ <div align="center">
153
+
154
+ **The AI coding tool that learns how you think.**
155
+
156
+ Bob's CLI · Bob's Workshop · Seedling
157
+
158
+ *Written by Bob.*
159
+
160
+ </div>