@polygraph/cursor-plugin 0.5.3 → 0.5.4

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.
@@ -56,10 +56,8 @@ Child agent <id> is done.
56
56
  **Repo:** <repoFullName>
57
57
  **Delegation id:** <id>
58
58
  **Status:** <status>
59
-
60
- Read the result with show_agent (id: "<id>").
61
59
  ```
62
60
 
63
61
  For `input-required` or `permission-required`, replace "is done." with "needs attention." and keep everything else identical.
64
62
 
65
- Do not summarize, quote, or describe the child's work. Do not include log lines. The main agent reads the result itself via `show_agent`.
63
+ Do not summarize, quote, or describe the child's work. Do not include log lines. The main agent reads the result itself via `show_agent`, and chooses how to read it. Never tell it which call to make.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@polygraph/cursor-plugin",
3
- "version": "0.5.3",
3
+ "version": "0.5.4",
4
4
  "description": "AI agent skills and subagents for Polygraph sessions, repository context, and coordination",
5
5
  "license": "UNLICENSED",
6
6
  "private": false,
package/plugin.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "polygraph",
3
- "version": "0.5.3",
3
+ "version": "0.5.4",
4
4
  "description": "AI agent skills and subagents for Polygraph sessions, repository context, and coordination"
5
5
  }
@@ -97,7 +97,7 @@ show_agent(sessionId: "<sessionId>", id: "<id>")
97
97
 
98
98
  One-off unwaited reads like this are cheap and expected inline. It is the *waiting* that belongs in a subagent, not the reading.
99
99
 
100
- When several pollers have exited, a **batch read** collects their results in one unwaited call: pass the list of ids and correlate each result by its delegation id.
100
+ When several pollers have exited, a **batch read** collects their results in one unwaited call: pass the list of ids and correlate each result by its delegation id. Batch when you spawned children together and have nothing to do until they all finish. Read one at a time when you act on each result as it lands, or only one child is in flight.
101
101
 
102
102
  ## When the result is not enough
103
103