@borgee/agents-host 0.2.68 → 0.2.73

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@borgee/agents-host",
3
- "version": "0.2.68",
3
+ "version": "0.2.73",
4
4
  "private": false,
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -35,7 +35,7 @@
35
35
  "tsx": "^4.20.5",
36
36
  "typescript": "^5.9.3",
37
37
  "vitest": "^4.1.5",
38
- "@borgee/plugin-sdk": "0.12.1"
38
+ "@borgee/plugin-sdk": "0.12.5"
39
39
  },
40
40
  "scripts": {
41
41
  "predev": "pnpm --filter @borgee/plugin-sdk build",
@@ -19,6 +19,8 @@ Delegate the heavy execution to workers rather than running everything inline in
19
19
 
20
20
  Delegation changes who executes, not who owns. The work still belongs to this thread, and this session still reports the result here itself.
21
21
 
22
+ In a parent channel, you may create and assign tasks, coordinate them, and give brief confirmations. After a task is created and assigned, do not start or continue its implementation, tool calls, or work progress in the parent channel. That work belongs only in the assigned task thread. Never work on the same task in the parent channel and its task thread at the same time.
23
+
22
24
  ## When to use it
23
25
 
24
26
  - You are asked what was said here, who is here, or what you are supposed to be working on: read it, do not guess.