agent-tasks 1.10.5 → 1.10.6
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 +8 -2
- package/agent-desk-plugin.json +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -43,7 +43,8 @@ When you run multiple AI agents on the same codebase, they need a shared task pi
|
|
|
43
43
|
- **Agent affinity** — `task_list(next: true)` prefers routing tasks to agents with related history (parent, dependency, project) as a tie-breaker
|
|
44
44
|
- **Heartbeat-based cleanup** — auto-fails tasks from dead agents using agent-comm heartbeat data
|
|
45
45
|
- **Task cleanup hooks** — auto-fails orphaned tasks on session stop and cleans up stale tasks on session start
|
|
46
|
-
- **Agent bridge** — notifies connected agents on task events
|
|
46
|
+
- **Agent bridge** — notifies connected agents on task events (claim, advance, comment, approval)
|
|
47
|
+
- **Knowledge bridge** — auto-pushes learning and decision artifacts to agent-knowledge on task completion, with embedding indexing and auto-linking
|
|
47
48
|
|
|
48
49
|
---
|
|
49
50
|
|
|
@@ -153,6 +154,7 @@ npm run check # Full CI: typecheck + lint + format + test
|
|
|
153
154
|
| `AGENT_TASKS_PORT` | `3422` | Dashboard HTTP/WebSocket port |
|
|
154
155
|
| `AGENT_TASKS_INSTRUCTIONS` | enabled | Set to `0` to disable response-embedded instructions |
|
|
155
156
|
| `AGENT_COMM_URL` | `http://localhost:3421` | Agent-comm REST URL for bridge notifications |
|
|
157
|
+
| `AGENT_KNOWLEDGE_URL` | `http://localhost:3423` | Agent-knowledge REST URL for knowledge bridge |
|
|
156
158
|
|
|
157
159
|
---
|
|
158
160
|
|
|
@@ -160,7 +162,11 @@ npm run check # Full CI: typecheck + lint + format + test
|
|
|
160
162
|
|
|
161
163
|
**Required**: Node.js >= 20.11, better-sqlite3 (bundled)
|
|
162
164
|
|
|
163
|
-
**Optional
|
|
165
|
+
**Optional (soft dependencies — fail-open, HTTP-only, no npm dep):**
|
|
166
|
+
|
|
167
|
+
- [agent-comm](https://github.com/keshrath/agent-comm) — Heartbeat-based task cleanup and event notifications. agent-comm tracks heartbeats → agent-tasks checks heartbeats → auto-fails tasks from dead agents. Also sends direct messages on claim/advance and posts to channels on comments/approvals. Without agent-comm, stale agent detection and notifications are skipped gracefully.
|
|
168
|
+
|
|
169
|
+
- [agent-knowledge](https://github.com/keshrath/agent-knowledge) — Knowledge persistence for task learnings and decisions. On task completion, the KnowledgeBridge pushes `learning` and `decision` artifacts to agent-knowledge via `POST /api/knowledge`. Entries are auto-indexed with embeddings, auto-linked to similar entries, and git-synced. Without agent-knowledge, artifacts stay in agent-tasks only.
|
|
164
170
|
|
|
165
171
|
---
|
|
166
172
|
|
package/agent-desk-plugin.json
CHANGED
package/package.json
CHANGED