@sjawhar/opencode-legion-envoy 1.13.0 → 1.13.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.
@@ -13621,6 +13621,8 @@ var AskEditedEventPayloadSchema = object({
13621
13621
  var CommentEventPayloadSchema = object({
13622
13622
  id: string2().optional(),
13623
13623
  artifact_name: string2().optional(),
13624
+ project_key: string2().optional(),
13625
+ artifact_slug: string2().optional(),
13624
13626
  body: string2().optional(),
13625
13627
  reply_to: string2().nullish(),
13626
13628
  ask_id: string2().nullish(),
@@ -13821,7 +13823,7 @@ var dispatchToolSpecs = [
13821
13823
  quote: z.string().describe("Optional exact quoted document text.").optional(),
13822
13824
  occurrence: z.number({ int: true, min: 0 }).describe("Optional zero-based occurrence of quote.").optional(),
13823
13825
  body: z.string({ max: 2000 }).describe("Review comment, at most 2,000 characters."),
13824
- reply_to: z.string().describe("Optional comment id to reply to.").optional(),
13826
+ reply_to: z.string().describe("Full id of a comment to reply to; replying to any comment in a thread continues that " + "thread (an ask's clarification thread included).").optional(),
13825
13827
  reply_to_ask: z.string().describe("Optional ask id to reply to, threading this comment under that question. Mutually " + "exclusive with reply_to.").optional()
13826
13828
  }),
13827
13829
  validation: documentOwnerValidation(true)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sjawhar/opencode-legion-envoy",
3
- "version": "1.13.0",
3
+ "version": "1.13.1",
4
4
  "type": "module",
5
5
  "main": "dist/src/server.js",
6
6
  "exports": {
@@ -290,10 +290,10 @@ dispatch_comment({ issue?, project?, artifact?, ref?, quote?, occurrence?, body,
290
290
  It returns issue or project-document owner details plus `comment` and, for writes, `topic`.
291
291
  `ref` names the owner (an issue or project-document reference) in place of `issue`/`project`.
292
292
  `quote` requires `artifact`; omit both for a floating issue comment. A reply (`reply_to`/`reply_to_ask`)
293
- takes no `quote`; it belongs to its parent's anchor. Use `reply_to` to continue a comment thread at
294
- its root; a reply to a resolved thread reopens it. Use `reply_to_ask` to reply directly under a
295
- question asked with `dispatch_ask`. Comments are edited only by their author from the dashboard. A
296
- delivered `comment.created` event carries the comment `id`; reply to it with
293
+ takes no `quote`; it belongs to its parent's anchor. Reply to any comment in a thread; the server
294
+ keeps threads flat. A reply to a resolved thread reopens it. Use `reply_to_ask` to reply directly
295
+ under a question asked with `dispatch_ask`. Comments are edited only by their author from the
296
+ dashboard. A delivered `comment.created` event carries the comment `id`; reply to it with
297
297
  `dispatch_comment({ reply_to: <id> })`.
298
298
 
299
299
  Propose an exact replacement instead of describing it: