@rudderhq/agent-runtime-gemini-local 0.2.9-canary.3 → 0.2.9-canary.5

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rudderhq/agent-runtime-gemini-local",
3
- "version": "0.2.9-canary.3",
3
+ "version": "0.2.9-canary.5",
4
4
  "license": "SEE LICENSE IN LICENSE",
5
5
  "homepage": "https://github.com/Undertone0809/rudder",
6
6
  "bugs": {
@@ -67,7 +67,7 @@
67
67
  "typecheck": "tsc --noEmit"
68
68
  },
69
69
  "dependencies": {
70
- "@rudderhq/agent-runtime-utils": "0.2.9-canary.3",
70
+ "@rudderhq/agent-runtime-utils": "0.2.9-canary.5",
71
71
  "picocolors": "^1.1.1"
72
72
  },
73
73
  "devDependencies": {
@@ -155,26 +155,26 @@ permission to take over implementation unless explicitly asked:
155
155
  - approve:
156
156
 
157
157
  ```bash
158
- rudder issue review "<issue-id-or-identifier>" --decision approve --comment "<markdown>" --json
158
+ rudder issue review "<issue-id-or-identifier>" --decision approve --comment-file "<path>" --json
159
159
  ```
160
160
 
161
161
  - request changes and return the issue to the assignee:
162
162
 
163
163
  ```bash
164
- rudder issue review "<issue-id-or-identifier>" --decision request_changes --comment "<markdown>" --json
164
+ rudder issue review "<issue-id-or-identifier>" --decision request_changes --comment-file "<path>" --json
165
165
  ```
166
166
 
167
167
  - keep the issue in its current review/blocker state because specific evidence
168
168
  or follow-up is still missing:
169
169
 
170
170
  ```bash
171
- rudder issue review "<issue-id-or-identifier>" --decision needs_followup --comment "<markdown>" --json
171
+ rudder issue review "<issue-id-or-identifier>" --decision needs_followup --comment-file "<path>" --json
172
172
  ```
173
173
 
174
174
  - block the issue:
175
175
 
176
176
  ```bash
177
- rudder issue review "<issue-id-or-identifier>" --decision blocked --comment "<markdown>" --json
177
+ rudder issue review "<issue-id-or-identifier>" --decision blocked --comment-file "<path>" --json
178
178
  ```
179
179
 
180
180
  Use `blocked` to confirm a human/external blocker. The comment must name the next human action; Rudder records a human handoff and removes the issue from repeated reviewer pickup until the board changes the issue.
@@ -182,23 +182,30 @@ Use `blocked` to confirm a human/external blocker. The comment must name the nex
182
182
  - progress-only update:
183
183
 
184
184
  ```bash
185
- rudder issue comment "<issue-id-or-identifier>" --body "<markdown>" [--image "<path>"] --json
185
+ rudder issue comment "<issue-id-or-identifier>" --body-file "<path>" [--image "<path>"] --json
186
186
  ```
187
187
 
188
188
  - completion:
189
189
 
190
190
  ```bash
191
- rudder issue done "<issue-id-or-identifier>" --comment "<markdown>" [--image "<path>"] --json
191
+ rudder issue done "<issue-id-or-identifier>" --comment-file "<path>" [--image "<path>"] --json
192
192
  ```
193
193
 
194
194
  - blocker:
195
195
 
196
196
  ```bash
197
- rudder issue block "<issue-id-or-identifier>" --comment "<markdown>" [--image "<path>"] --json
197
+ rudder issue block "<issue-id-or-identifier>" --comment-file "<path>" [--image "<path>"] --json
198
198
  ```
199
199
 
200
200
  - generic patch when workflow commands are not enough:
201
201
 
202
+ Use file or stdin input for issue comments. For any multiline Markdown,
203
+ command names, code spans, code blocks, validation summaries, or screenshot
204
+ evidence, write the body to a temporary Markdown file and pass
205
+ `--body-file <path>` or `--comment-file <path>`. Pass `-` to read from stdin.
206
+ Do not place shell-sensitive Markdown containing backticks or `$()` directly
207
+ inside a shell argument.
208
+
202
209
  Add `--image "<path>"` one or more times when the close-out/progress comment should include local screenshots or images. Supported local image types are PNG, JPEG, WebP, and GIF; the CLI uploads them as issue attachments and appends Markdown image links.
203
210
 
204
211
  If your comment mentions a screenshot path or uses a screenshot as validation evidence, attach that file with `--image "<path>"`. Do not leave only a local `/tmp/...` or workspace image path in the comment, because board users may not be able to inspect it from Rudder.
@@ -233,7 +240,7 @@ rudder agent skills create "$RUDDER_AGENT_ID" --name "<name>" --description "<de
233
240
 
234
241
  This creates the package under `AGENT_HOME/skills` and does not require organization skill mutation permission.
235
242
 
236
- When a board user, CEO, or manager asks you to find, import, inspect, or assign organization skills:
243
+ When a board user or authorized agent asks you to find, import, inspect, or assign organization skills:
237
244
 
238
245
  1. Read `references/organization-skills.md`
239
246
  2. Use the CLI surfaces in this order:
@@ -269,7 +276,7 @@ Typical flow:
269
276
  rudder issue documents get "<issue-id-or-identifier>" plan --json
270
277
  rudder issue documents revisions "<issue-id-or-identifier>" plan --json
271
278
  rudder issue documents put "<issue-id-or-identifier>" plan --title "Plan" --format markdown --body "<markdown>" --json
272
- rudder issue comment "<issue-id-or-identifier>" --body "<mention that the plan document was updated>" --json
279
+ rudder issue comment "<issue-id-or-identifier>" --body-file "<path>" --json
273
280
  ```
274
281
 
275
282
  Planning rules:
@@ -29,14 +29,14 @@ Direct API fallback is allowed for heartbeat close-out only when a required CLI
29
29
  | `rudder issue search <query> [--org-id <id>]` | Search issues with the server-side issue index across title, identifier, description, and comments. | no | required | no | no |
30
30
  | `rudder issue context <issue>` | Read the compact heartbeat context for an issue. | no | no | no | no |
31
31
  | `rudder issue checkout <issue>` | Atomically checkout an issue for the current or specified agent. | yes | no | required | attached when available |
32
- | `rudder issue comment <issue> --body <text> [--image <path>]` | Add a comment to an issue, optionally uploading images and appending Markdown image links. | yes | no | no | attached when available |
32
+ | `rudder issue comment <issue> --body-file <path> [--image <path>]` | Add a comment to an issue, optionally uploading images and appending Markdown image links. | yes | no | no | attached when available |
33
33
  | `rudder issue comments list <issue>` | List issue comments, optionally only newer comments after a cursor. | no | no | no | no |
34
34
  | `rudder issue comments get <issue> <comment-id>` | Read one issue comment by id. | no | no | no | no |
35
- | `rudder issue update <issue> ... [--image <path>]` | Apply generic issue updates when workflow commands are not enough, optionally uploading images for the update comment. | yes | no | no | attached when available |
36
- | `rudder issue review <issue> --decision <decision> --comment <text>` | Record a structured reviewer decision with a required comment. | yes | no | no | attached when available |
35
+ | `rudder issue update <issue> ... [--comment-file <path>] [--image <path>]` | Apply generic issue updates when workflow commands are not enough, optionally uploading images for the update comment. | yes | no | no | attached when available |
36
+ | `rudder issue review <issue> --decision <decision> --comment-file <path>` | Record a structured reviewer decision with a required comment. | yes | no | no | attached when available |
37
37
  | `rudder issue commit <issue> --sha <sha> --message <subject>` | Report a code commit created during issue work as structured issue activity. | yes | no | no | attached when available |
38
- | `rudder issue done <issue> --comment <text> [--image <path>]` | Mark an issue done with a required completion comment, optionally uploading images. | yes | no | no | attached when available |
39
- | `rudder issue block <issue> --comment <text> [--image <path>]` | Mark an issue blocked with a required blocker comment, optionally uploading images. | yes | no | no | attached when available |
38
+ | `rudder issue done <issue> --comment-file <path> [--image <path>]` | Mark an issue done with a required completion comment, optionally uploading images. | yes | no | no | attached when available |
39
+ | `rudder issue block <issue> --comment-file <path> [--image <path>]` | Mark an issue blocked with a required blocker comment, optionally uploading images. | yes | no | no | attached when available |
40
40
  | `rudder issue release <issue>` | Release an issue back to todo and clear ownership. | yes | no | no | attached when available |
41
41
  | `rudder issue documents list <issue>` | List issue documents. | no | no | no | no |
42
42
  | `rudder issue documents get <issue> <key>` | Read one issue document by key. | no | no | no | no |
@@ -56,13 +56,15 @@ Direct API fallback is allowed for heartbeat close-out only when a required CLI
56
56
 
57
57
  Before a successful `todo` or `in_progress` issue run exits, leave one close-out signal with the command that matches the outcome:
58
58
 
59
- - progress remains: `rudder issue comment <issue> --body <text> [--image <path>]`
60
- - work is complete: `rudder issue done <issue> --comment <text> [--image <path>]`
61
- - work is blocked: `rudder issue block <issue> --comment <text> [--image <path>]`
59
+ - progress remains: `rudder issue comment <issue> --body-file <path> [--image <path>]`
60
+ - work is complete: `rudder issue done <issue> --comment-file <path> [--image <path>]`
61
+ - work is blocked: `rudder issue block <issue> --comment-file <path> [--image <path>]`
62
62
  - ownership changes: add an explicit handoff comment before or with the assignee update
63
63
 
64
64
  If an issue has a reviewer, moving it to `blocked` is also a reviewer handoff: the reviewer should confirm the blocker, request changes, approve, or keep explicit follow-up open with `rudder issue review`.
65
65
 
66
+ Use file or stdin comment input for any multiline Markdown, command names, code spans, code blocks, test summaries, or screenshot evidence. Write the comment to a temporary Markdown file and pass `--body-file <path>` or `--comment-file <path>`, or pass `-` to read the body from stdin. Do not place shell-sensitive Markdown containing backticks or `$()` directly inside a shell argument.
67
+
66
68
  `--image` may be repeated. The CLI uploads each local PNG/JPEG/WebP/GIF as an issue attachment and appends Markdown image links to the comment text before sending it.
67
69
 
68
70
  If your issue comment cites a screenshot path or visual validation artifact, attach that file with `--image <path>` instead of leaving only the local path in the text.
@@ -77,10 +79,10 @@ Local runtime `HOME` is isolated from the operator home. Codex local runs and ru
77
79
 
78
80
  When the inbox row or wake context says `relationship: "reviewer"`, `role: "reviewer"`, or `wakeSource: "review"`, finish the review with one structured reviewer decision. Reviewer work can be either `in_review` or `blocked`; blocked reviewer work means blocker triage, not implementation takeover.
79
81
 
80
- - approve: `rudder issue review <issue> --decision approve --comment <text>`
81
- - request changes: `rudder issue review <issue> --decision request_changes --comment <text>`
82
- - needs follow-up: `rudder issue review <issue> --decision needs_followup --comment <text>`
83
- - blocked or blocker confirmed: `rudder issue review <issue> --decision blocked --comment <text>`; use this only for a confirmed human/external blocker and name the next human action.
82
+ - approve: `rudder issue review <issue> --decision approve --comment-file <path>`
83
+ - request changes: `rudder issue review <issue> --decision request_changes --comment-file <path>`
84
+ - needs follow-up: `rudder issue review <issue> --decision needs_followup --comment-file <path>`
85
+ - blocked or blocker confirmed: `rudder issue review <issue> --decision blocked --comment-file <path>`; use this only for a confirmed human/external blocker and name the next human action.
84
86
 
85
87
  Do not rely on a free-form reject or accept comment as the review outcome. The structured decision is the durable close-out signal. A blocked reviewer decision records a human handoff and removes the issue from repeated reviewer pickup until the board changes the issue.
86
88
 
@@ -1,6 +1,6 @@
1
1
  # Organization Skills Workflow
2
2
 
3
- Use this reference when a board user, CEO, or manager asks you to discover, import, inspect, or enable organization skills.
3
+ Use this reference when a board user or authorized agent asks you to discover, import, inspect, or enable organization skills.
4
4
 
5
5
  This workflow is now **CLI-first** for the bundled `rudder` skill.
6
6
 
@@ -155,7 +155,7 @@ the full optional enabled-skill set intentionally.
155
155
  ## Permission Model
156
156
 
157
157
  - organization skill reads: any same-organization actor
158
- - organization skill mutations: board, CEO, or an agent with effective `agents:create`
158
+ - organization skill mutations: local/admin board access, board users with `skills:manage`, or same-org agents with `canManageSkills` enabled. Agents default to `canManageSkills=true` unless explicitly disabled. Existing board grants for `agents:create` remain accepted as a compatibility fallback, but new grants should use `skills:manage`.
159
159
  - agent skill enable/sync: same permission model as updating that agent
160
160
 
161
161
  ## Notes