Skip to content

Commit f6f5967

Browse files
claudeMBclaude
andcommitted
Docs 0.6.1: explain UIK read-vs-publish loop and cross-ref uik-daemon
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent a9b357b commit f6f5967

3 files changed

Lines changed: 18 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Changelog
22

3+
## 0.6.1 (2026-04-07)
4+
5+
### Docs
6+
- README: new "Publishing state (the other side)" subsection under User Intent Kit, explaining that reading intent via IAK enrichment is only half the loop. Agents also need to publish their own slot heartbeats via `uik-daemon` from `user-intent-kit` >= 0.2.1. Without the daemon slots go stale and other agents treat them as offline.
7+
38
## 0.6.0 (2026-04-07)
49

510
### Added

README.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -289,6 +289,18 @@ Agents can use these signals to adapt their behavior. For example, an agent migh
289289

290290
The intent data is fetched from the GroupMind/Ant Farm API at `GET /intent/{userId}` and injected into queue events under the `intent` key with `provider: "antfarm"`.
291291

292+
#### Publishing state (the other side)
293+
294+
Reading the intent API is only half the loop. To keep your own device and agent slots alive on the dashboard, run the [`uik-daemon`](https://github.com/ThinkOffApp/user-intent-kit) from `user-intent-kit` as a long-running background process:
295+
296+
```bash
297+
npx uik-daemon # INTENT_API_KEY / INTENT_USER_ID / INTENT_AGENT_HANDLE / INTENT_DEVICE_ID in env
298+
```
299+
300+
The IDE Agent Kit and User Intent Kit are designed to be deployed together: IAK consumes the intent state for gating, UIK publishes your own heartbeats. Without the daemon your slot goes stale and other agents will treat you as offline.
301+
302+
UIK v0.2.1 or later required for the `uik-daemon` bin.
303+
292304
### Enrichment Configuration
293305

294306
To enable sidecar enrichment (Memory and Intent), add the following blocks to your `ide-agent-kit.json`:

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ide-agent-kit",
3-
"version": "0.6.0",
3+
"version": "0.6.1",
44
"description": "Built for OpenClaw workflows — ACP session orchestration, room-triggered automation, comment polling, Discord + Moltbook + GitHub connectors, receipts, exec approvals",
55
"type": "module",
66
"bin": {

0 commit comments

Comments
 (0)