limbo-ai 1.20.1 → 1.20.3
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 +9 -16
- package/cli.js +12 -12
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -80,17 +80,11 @@ There are two ways to connect: **talk to Limbo** (conversational, with its perso
|
|
|
80
80
|
|
|
81
81
|
#### Telegram (recommended)
|
|
82
82
|
|
|
83
|
-
|
|
83
|
+
During setup (`npx limbo-ai start`), the wizard will walk you through creating a Telegram bot via BotFather and pairing it. Message your bot and Limbo will respond — full agent with personality, memory logic, and vault tools.
|
|
84
84
|
|
|
85
|
-
|
|
86
|
-
npx limbo-ai start --reconfigure
|
|
87
|
-
```
|
|
88
|
-
|
|
89
|
-
Message your bot and Limbo will respond — full agent with personality, memory logic, and vault tools.
|
|
90
|
-
|
|
91
|
-
#### ZeroClaw client
|
|
85
|
+
#### ZeroClaw gateway
|
|
92
86
|
|
|
93
|
-
Any ZeroClaw-compatible chat client can connect
|
|
87
|
+
Any [ZeroClaw](https://github.com/zeroclaw-labs/zeroclaw)-compatible chat client can connect to:
|
|
94
88
|
|
|
95
89
|
```
|
|
96
90
|
ws://localhost:18789
|
|
@@ -130,7 +124,6 @@ Managed automatically by `npx limbo-ai start`, stored in `~/.limbo/.env`.
|
|
|
130
124
|
| `MODEL_NAME` | no | `claude-opus-4-6` | Model name (e.g. `claude-opus-4-6`, `claude-sonnet-4-6`, `gpt-5.4`) |
|
|
131
125
|
| `TELEGRAM_ENABLED` | no | `false` | Enable Telegram bot integration |
|
|
132
126
|
| `TELEGRAM_BOT_TOKEN` | no | — | Telegram bot token (required if `TELEGRAM_ENABLED=true`) |
|
|
133
|
-
| `TELEGRAM_AUTO_PAIR_FIRST_DM` | no | `false` | Auto-approves the first Telegram DM sender and persists access (must opt-in explicitly) |
|
|
134
127
|
|
|
135
128
|
> \* API keys are required only for `AUTH_MODE=api-key`. Subscription auth uses ZeroClaw auth profiles instead.
|
|
136
129
|
|
|
@@ -159,12 +152,12 @@ Full tool specs in `workspace/TOOLS.md`.
|
|
|
159
152
|
│ │
|
|
160
153
|
│ ┌─────────────┐ ┌────────────────┐ │
|
|
161
154
|
│ │ ZeroClaw │◄──►│ LLM (Claude │ │
|
|
162
|
-
│ │
|
|
155
|
+
│ │ daemon │ │ or OpenAI) │ │
|
|
163
156
|
│ │ :18789 │ └────────┬───────┘ │
|
|
164
157
|
│ └──────┬──────┘ │ │
|
|
165
158
|
│ │ ┌────────▼───────┐ │
|
|
166
|
-
│ Telegram Bot
|
|
167
|
-
│ │ │ limbo-vault
|
|
159
|
+
│ Telegram Bot │ MCP Server │ │
|
|
160
|
+
│ │ │ limbo-vault │ │
|
|
168
161
|
│ │ └────────┬───────┘ │
|
|
169
162
|
│ └────────────────────┤ │
|
|
170
163
|
│ ▼ │
|
|
@@ -173,8 +166,8 @@ Full tool specs in `workspace/TOOLS.md`.
|
|
|
173
166
|
└─────────────────────────────────────────┘
|
|
174
167
|
```
|
|
175
168
|
|
|
176
|
-
- **ZeroClaw** — lightweight Rust
|
|
177
|
-
- **MCP server** — Node.js server providing vault read/write tools
|
|
169
|
+
- **ZeroClaw** — lightweight Rust runtime (~5MB RAM) that handles client connections, routes to the LLM, manages Telegram, and integrates MCP tools natively
|
|
170
|
+
- **MCP server** — Node.js server providing vault read/write tools (spawned by ZeroClaw, no mcporter needed)
|
|
178
171
|
- **Vault** — plain markdown files with YAML frontmatter, persisted in a named Docker volume
|
|
179
172
|
- **Migrations** — lightweight Node.js migration runner for vault schema changes
|
|
180
173
|
|
|
@@ -212,7 +205,7 @@ VAULT_PATH=./dev-vault node index.js
|
|
|
212
205
|
|
|
213
206
|
```sh
|
|
214
207
|
docker build -t limbo:dev .
|
|
215
|
-
docker
|
|
208
|
+
docker compose up -d
|
|
216
209
|
```
|
|
217
210
|
|
|
218
211
|
### Run migrations standalone
|
package/cli.js
CHANGED
|
@@ -159,9 +159,12 @@ function composeContent() {
|
|
|
159
159
|
- ${VAULT_DIR}:/data/vault
|
|
160
160
|
- limbo-zeroclaw-state:/home/limbo/.zeroclaw
|
|
161
161
|
secrets:
|
|
162
|
-
- llm_api_key
|
|
163
|
-
|
|
164
|
-
-
|
|
162
|
+
- source: llm_api_key
|
|
163
|
+
mode: 0444
|
|
164
|
+
- source: telegram_bot_token
|
|
165
|
+
mode: 0444
|
|
166
|
+
- source: gateway_token
|
|
167
|
+
mode: 0444
|
|
165
168
|
env_file:
|
|
166
169
|
- ${LIMBO_DIR}/.env
|
|
167
170
|
environment:
|
|
@@ -179,13 +182,10 @@ function composeContent() {
|
|
|
179
182
|
secrets:
|
|
180
183
|
llm_api_key:
|
|
181
184
|
file: ${SECRETS_DIR}/llm_api_key
|
|
182
|
-
mode: 0444
|
|
183
185
|
telegram_bot_token:
|
|
184
186
|
file: ${SECRETS_DIR}/telegram_bot_token
|
|
185
|
-
mode: 0444
|
|
186
187
|
gateway_token:
|
|
187
188
|
file: ${SECRETS_DIR}/gateway_token
|
|
188
|
-
mode: 0444
|
|
189
189
|
|
|
190
190
|
volumes:
|
|
191
191
|
limbo-data:
|
|
@@ -218,9 +218,12 @@ function composeContentHardened() {
|
|
|
218
218
|
- ${VAULT_DIR}:/data/vault
|
|
219
219
|
- limbo-zeroclaw-state:/home/limbo/.zeroclaw
|
|
220
220
|
secrets:
|
|
221
|
-
- llm_api_key
|
|
222
|
-
|
|
223
|
-
-
|
|
221
|
+
- source: llm_api_key
|
|
222
|
+
mode: 0444
|
|
223
|
+
- source: telegram_bot_token
|
|
224
|
+
mode: 0444
|
|
225
|
+
- source: gateway_token
|
|
226
|
+
mode: 0444
|
|
224
227
|
env_file:
|
|
225
228
|
- ${LIMBO_DIR}/.env
|
|
226
229
|
environment:
|
|
@@ -269,13 +272,10 @@ networks:
|
|
|
269
272
|
secrets:
|
|
270
273
|
llm_api_key:
|
|
271
274
|
file: ${SECRETS_DIR}/llm_api_key
|
|
272
|
-
mode: 0444
|
|
273
275
|
telegram_bot_token:
|
|
274
276
|
file: ${SECRETS_DIR}/telegram_bot_token
|
|
275
|
-
mode: 0444
|
|
276
277
|
gateway_token:
|
|
277
278
|
file: ${SECRETS_DIR}/gateway_token
|
|
278
|
-
mode: 0444
|
|
279
279
|
|
|
280
280
|
volumes:
|
|
281
281
|
limbo-data:
|