@sjawhar/pi-legion-envoy 0.32.0 → 0.34.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.
- package/dist/envoy.js +1 -1
- package/dist/legion.js +3 -2
- package/dist/skills/dispatch/SKILL.md +4 -2
- package/package.json +1 -1
package/dist/envoy.js
CHANGED
|
@@ -30045,7 +30045,7 @@ var LegionDaemonApi = {
|
|
|
30045
30045
|
})
|
|
30046
30046
|
},
|
|
30047
30047
|
ProcessReady: {
|
|
30048
|
-
request: architectCapability,
|
|
30048
|
+
request: architectCapability.extend({ generation: number2().int() }),
|
|
30049
30049
|
response: object({})
|
|
30050
30050
|
},
|
|
30051
30051
|
MergeGate: {
|
package/dist/legion.js
CHANGED
|
@@ -30043,7 +30043,7 @@ var LegionDaemonApi = {
|
|
|
30043
30043
|
})
|
|
30044
30044
|
},
|
|
30045
30045
|
ProcessReady: {
|
|
30046
|
-
request: architectCapability,
|
|
30046
|
+
request: architectCapability.extend({ generation: number2().int() }),
|
|
30047
30047
|
response: object({})
|
|
30048
30048
|
},
|
|
30049
30049
|
MergeGate: {
|
|
@@ -33486,7 +33486,8 @@ function legionExtension(pi) {
|
|
|
33486
33486
|
await callReadyWithRetry("root process/ready", () => roleDaemon().processReady({
|
|
33487
33487
|
tree,
|
|
33488
33488
|
sessionId: sessionID,
|
|
33489
|
-
secret: started.secret
|
|
33489
|
+
secret: started.secret,
|
|
33490
|
+
generation: generation(process.env)
|
|
33490
33491
|
}));
|
|
33491
33492
|
registerArchitectTools();
|
|
33492
33493
|
await activateLegionTool();
|
|
@@ -144,8 +144,10 @@ dispatch_comment({ issue, artifact?, quote?, occurrence?, body, reply_to?, reply
|
|
|
144
144
|
|
|
145
145
|
It returns `details` `{ issue, topic, comment }`. `quote` requires `artifact`; omit both for a
|
|
146
146
|
floating issue comment. A reply (`reply_to`/`reply_to_ask`) takes no `quote`; it belongs to its
|
|
147
|
-
parent's anchor. Use `reply_to` to continue a comment thread;
|
|
148
|
-
directly under a question asked with
|
|
147
|
+
parent's anchor. Use `reply_to` to continue a comment thread at its root; a reply to a resolved
|
|
148
|
+
thread reopens it. Use `reply_to_ask` to reply directly under a question asked with
|
|
149
|
+
`dispatch_ask`. The two are mutually exclusive. Comments are edited only by their author from the
|
|
150
|
+
dashboard.
|
|
149
151
|
|
|
150
152
|
Propose an exact replacement instead of describing it:
|
|
151
153
|
|