aibroker 0.28.0 → 0.28.1

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.
Files changed (2) hide show
  1. package/README.md +26 -2
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -14,6 +14,18 @@ Install AIBroker and your Claude Code sessions become reachable from anywhere. A
14
14
  - **Telegram** — Same experience, different app. Text and voice both work.
15
15
  - **PAILot** (iOS app) — Native companion app with session switching, voice messages, typing indicators, and message history.
16
16
 
17
+ ### Delegate Work from Todoist
18
+
19
+ File a task in Todoist — from your phone, your watch, or the web — and the AI
20
+ session that owns that project picks it up, does the work, and answers in the
21
+ comments. Reply from the comments and it goes back to the same session.
22
+
23
+ No new app, no new habit: you delegate to it the way you delegate to a
24
+ colleague, and because the work happens on a task you can see what it is doing,
25
+ what it decided, and say no before anything happens.
26
+
27
+ [What it feels like](docs/task-manager-as-interface.md) · [Setup and security model](docs/todoist.md)
28
+
17
29
  ### Manage Sessions Remotely
18
30
 
19
31
  - "Show me all sessions" — see every running Claude Code session
@@ -155,13 +167,19 @@ Every probe of an idle session does inject a message that stays in that session'
155
167
  ### 7. File work from your phone or watch (optional)
156
168
 
157
169
  ```bash
158
- tailscale funnel --bg --https=8443 http://127.0.0.1:8766
170
+ tailscale funnel --bg --https=443 --set-path=/todoist http://127.0.0.1:8766/todoist
159
171
  ```
160
172
 
173
+ > **Port 443, and no port in the callback URL.** Todoist *silently* refuses any
174
+ > webhook URL carrying a port: the form accepts it, activation appears to do
175
+ > nothing, and the status stays *Not configured* forever with no error anywhere.
176
+ > `--https=8443` will look like it worked and never deliver a single event.
177
+
161
178
  Add a task in Todoist and it reaches the session that owns it — no polling, because Todoist pushes. Set a **reminder** rather than a due date to schedule work: `reminder:fired` is a webhook event, a task merely becoming due is not.
162
179
 
163
180
  This is an execution ingress, so it is narrow by construction: every request must carry a valid HMAC signature, only explicitly allowlisted projects can reach a session, and an empty allowlist accepts nothing rather than everything. Todoist's Inbox cannot be shared, which is what makes quick capture from a watch safe.
164
181
 
182
+ What it feels like to use: **[docs/task-manager-as-interface.md](docs/task-manager-as-interface.md)**.
165
183
  Full setup, routing rules and the security model: **[docs/todoist.md](docs/todoist.md)**.
166
184
 
167
185
  ### 8. Audit what one session did to another
@@ -425,7 +443,13 @@ Addressing is explicit: `hub:machine-b/session:abc` routes through the bridge to
425
443
  | [mcp-tools.md](docs/mcp-tools.md) | All 42 MCP tools with parameters |
426
444
  | [adapters.md](docs/adapters.md) | Adapter development guide |
427
445
  | [pailot.md](docs/pailot.md) | PAILot iOS app integration |
428
- | [todoist.md](docs/todoist.md) | Todoist inbound channel: webhook setup, routing, security model |
446
+ | [task-manager-as-interface.md](docs/task-manager-as-interface.md) | Todoist as the front door to AI: what it feels like, what it will not do |
447
+ | [todoist.md](docs/todoist.md) | Todoist inbound channel: webhook setup, routing, security model, the comment mirror |
448
+ | [channels.md](docs/channels.md) | The model every inbound path shares — read first for anything inbound |
449
+ | [inbound.md](docs/inbound.md) | Generic `POST /hook/<route>` endpoint |
450
+ | [outbound.md](docs/outbound.md) | Acting in external systems through a platform's own actions |
451
+ | [mailbox.md](docs/mailbox.md) | Durable per-session queue and confirmed delivery |
452
+ | [audit.md](docs/audit.md) | What is recorded, and how to read it |
429
453
  | [mesh.md](docs/mesh.md) | Multi-machine mesh networking |
430
454
  | [ipc.md](docs/ipc.md) | IPC protocol and message format |
431
455
  | [tts-stt.md](docs/tts-stt.md) | Voice pipeline details |
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "aibroker",
3
- "version": "0.28.0",
3
+ "version": "0.28.1",
4
4
  "description": "Platform-agnostic AI message broker — routes between user channels and AI backends",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",