@tangle-network/agent-runtime 0.56.1 → 0.57.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.
Files changed (41) hide show
  1. package/dist/agent.d.ts +1 -1
  2. package/dist/agent.js +1 -1
  3. package/dist/analyst-loop.d.ts +1 -1
  4. package/dist/{chunk-6XKXWA7H.js → chunk-6BOIKGSU.js} +2 -2
  5. package/dist/{chunk-F5XQA43K.js → chunk-NJST5D2G.js} +2 -2
  6. package/dist/{chunk-4H2FML7G.js → chunk-RLDUT4JL.js} +758 -191
  7. package/dist/chunk-RLDUT4JL.js.map +1 -0
  8. package/dist/{chunk-EXIV2C72.js → chunk-TVBXDW7C.js} +59 -79
  9. package/dist/chunk-TVBXDW7C.js.map +1 -0
  10. package/dist/{chunk-G4NIVG34.js → chunk-WFEQCRQP.js} +4 -3
  11. package/dist/chunk-WFEQCRQP.js.map +1 -0
  12. package/dist/{coder-COuOK8h8.d.ts → coder-CybltHEm.d.ts} +1 -1
  13. package/dist/{coordination-DWNGqygr.d.ts → coordination-BydGBQCZ.d.ts} +164 -4
  14. package/dist/{delegates-D9o5_VFj.d.ts → delegates-C94qchkz.d.ts} +8 -2
  15. package/dist/index.d.ts +6 -6
  16. package/dist/index.js +4 -4
  17. package/dist/intelligence.d.ts +1 -1
  18. package/dist/{loop-runner-bin-CN2Se3jB.d.ts → loop-runner-bin-Noz7P-mS.d.ts} +3 -3
  19. package/dist/loop-runner-bin.d.ts +4 -4
  20. package/dist/loop-runner-bin.js +3 -3
  21. package/dist/loops.d.ts +7 -6
  22. package/dist/loops.js +13 -1
  23. package/dist/mcp/bin.js +3 -3
  24. package/dist/mcp/index.d.ts +20 -82
  25. package/dist/mcp/index.js +4 -4
  26. package/dist/{openai-tools-CoeLQ7Uo.d.ts → openai-tools-d4GKwgya.d.ts} +1 -1
  27. package/dist/profiles.d.ts +2 -2
  28. package/dist/{run-loop-DluzfJ2h.d.ts → run-loop-CcqfR_gy.d.ts} +1 -1
  29. package/dist/runtime.d.ts +255 -67
  30. package/dist/runtime.js +13 -1
  31. package/dist/{types-C8rNlxfV.d.ts → types-CUzjRFZ3.d.ts} +1 -1
  32. package/dist/workflow.d.ts +2 -2
  33. package/dist/workflow.js +1 -1
  34. package/package.json +2 -2
  35. package/skills/loop-writer/SKILL.md +1 -1
  36. package/skills/supervise/SKILL.md +1 -1
  37. package/dist/chunk-4H2FML7G.js.map +0 -1
  38. package/dist/chunk-EXIV2C72.js.map +0 -1
  39. package/dist/chunk-G4NIVG34.js.map +0 -1
  40. /package/dist/{chunk-6XKXWA7H.js.map → chunk-6BOIKGSU.js.map} +0 -0
  41. /package/dist/{chunk-F5XQA43K.js.map → chunk-NJST5D2G.js.map} +0 -0
@@ -15,7 +15,7 @@ You are a supervisor. You do NOT do the work yourself — you design and drive s
15
15
  - `skills` — the skill files the worker should carry (by name), OR `systemPrompt` — rich, specific instructions for this sub-task.
16
16
  - `model` — the model best suited to this sub-task (optional).
17
17
  Write the instructions a power user would write — never a one-liner. **Never spawn a worker with an empty profile.** The quality of the worker is the quality of the profile you author.
18
- 3. **Await** each worker with `await_next`. Its result reports `valid: true` only if the worker's deployable check passed.
18
+ 3. **Await** each worker with `await_event`. Its result reports `valid: true` only if the worker's deployable check passed.
19
19
  4. **On failure**, author a *new* worker whose profile names the specific failure and how to fix it — never blindly retry the same profile.
20
20
  5. **Stop** (reply with no tool call) once the work is delivered. Only a delivered (`valid: true`) worker counts; you cannot declare done yourself.
21
21