@thesammykins/tether 1.0.0 → 1.2.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/.env.example +14 -0
- package/README.md +28 -274
- package/bin/tether.ts +366 -28
- package/docs/agents.md +205 -0
- package/docs/architecture.md +117 -0
- package/docs/cli.md +277 -0
- package/docs/configuration.md +158 -0
- package/docs/discord-setup.md +122 -0
- package/docs/installation.md +151 -0
- package/docs/troubleshooting.md +74 -0
- package/package.json +2 -1
- package/src/api.ts +89 -6
- package/src/bot.ts +47 -9
- package/src/config.ts +390 -0
- package/src/db.ts +6 -0
- package/src/features/pause-resume.ts +3 -3
- package/src/queue.ts +1 -0
- package/src/worker.ts +14 -2
- package/src/spawner.ts +0 -110
package/.env.example
CHANGED
|
@@ -12,6 +12,20 @@ AGENT_TYPE=claude
|
|
|
12
12
|
# Optional - Working directory for agent sessions
|
|
13
13
|
CLAUDE_WORKING_DIR=/path/to/your/project
|
|
14
14
|
|
|
15
|
+
# Optional - HTTP API server configuration
|
|
16
|
+
TETHER_API_HOST=127.0.0.1
|
|
17
|
+
# Bind address for the HTTP API server (default: 127.0.0.1)
|
|
18
|
+
# Use 0.0.0.0 to allow external connections
|
|
19
|
+
|
|
20
|
+
TETHER_API_PORT=2643
|
|
21
|
+
# Port for the HTTP API server (default: 2643)
|
|
22
|
+
|
|
23
|
+
API_TOKEN=
|
|
24
|
+
# Optional - API authentication token
|
|
25
|
+
# If set, all API requests (except /health) must include:
|
|
26
|
+
# Authorization: Bearer <token>
|
|
27
|
+
# If not set, no authentication is required (backward compatible)
|
|
28
|
+
|
|
15
29
|
# Optional - Direct Messages (disabled by default)
|
|
16
30
|
ENABLE_DMS=false
|
|
17
31
|
# Set to "true" to allow the bot to respond to DMs.
|
package/README.md
CHANGED
|
@@ -1,265 +1,53 @@
|
|
|
1
1
|
# @thesammykins/tether
|
|
2
2
|
|
|
3
|
+
[](https://www.npmjs.com/package/@thesammykins/tether)
|
|
4
|
+
[](./LICENSE)
|
|
5
|
+
|
|
3
6
|
Discord bot that bridges messages to AI coding agents. Supports Claude Code, OpenCode, and Codex CLI.
|
|
4
7
|
|
|
5
8
|
Fork of [cord](https://github.com/alexknowshtml/cord) with multi-agent support and enhanced features.
|
|
6
9
|
|
|
7
10
|
## Features
|
|
8
11
|
|
|
9
|
-
- **Multi-agent support** — Claude Code, OpenCode, Codex (switch via
|
|
10
|
-
- **
|
|
12
|
+
- **Multi-agent support** — Claude Code, OpenCode, Codex (switch via config)
|
|
13
|
+
- **BRB mode** — Agent asks questions via Discord buttons when you're away
|
|
14
|
+
- **Direct messages** — Chat with the bot privately via DMs
|
|
15
|
+
- **Encrypted config** — `tether config` stores tokens with AES-256-GCM encryption
|
|
11
16
|
- **Access control** — User, role, and channel allowlists
|
|
12
17
|
- **Rate limiting** — Per-user sliding window
|
|
13
18
|
- **Session management** — Turn limits, duration limits, pause/resume
|
|
14
19
|
- **Smart threads** — Auto-naming, channel context for new conversations
|
|
15
|
-
- **Acknowledgment** — 👀 reaction on incoming messages
|
|
16
20
|
- **Resilient** — Exponential backoff on connection failures
|
|
17
21
|
|
|
18
22
|
## Quick Start
|
|
19
23
|
|
|
20
|
-
### Prerequisites
|
|
21
|
-
|
|
22
|
-
- [Bun](https://bun.sh) runtime
|
|
23
|
-
- [Redis](https://redis.io) (for BullMQ job queue)
|
|
24
|
-
- A Discord bot token ([setup guide below](#discord-bot-setup))
|
|
25
|
-
- An AI agent CLI installed on PATH (`claude`, `opencode`, or `codex`)
|
|
26
|
-
|
|
27
|
-
### Install
|
|
28
|
-
|
|
29
|
-
```bash
|
|
30
|
-
git clone https://github.com/thesammykins/tether.git
|
|
31
|
-
cd tether
|
|
32
|
-
bun install
|
|
33
|
-
```
|
|
34
|
-
|
|
35
|
-
### Configure
|
|
36
|
-
|
|
37
|
-
```bash
|
|
38
|
-
cp .env.example .env
|
|
39
|
-
# Edit .env with your DISCORD_BOT_TOKEN and settings
|
|
40
|
-
```
|
|
41
|
-
|
|
42
|
-
### Run
|
|
43
|
-
|
|
44
24
|
```bash
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
bun run bot # Discord gateway
|
|
48
|
-
bun run worker # Job processor
|
|
49
|
-
```
|
|
50
|
-
|
|
51
|
-
---
|
|
52
|
-
|
|
53
|
-
## Discord Bot Setup
|
|
54
|
-
|
|
55
|
-
Step-by-step guide to creating and configuring your Discord bot.
|
|
56
|
-
|
|
57
|
-
### 1. Create a Discord Application
|
|
58
|
-
|
|
59
|
-
1. Go to the [Discord Developer Portal](https://discord.com/developers/applications)
|
|
60
|
-
2. Click **New Application** and give it a name (e.g. "Tether")
|
|
61
|
-
3. Note the **Application ID** — you'll need it for the invite link
|
|
62
|
-
|
|
63
|
-
### 2. Create the Bot User
|
|
64
|
-
|
|
65
|
-
1. In your application, go to the **Bot** tab in the left sidebar
|
|
66
|
-
2. Click **Add Bot** (if not already created)
|
|
67
|
-
3. Under **Token**, click **Reset Token** and copy it — this is your `DISCORD_BOT_TOKEN`
|
|
68
|
-
4. **Store this token securely** — you won't be able to see it again
|
|
69
|
-
|
|
70
|
-
### 3. Configure Bot Permissions
|
|
71
|
-
|
|
72
|
-
Under the **Bot** tab, configure these settings:
|
|
73
|
-
|
|
74
|
-
**Privileged Gateway Intents** (toggle ON):
|
|
75
|
-
|
|
76
|
-
| Intent | Why |
|
|
77
|
-
|--------|-----|
|
|
78
|
-
| **Message Content Intent** | Required to read message text (not just metadata) |
|
|
79
|
-
|
|
80
|
-
> Without Message Content Intent enabled, the bot will connect but never see message contents.
|
|
81
|
-
|
|
82
|
-
**Bot Permissions** — the bot needs these permissions in your server:
|
|
83
|
-
|
|
84
|
-
| Permission | Why |
|
|
85
|
-
|------------|-----|
|
|
86
|
-
| Send Messages | Reply to users |
|
|
87
|
-
| Create Public Threads | Create conversation threads |
|
|
88
|
-
| Send Messages in Threads | Respond in threads |
|
|
89
|
-
| Manage Threads | Rename threads |
|
|
90
|
-
| Read Message History | Fetch channel context for new conversations |
|
|
91
|
-
| Add Reactions | 👀 acknowledgment emoji |
|
|
92
|
-
| Use Slash Commands | `/cord config` command |
|
|
93
|
-
|
|
94
|
-
### 4. Generate the Invite Link
|
|
95
|
-
|
|
96
|
-
1. Go to the **OAuth2** tab → **URL Generator**
|
|
97
|
-
2. Under **Scopes**, select:
|
|
98
|
-
- `bot`
|
|
99
|
-
- `applications.commands`
|
|
100
|
-
3. Under **Bot Permissions**, select the permissions listed above, or use the permission integer `326417588288` which includes all required permissions
|
|
101
|
-
4. Copy the generated URL and open it in your browser
|
|
102
|
-
5. Select the server you want to add the bot to and click **Authorize**
|
|
103
|
-
|
|
104
|
-
### 5. Enable DMs (Optional)
|
|
105
|
-
|
|
106
|
-
If you want users to be able to DM the bot directly:
|
|
107
|
-
|
|
108
|
-
1. In `.env`, set `ENABLE_DMS=true`
|
|
109
|
-
2. In the Discord Developer Portal → **Bot** tab, make sure **Allow DMs** is not disabled
|
|
110
|
-
|
|
111
|
-
DM behavior:
|
|
112
|
-
- Any message sent to the bot in DMs starts or continues a conversation
|
|
113
|
-
- No `@mention` needed — every DM is treated as a prompt
|
|
114
|
-
- Sessions persist per-user until manually reset
|
|
115
|
-
- Send `!reset` in DMs to start a fresh session
|
|
116
|
-
- Only `ALLOWED_USERS` is checked for DMs (roles and channels don't apply)
|
|
117
|
-
|
|
118
|
-
### 6. Start the Bot
|
|
119
|
-
|
|
120
|
-
```bash
|
|
121
|
-
# Make sure Redis is running
|
|
122
|
-
redis-server
|
|
123
|
-
|
|
124
|
-
# Start tether
|
|
125
|
-
bun run start
|
|
126
|
-
```
|
|
127
|
-
|
|
128
|
-
You should see:
|
|
129
|
-
```
|
|
130
|
-
[bot] Connecting to Discord gateway (attempt 1)...
|
|
131
|
-
[bot] Logged in as YourBot#1234
|
|
132
|
-
[worker] Worker started, waiting for jobs...
|
|
133
|
-
```
|
|
134
|
-
|
|
135
|
-
### 7. Test It
|
|
136
|
-
|
|
137
|
-
In your Discord server, `@mention` the bot in any channel:
|
|
25
|
+
# Install
|
|
26
|
+
bun add -g @thesammykins/tether
|
|
138
27
|
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
The bot will:
|
|
144
|
-
1. React with 👀
|
|
145
|
-
2. Create a thread with an auto-generated name
|
|
146
|
-
3. Post a "Processing..." status message
|
|
147
|
-
4. Forward the prompt to your AI agent
|
|
148
|
-
5. Post the response in the thread
|
|
149
|
-
|
|
150
|
-
---
|
|
151
|
-
|
|
152
|
-
## Configuration
|
|
153
|
-
|
|
154
|
-
| Variable | Default | Description |
|
|
155
|
-
|----------|---------|-------------|
|
|
156
|
-
| `DISCORD_BOT_TOKEN` | required | Discord bot token |
|
|
157
|
-
| `AGENT_TYPE` | `claude` | Agent backend: `claude`, `opencode`, `codex` |
|
|
158
|
-
| `ENABLE_DMS` | `false` | Allow bot to respond to direct messages |
|
|
159
|
-
| `REDIS_HOST` | `localhost` | Redis host |
|
|
160
|
-
| `REDIS_PORT` | `6379` | Redis port |
|
|
161
|
-
| `ALLOWED_USERS` | (empty=all) | Comma-separated Discord user IDs |
|
|
162
|
-
| `ALLOWED_ROLES` | (empty=all) | Comma-separated role IDs (guild only) |
|
|
163
|
-
| `ALLOWED_CHANNELS` | (empty=all) | Comma-separated channel IDs (guild only) |
|
|
164
|
-
| `RATE_LIMIT_REQUESTS` | `5` | Max requests per window |
|
|
165
|
-
| `RATE_LIMIT_WINDOW_MS` | `60000` | Rate limit window (ms) |
|
|
166
|
-
| `MAX_TURNS_PER_SESSION` | `50` | Max turns per thread/DM session |
|
|
167
|
-
| `MAX_SESSION_DURATION_MS` | `3600000` | Max session duration (ms) |
|
|
168
|
-
| `CLAUDE_WORKING_DIR` | cwd | Default working directory for agents |
|
|
169
|
-
| `DB_PATH` | `./data/threads.db` | SQLite database path |
|
|
170
|
-
| `CORD_ALLOWED_DIRS` | (empty=any) | Comma-separated allowed working directories |
|
|
171
|
-
|
|
172
|
-
### Finding Discord IDs
|
|
173
|
-
|
|
174
|
-
To get user, role, or channel IDs:
|
|
175
|
-
1. Enable **Developer Mode** in Discord: Settings → App Settings → Advanced → Developer Mode
|
|
176
|
-
2. Right-click a user, role, or channel and select **Copy ID**
|
|
177
|
-
|
|
178
|
-
## Agent CLI Requirements
|
|
179
|
-
|
|
180
|
-
Whichever agent you choose must be installed and available on PATH:
|
|
181
|
-
- **Claude Code**: `claude` CLI — [Install guide](https://docs.anthropic.com/en/docs/claude-code)
|
|
182
|
-
- **OpenCode**: `opencode` CLI
|
|
183
|
-
- **Codex**: `codex` CLI
|
|
184
|
-
|
|
185
|
-
## Architecture
|
|
28
|
+
# Configure
|
|
29
|
+
tether config set DISCORD_BOT_TOKEN # paste token (hidden input)
|
|
30
|
+
tether config set AGENT_TYPE claude # or: opencode, codex
|
|
186
31
|
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
Discord Bot → BullMQ Queue → Agent Worker
|
|
191
|
-
(gateway) (Redis) (spawns CLI)
|
|
32
|
+
# Start Redis + Tether
|
|
33
|
+
redis-server &
|
|
34
|
+
tether start
|
|
192
35
|
```
|
|
193
36
|
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
- **Bot** (`src/bot.ts`) — Discord gateway with middleware pipeline
|
|
197
|
-
- **Worker** (`src/worker.ts`) — Job processor using adapter registry
|
|
198
|
-
- **Adapters** (`src/adapters/`) — AgentAdapter interface for Claude/OpenCode/Codex
|
|
199
|
-
- **Middleware** (`src/middleware/`) — Allowlist, rate-limiter
|
|
200
|
-
- **Features** (`src/features/`) — Ack, channel-context, thread-naming, session-limits, pause-resume
|
|
201
|
-
- **Queue** (`src/queue.ts`) — BullMQ job queue
|
|
202
|
-
- **DB** (`src/db.ts`) — SQLite for thread→session mapping
|
|
203
|
-
|
|
204
|
-
### Message Flow
|
|
205
|
-
|
|
206
|
-
**Guild channels:**
|
|
207
|
-
1. User `@mentions` bot in Discord channel
|
|
208
|
-
2. Bot checks allowlist → rate limiter → pause state
|
|
209
|
-
3. Bot creates thread with auto-generated name
|
|
210
|
-
4. Bot adds job to BullMQ queue
|
|
211
|
-
5. Worker pulls job and spawns agent adapter
|
|
212
|
-
6. Adapter runs CLI (`claude`/`opencode`/`codex`) with prompt
|
|
213
|
-
7. Worker posts response back to Discord thread
|
|
214
|
-
|
|
215
|
-
**Direct messages:**
|
|
216
|
-
1. User sends message to bot in DMs (no `@mention` needed)
|
|
217
|
-
2. Bot checks user allowlist → rate limiter
|
|
218
|
-
3. Bot creates or resumes session for this user
|
|
219
|
-
4. Bot adds job to BullMQ queue
|
|
220
|
-
5. Worker posts response back to the DM channel
|
|
221
|
-
|
|
222
|
-
### Middleware Pipeline
|
|
223
|
-
|
|
224
|
-
Messages pass through middleware in this order:
|
|
225
|
-
|
|
226
|
-
1. **Allowlist** — Block unauthorized users/channels/roles (DMs: user-only check)
|
|
227
|
-
2. **Rate Limiter** — Sliding window per-user rate limit
|
|
228
|
-
3. **Pause/Resume** — Hold messages if thread is paused (guild threads only)
|
|
229
|
-
|
|
230
|
-
### Session Management
|
|
231
|
-
|
|
232
|
-
- **Turn limits** — Max messages per thread/DM session (prevents infinite loops)
|
|
233
|
-
- **Duration limits** — Max session lifetime
|
|
234
|
-
- **Pause/Resume** — Type `pause` to hold messages, `resume` to continue (threads only)
|
|
235
|
-
- **DM Reset** — Type `!reset` in DMs to start a new session
|
|
236
|
-
- **Auto-completion** — React with ✅ on last message to mark "Done" (threads only)
|
|
37
|
+
Then `@mention` the bot in your Discord server.
|
|
237
38
|
|
|
238
|
-
##
|
|
39
|
+
## Documentation
|
|
239
40
|
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
/
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
```
|
|
251
|
-
|
|
252
|
-
**Fallback chain**: Message override → Channel config → `CLAUDE_WORKING_DIR` env → `process.cwd()`
|
|
253
|
-
|
|
254
|
-
### Security: Directory Allowlist
|
|
255
|
-
|
|
256
|
-
For multi-user deployments, restrict which directories users can access:
|
|
257
|
-
|
|
258
|
-
```bash
|
|
259
|
-
CORD_ALLOWED_DIRS=/home/projects,/var/code
|
|
260
|
-
```
|
|
261
|
-
|
|
262
|
-
If not set, any existing directory is allowed (backward compatible). When set, paths outside the allowlist are rejected.
|
|
41
|
+
| Guide | Description |
|
|
42
|
+
|-------|-------------|
|
|
43
|
+
| **[Installation](docs/installation.md)** | Prerequisites, install methods, quick setup |
|
|
44
|
+
| **[Discord Setup](docs/discord-setup.md)** | Bot creation, permissions, intents, invite link |
|
|
45
|
+
| **[Agent Setup](docs/agents.md)** | Claude Code / OpenCode / Codex install and auth |
|
|
46
|
+
| **[Configuration](docs/configuration.md)** | All config keys, encrypted secrets, resolution chain |
|
|
47
|
+
| **[CLI Reference](docs/cli.md)** | Every `tether` command with examples |
|
|
48
|
+
| **[Architecture](docs/architecture.md)** | System design, message flow, middleware pipeline |
|
|
49
|
+
| **[Troubleshooting](docs/troubleshooting.md)** | Common problems and solutions |
|
|
50
|
+
| **[HTTP API](skills/tether/HTTP-API.md)** | REST API for external scripts and webhooks |
|
|
263
51
|
|
|
264
52
|
## Testing
|
|
265
53
|
|
|
@@ -268,45 +56,11 @@ bun test # Run all tests
|
|
|
268
56
|
bun test tests/adapters/ # Adapter tests only
|
|
269
57
|
bun test tests/middleware/ # Middleware tests only
|
|
270
58
|
bun test tests/features/ # Feature tests only
|
|
271
|
-
bun test tests/integration/ # Integration tests only
|
|
272
59
|
```
|
|
273
60
|
|
|
274
|
-
## CLI Commands
|
|
275
|
-
|
|
276
|
-
See [skills/tether/SKILL.md](./skills/tether/SKILL.md) for full CLI documentation.
|
|
277
|
-
|
|
278
|
-
Quick reference:
|
|
279
|
-
- `tether send <channel> "message"` — Send text message
|
|
280
|
-
- `tether embed <channel> "text" --title "T"` — Send formatted embed
|
|
281
|
-
- `tether file <channel> ./file.txt` — Send file attachment
|
|
282
|
-
- `tether buttons <channel> "prompt" --button label="Yes" id="yes"` — Send interactive buttons
|
|
283
|
-
- `tether state <channel> <msgId> done` — Update status message
|
|
284
|
-
- `tether dm <user-id> "message"` — Send a DM to a user (proactive outreach)
|
|
285
|
-
- `tether dm <user-id> --embed "text" --title "T"` — Send an embed DM
|
|
286
|
-
- `tether dm <user-id> --file ./report.md` — Send a file via DM
|
|
287
|
-
|
|
288
|
-
## HTTP API
|
|
289
|
-
|
|
290
|
-
Tether exposes an HTTP API on port 2643 for external scripts and webhooks.
|
|
291
|
-
|
|
292
|
-
See [skills/tether/HTTP-API.md](./skills/tether/HTTP-API.md) for API documentation.
|
|
293
|
-
|
|
294
|
-
## Troubleshooting
|
|
295
|
-
|
|
296
|
-
| Problem | Solution |
|
|
297
|
-
|---------|----------|
|
|
298
|
-
| Bot connects but doesn't respond | Enable **Message Content Intent** in Developer Portal → Bot tab |
|
|
299
|
-
| "TokenInvalid" error | Regenerate your bot token in the Developer Portal |
|
|
300
|
-
| "DisallowedIntents" error | Enable the required intents in Developer Portal → Bot tab |
|
|
301
|
-
| Bot doesn't receive DMs | Set `ENABLE_DMS=true` in `.env` |
|
|
302
|
-
| "Rate limit exceeded" | Adjust `RATE_LIMIT_REQUESTS` / `RATE_LIMIT_WINDOW_MS` |
|
|
303
|
-
| Agent command not found | Ensure `claude`/`opencode`/`codex` is installed and on PATH |
|
|
304
|
-
| Redis connection refused | Start Redis: `redis-server` |
|
|
305
|
-
| Bot can't create threads | Check bot has **Create Public Threads** permission in your server |
|
|
306
|
-
|
|
307
61
|
## Privacy
|
|
308
62
|
|
|
309
|
-
|
|
63
|
+
No message content or user data is stored. Only thread-to-session mappings and channel config persist. Messages pass through Redis transiently and are discarded after processing.
|
|
310
64
|
|
|
311
65
|
## License
|
|
312
66
|
|