limbo-ai 1.1.0 → 1.3.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/CONTRIBUTING.md +34 -0
- package/README.md +32 -54
- package/package.json +1 -1
package/CONTRIBUTING.md
ADDED
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
# Contributing to Limbo
|
|
2
|
+
|
|
3
|
+
## Release Process (GHCR)
|
|
4
|
+
|
|
5
|
+
Stable deploys use pinned semver image tags via `LIMBO_IMAGE_TAG`.
|
|
6
|
+
|
|
7
|
+
- Release workflow: `.github/workflows/release-ghcr.yml`
|
|
8
|
+
- Published tags per release `vX.Y.Z`:
|
|
9
|
+
- `ghcr.io/tomasward1/limbo:X.Y.Z`
|
|
10
|
+
- `ghcr.io/tomasward1/limbo:X`
|
|
11
|
+
- `ghcr.io/tomasward1/limbo:latest`
|
|
12
|
+
|
|
13
|
+
### Creating a release
|
|
14
|
+
|
|
15
|
+
```sh
|
|
16
|
+
git tag -a v1.0.0 -m "Limbo v1.0.0"
|
|
17
|
+
git push origin v1.0.0
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
### Verifying a public pull
|
|
21
|
+
|
|
22
|
+
```sh
|
|
23
|
+
docker logout ghcr.io
|
|
24
|
+
docker manifest inspect ghcr.io/tomasward1/limbo:1.0.0
|
|
25
|
+
docker pull ghcr.io/tomasward1/limbo:1.0.0
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
If GHCR pull is denied (private package or temporary registry policy), the installer falls back to building from source on the target host.
|
|
29
|
+
|
|
30
|
+
## Branch Strategy
|
|
31
|
+
|
|
32
|
+
- `main` — production
|
|
33
|
+
- `staging` — integration branch for PRs
|
|
34
|
+
- Never open PRs directly into `main`
|
package/README.md
CHANGED
|
@@ -23,7 +23,7 @@ This will:
|
|
|
23
23
|
2. Write `~/.limbo/.env` and `~/.limbo/docker-compose.yml`
|
|
24
24
|
3. Pull the latest Limbo image and start the container
|
|
25
25
|
|
|
26
|
-
Limbo binds to `127.0.0.1:18789`.
|
|
26
|
+
Limbo binds to `127.0.0.1:18789`.
|
|
27
27
|
|
|
28
28
|
### Available commands
|
|
29
29
|
|
|
@@ -40,43 +40,21 @@ npx limbo-ai start --reconfigure # Change API keys or settings
|
|
|
40
40
|
|
|
41
41
|
## Updating
|
|
42
42
|
|
|
43
|
-
To pull the latest Limbo image and restart:
|
|
44
|
-
|
|
45
43
|
```sh
|
|
46
44
|
npx limbo-ai update
|
|
47
45
|
```
|
|
48
46
|
|
|
49
|
-
|
|
47
|
+
Pulls the latest Limbo image and restarts the container. Your vault data is persisted in the `limbo-data` Docker volume and is not affected.
|
|
50
48
|
|
|
51
49
|
---
|
|
52
50
|
|
|
53
|
-
##
|
|
54
|
-
|
|
55
|
-
Limbo exposes an MCP server on the running container. To connect an AI agent (Claude Code, Claude Desktop, or any OpenClaw-compatible client) to your Limbo instance, point it at the WebSocket gateway:
|
|
56
|
-
|
|
57
|
-
```
|
|
58
|
-
ws://localhost:18789
|
|
59
|
-
```
|
|
60
|
-
|
|
61
|
-
### Claude Code (MCP config)
|
|
62
|
-
|
|
63
|
-
Add to your project's `.claude/mcp.json` or `~/.claude/mcp.json`:
|
|
64
|
-
|
|
65
|
-
```json
|
|
66
|
-
{
|
|
67
|
-
"mcpServers": {
|
|
68
|
-
"limbo": {
|
|
69
|
-
"url": "ws://localhost:18789"
|
|
70
|
-
}
|
|
71
|
-
}
|
|
72
|
-
}
|
|
73
|
-
```
|
|
51
|
+
## Connecting
|
|
74
52
|
|
|
75
|
-
|
|
53
|
+
The easiest way to talk to Limbo is via **Telegram** — set up once, works from any device.
|
|
76
54
|
|
|
77
|
-
|
|
55
|
+
For everything else, Limbo speaks over WebSocket at `ws://localhost:18789` via the OpenClaw gateway. Any OpenClaw-compatible client can connect there directly.
|
|
78
56
|
|
|
79
|
-
### Telegram
|
|
57
|
+
### Telegram (recommended)
|
|
80
58
|
|
|
81
59
|
Set `TELEGRAM_ENABLED=true` and `TELEGRAM_BOT_TOKEN` in `~/.limbo/.env`, then restart:
|
|
82
60
|
|
|
@@ -84,31 +62,26 @@ Set `TELEGRAM_ENABLED=true` and `TELEGRAM_BOT_TOKEN` in `~/.limbo/.env`, then re
|
|
|
84
62
|
npx limbo-ai start --reconfigure
|
|
85
63
|
```
|
|
86
64
|
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
## Release Channel (GHCR)
|
|
90
|
-
|
|
91
|
-
Stable deploys should use a pinned semver image tag via `LIMBO_IMAGE_TAG`.
|
|
65
|
+
Message your bot and Limbo will respond.
|
|
92
66
|
|
|
93
|
-
|
|
94
|
-
- Published tags per release tag `vX.Y.Z`:
|
|
95
|
-
- `ghcr.io/tomasward1/limbo:X.Y.Z`
|
|
96
|
-
- `ghcr.io/tomasward1/limbo:X`
|
|
97
|
-
- `ghcr.io/tomasward1/limbo:latest`
|
|
67
|
+
### Without Telegram
|
|
98
68
|
|
|
99
|
-
|
|
69
|
+
Connect any [OpenClaw](https://openclaw.dev)-compatible client to:
|
|
100
70
|
|
|
101
|
-
```
|
|
102
|
-
|
|
103
|
-
git push origin v1.0.0
|
|
71
|
+
```
|
|
72
|
+
ws://localhost:18789
|
|
104
73
|
```
|
|
105
74
|
|
|
106
|
-
|
|
75
|
+
This includes Claude Code — add Limbo to your MCP config:
|
|
107
76
|
|
|
108
|
-
```
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
77
|
+
```json
|
|
78
|
+
{
|
|
79
|
+
"mcpServers": {
|
|
80
|
+
"limbo": {
|
|
81
|
+
"url": "ws://localhost:18789"
|
|
82
|
+
}
|
|
83
|
+
}
|
|
84
|
+
}
|
|
112
85
|
```
|
|
113
86
|
|
|
114
87
|
---
|
|
@@ -153,12 +126,13 @@ Full tool specs in `workspace/TOOLS.md`.
|
|
|
153
126
|
│ Docker Container │
|
|
154
127
|
│ │
|
|
155
128
|
│ ┌─────────────┐ ┌────────────────┐ │
|
|
156
|
-
│ │ OpenClaw │◄──►│
|
|
157
|
-
│ │ Gateway │
|
|
158
|
-
│ │ :18789 │
|
|
159
|
-
│ └──────┬──────┘
|
|
160
|
-
│ │
|
|
161
|
-
│ Telegram Bot │
|
|
129
|
+
│ │ OpenClaw │◄──►│ LLM (Claude │ │
|
|
130
|
+
│ │ Gateway │ │ or OpenAI) │ │
|
|
131
|
+
│ │ :18789 │ └────────┬───────┘ │
|
|
132
|
+
│ └──────┬──────┘ │ │
|
|
133
|
+
│ │ ┌────────▼───────┐ │
|
|
134
|
+
│ Telegram Bot │ MCP Server │ │
|
|
135
|
+
│ │ │ limbo-vault │ │
|
|
162
136
|
│ │ └────────┬───────┘ │
|
|
163
137
|
│ └────────────────────┤ │
|
|
164
138
|
│ ▼ │
|
|
@@ -167,7 +141,7 @@ Full tool specs in `workspace/TOOLS.md`.
|
|
|
167
141
|
└─────────────────────────────────────────┘
|
|
168
142
|
```
|
|
169
143
|
|
|
170
|
-
- **OpenClaw** — gateway that
|
|
144
|
+
- **OpenClaw** — gateway that handles client connections, routes to the LLM, and integrates MCP tools
|
|
171
145
|
- **MCP server** — Node.js server providing vault read/write tools
|
|
172
146
|
- **Vault** — plain markdown files with YAML frontmatter, persisted in a named Docker volume
|
|
173
147
|
- **Migrations** — lightweight Node.js migration runner for vault schema changes
|
|
@@ -214,3 +188,7 @@ docker run --rm -e LLM_API_KEY=sk-ant-... -p 18789:18789 limbo:dev
|
|
|
214
188
|
```sh
|
|
215
189
|
node migrations/index.js
|
|
216
190
|
```
|
|
191
|
+
|
|
192
|
+
---
|
|
193
|
+
|
|
194
|
+
See [CONTRIBUTING.md](./CONTRIBUTING.md) for release and deployment process.
|