@sjawhar/pi-legion-envoy 0.36.2 → 0.37.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 -0
- package/dist/legion.js +1 -0
- package/dist/skills/dispatch/SKILL.md +2 -2
- package/package.json +1 -1
package/dist/envoy.js
CHANGED
|
@@ -29669,6 +29669,7 @@ var ArtifactVersionEventPayloadSchema = object({
|
|
|
29669
29669
|
diff: string2().optional()
|
|
29670
29670
|
});
|
|
29671
29671
|
var AskEventPayloadSchema = object({
|
|
29672
|
+
opened_event_id: number2().int().positive(),
|
|
29672
29673
|
question: string2().optional(),
|
|
29673
29674
|
options: array(object({ label: string2().optional() })).nullish(),
|
|
29674
29675
|
answer: object({ selected: array(string2()).nullish(), text: string2().nullish() }).nullish(),
|
package/dist/legion.js
CHANGED
|
@@ -29667,6 +29667,7 @@ var ArtifactVersionEventPayloadSchema = object({
|
|
|
29667
29667
|
diff: string2().optional()
|
|
29668
29668
|
});
|
|
29669
29669
|
var AskEventPayloadSchema = object({
|
|
29670
|
+
opened_event_id: number2().int().positive(),
|
|
29670
29671
|
question: string2().optional(),
|
|
29671
29672
|
options: array(object({ label: string2().optional() })).nullish(),
|
|
29672
29673
|
answer: object({ selected: array(string2()).nullish(), text: string2().nullish() }).nullish(),
|
|
@@ -104,8 +104,8 @@ dispatch_resolve_ask({
|
|
|
104
104
|
})
|
|
105
105
|
```
|
|
106
106
|
Use `retracted` when the question is obsolete and `resolved` when you found the answer. Include the
|
|
107
|
-
reason because the question remains in its
|
|
108
|
-
it never records a human decision, and an answered ask cannot be resolved.
|
|
107
|
+
reason because the question remains in its Conversation card and reply thread. Resolution is not an
|
|
108
|
+
answer: it never records a human decision, and an answered ask cannot be resolved.
|
|
109
109
|
|
|
110
110
|
An ask is a thread, not a dead end: a human can reply to it before or after answering, and you
|
|
111
111
|
(the asker) can reply too — e.g. acknowledging a clarifying question, or following up after the
|