@sjawhar/opencode-legion-envoy 0.20.2 → 0.21.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/src/server.js +0 -3
- package/package.json +1 -1
- package/skills/dispatch/SKILL.md +0 -2
package/dist/src/server.js
CHANGED
|
@@ -13616,7 +13616,6 @@ var dispatchToolSpecs = [
|
|
|
13616
13616
|
description: z.string().describe("Optional option context.").optional()
|
|
13617
13617
|
}), { max: 8 }).describe("Optional choices, at most 8.").optional(),
|
|
13618
13618
|
multiple: z.boolean().describe("Whether multiple choices may be selected.").optional(),
|
|
13619
|
-
custom: z.boolean().describe("Whether a free-text answer is allowed.").optional(),
|
|
13620
13619
|
urgency: z.enum(ASK_URGENCIES).describe("Optional decision urgency.").optional(),
|
|
13621
13620
|
anchor: z.object({
|
|
13622
13621
|
artifact: z.string().describe("Artifact slug or id containing the quoted text."),
|
|
@@ -14722,14 +14721,12 @@ async function executeDispatchTool(input) {
|
|
|
14722
14721
|
const resolved = anchorArgs ? await resolveArtifact(client, issue(), stringArg(anchorArgs, "artifact")) : undefined;
|
|
14723
14722
|
const options = args.options;
|
|
14724
14723
|
const multiple = optionalBoolean(args, "multiple");
|
|
14725
|
-
const custom = optionalBoolean(args, "custom");
|
|
14726
14724
|
const urgency = askUrgency(args);
|
|
14727
14725
|
const anchored = anchorArgs && resolved ? anchor(resolved.artifact, anchorArgs) : undefined;
|
|
14728
14726
|
const ask = await client.ask(issue(), {
|
|
14729
14727
|
question: stringArg(args, "question"),
|
|
14730
14728
|
...Array.isArray(options) ? { options } : {},
|
|
14731
14729
|
...multiple === undefined ? {} : { multiple },
|
|
14732
|
-
...custom === undefined ? {} : { custom },
|
|
14733
14730
|
...urgency === undefined ? {} : { urgency },
|
|
14734
14731
|
...anchored === undefined ? {} : { anchor: anchored },
|
|
14735
14732
|
actor
|
package/package.json
CHANGED
package/skills/dispatch/SKILL.md
CHANGED
|
@@ -36,7 +36,6 @@ dispatch_ask({
|
|
|
36
36
|
question,
|
|
37
37
|
options?: { label, description? }[],
|
|
38
38
|
multiple?,
|
|
39
|
-
custom?,
|
|
40
39
|
urgency?,
|
|
41
40
|
anchor?: { artifact, quote, occurrence? },
|
|
42
41
|
})
|
|
@@ -191,7 +190,6 @@ dispatch_ask({
|
|
|
191
190
|
description: "Narrows the release but requires another deployment test.",
|
|
192
191
|
},
|
|
193
192
|
],
|
|
194
|
-
custom: false,
|
|
195
193
|
urgency: "high",
|
|
196
194
|
anchor: {
|
|
197
195
|
artifact: "spec",
|