@sjawhar/pi-legion-envoy 0.36.2 → 0.37.1
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 +12 -7
- 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
|
|
@@ -141,11 +141,16 @@ type EditOp = {
|
|
|
141
141
|
};
|
|
142
142
|
```
|
|
143
143
|
|
|
144
|
-
Target
|
|
145
|
-
|
|
146
|
-
`
|
|
147
|
-
|
|
148
|
-
|
|
144
|
+
Target `replace` and `delete` by the document's plain text: inline-code and link text match
|
|
145
|
+
without Markdown syntax, and a table-cell anchor is its cell text. `replace` requires `find` and
|
|
146
|
+
`with`; `delete` requires `find`; `insert` requires `markdown` and exactly one of `after` or
|
|
147
|
+
`before`. An insert anchor is a quote, `"start"`, `"end"`, or `"heading:Title"`. Every insert
|
|
148
|
+
creates a sibling block before or after the quote or heading's enclosing document block; `"start"`
|
|
149
|
+
and `"end"` select the document edges. At a table-cell quote, pipe-table body-row fragments extend
|
|
150
|
+
that table before or after the matched row; omit table header and delimiter rows, and do not exceed
|
|
151
|
+
the table width. Use `replace` for inline continuation. Use zero-based `occurrence` for a repeated
|
|
152
|
+
target. When a decision lands, pass `summary` to name the resulting version. Never paste progress
|
|
153
|
+
into a message.
|
|
149
154
|
|
|
150
155
|
## Comments and suggestions
|
|
151
156
|
|