@rudderhq/agent-runtime-gemini-local 0.2.0-canary.26 → 0.2.0-canary.28

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.0-canary.26",
3
+ "version": "0.2.0-canary.28",
4
4
  "license": "SEE LICENSE IN LICENSE",
5
5
  "homepage": "https://github.com/Undertone0809/rudder",
6
6
  "bugs": {
@@ -51,7 +51,7 @@
51
51
  "typecheck": "tsc --noEmit"
52
52
  },
53
53
  "dependencies": {
54
- "@rudderhq/agent-runtime-utils": "0.2.0-canary.26",
54
+ "@rudderhq/agent-runtime-utils": "0.2.0-canary.28",
55
55
  "picocolors": "^1.1.1"
56
56
  },
57
57
  "devDependencies": {
@@ -175,6 +175,8 @@ rudder issue review "<issue-id-or-identifier>" --decision needs_followup --comme
175
175
  rudder issue review "<issue-id-or-identifier>" --decision blocked --comment "<markdown>" --json
176
176
  ```
177
177
 
178
+ 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.
179
+
178
180
  - progress-only update:
179
181
 
180
182
  ```bash
@@ -197,6 +199,8 @@ rudder issue block "<issue-id-or-identifier>" --comment "<markdown>" [--image "<
197
199
 
198
200
  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.
199
201
 
202
+ 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.
203
+
200
204
  ```bash
201
205
  rudder issue update "<issue-id-or-identifier>" ... --json
202
206
  ```
@@ -207,6 +211,8 @@ rudder issue update "<issue-id-or-identifier>" ... --json
207
211
  rudder issue create --org-id "$RUDDER_ORG_ID" ... --json
208
212
  ```
209
213
 
214
+ When you create an issue as an authenticated agent without an assignee, Rudder assigns it to you by default. Pass an explicit assignee only when the new issue should belong to someone else.
215
+
210
216
  Always set `parentId`. Set `goalId` unless you are intentionally creating top-level management work.
211
217
 
212
218
  ## Organization Skills Workflow
@@ -223,9 +229,18 @@ rudder skill import --org-id "$RUDDER_ORG_ID" --source "<source>" --json
223
229
  rudder skill list --org-id "$RUDDER_ORG_ID" --json
224
230
  rudder skill get "<skill-id>" --org-id "$RUDDER_ORG_ID" --json
225
231
  rudder skill file "<skill-id>" --org-id "$RUDDER_ORG_ID" --path SKILL.md --json
232
+ rudder agent skills enable "<agent-id>" "<selection-ref>" --json
226
233
  rudder agent skills sync "<agent-id>" --desired-skills "<csv>" --json
227
234
  ```
228
235
 
236
+ Use `skills enable` when adding one or more skills because it preserves the
237
+ agent's existing enabled selections. Use `skills sync` only when you intend to
238
+ replace the full optional enabled-skill set.
239
+
240
+ After creating or copying a skill under `AGENT_HOME/skills/<slug>/`, check the
241
+ agent's Skills snapshot. If the skill is installed but not enabled, say:
242
+ installed but not enabled; future runs will not load it until enabled.
243
+
229
244
  Do not fall back to raw `curl` for this workflow in local adapters or packaged desktop.
230
245
 
231
246
  ## Planning And Issue Documents
@@ -16,6 +16,7 @@ Stable CLI contract for agents using the bundled `rudder` skill. Prefer these co
16
16
  | `rudder agent me` | Show the authenticated agent identity, budget, and chain of command. | no | no | no | no |
17
17
  | `rudder agent inbox` | List the compact assignee and reviewer work inbox for the authenticated agent. | no | no | no | no |
18
18
  | `rudder agent capabilities` | List the stable Rudder agent command contract. | no | no | no | no |
19
+ | `rudder agent skills enable <agent-id> <selection-ref...>` | Add skill selections to an agent without replacing existing enabled skills. | yes | no | no | attached when available |
19
20
  | `rudder agent skills sync <agent-id>` | Sync the desired enabled skill set for an agent. | yes | no | no | attached when available |
20
21
  | `rudder issue get <issue>` | Read a full issue by UUID or identifier. | no | no | no | no |
21
22
  | `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 |
@@ -26,6 +27,7 @@ Stable CLI contract for agents using the bundled `rudder` skill. Prefer these co
26
27
  | `rudder issue comments get <issue> <comment-id>` | Read one issue comment by id. | no | no | no | no |
27
28
  | `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 |
28
29
  | `rudder issue review <issue> --decision <decision> --comment <text>` | Record a structured reviewer decision with a required comment. | yes | no | no | attached when available |
30
+ | `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 |
29
31
  | `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 |
30
32
  | `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 |
31
33
  | `rudder issue release <issue>` | Release an issue back to todo and clear ownership. | yes | no | no | attached when available |
@@ -56,6 +58,8 @@ If an issue has a reviewer, moving it to `blocked` is also a reviewer handoff: t
56
58
 
57
59
  `--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.
58
60
 
61
+ 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.
62
+
59
63
  If `RUDDER_WAKE_REASON=issue_passive_followup`, the run is close-out governance for the same issue. Inspect current issue state first, then leave a progress comment, completion, blocker, or explicit handoff.
60
64
 
61
65
  ## Git Identity Policy
@@ -69,9 +73,9 @@ When the inbox row or wake context says `relationship: "reviewer"`, `role: "revi
69
73
  - approve: `rudder issue review <issue> --decision approve --comment <text>`
70
74
  - request changes: `rudder issue review <issue> --decision request_changes --comment <text>`
71
75
  - needs follow-up: `rudder issue review <issue> --decision needs_followup --comment <text>`
72
- - blocked or blocker confirmed: `rudder issue review <issue> --decision blocked --comment <text>`
76
+ - 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.
73
77
 
74
- Do not rely on a free-form reject or accept comment as the review outcome. The structured decision is the durable close-out signal.
78
+ 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.
75
79
 
76
80
  ## Compatibility Commands
77
81
 
@@ -83,6 +87,6 @@ Do not rely on a free-form reject or accept comment as the review outcome. The s
83
87
  - `rudder agent config list --org-id <id>` — List redacted agent configuration snapshots for an organization.
84
88
  - `rudder agent config get <agent-id-or-shortname>` — Read one redacted agent configuration snapshot by id or shortname.
85
89
  - `rudder agent icons` — List allowed agent icon names for create and hire payloads.
86
- - `rudder issue create --org-id <id> ...` — Create a new issue or subtask with the generic issue surface.
90
+ - `rudder issue create --org-id <id> ...` — Create a new issue or subtask with the generic issue surface; agent-created issues default to the creating agent when no assignee is supplied.
87
91
  - `rudder approval create --org-id <id> --type <type> --payload <json>` — Create a new approval request.
88
92
  - `rudder approval resubmit <approval-id> [--payload <json>]` — Resubmit a revision-requested approval, optionally with updated payload.
@@ -8,7 +8,7 @@ This workflow is now **CLI-first** for the bundled `rudder` skill.
8
8
 
9
9
  1. import or scan the skill into the organization library
10
10
  2. inspect the imported skill if needed
11
- 3. sync the desired enabled skills onto the target agent
11
+ 3. enable the desired skills on the target agent
12
12
 
13
13
  ## Core CLI Surface
14
14
 
@@ -19,6 +19,7 @@ rudder skill file "<skill-id>" --org-id "$RUDDER_ORG_ID" --path SKILL.md --json
19
19
  rudder skill import --org-id "$RUDDER_ORG_ID" --source "<source>" --json
20
20
  rudder skill scan-local --org-id "$RUDDER_ORG_ID" --roots "<csv>" --json
21
21
  rudder skill scan-projects --org-id "$RUDDER_ORG_ID" --project-ids "<csv>" --workspace-ids "<csv>" --json
22
+ rudder agent skills enable "<agent-id>" "<selection-ref>" --json
22
23
  rudder agent skills sync "<agent-id>" --desired-skills "<csv>" --json
23
24
  ```
24
25
 
@@ -124,26 +125,30 @@ rudder skill file "<skill-id>" --org-id "$RUDDER_ORG_ID" --path references/notes
124
125
  - exact slug when it is unique in the organization
125
126
 
126
127
  ```bash
127
- rudder agent skills sync \
128
+ rudder agent skills enable \
128
129
  "<agent-id>" \
129
- --desired-skills "vercel-labs/agent-browser/agent-browser" \
130
+ "vercel-labs/agent-browser/agent-browser" \
130
131
  --json
131
132
  ```
132
133
 
133
134
  For multiple skills:
134
135
 
135
136
  ```bash
136
- rudder agent skills sync \
137
+ rudder agent skills enable \
137
138
  "<agent-id>" \
138
- --desired-skills "agent-browser,design-md" \
139
+ "agent-browser" "design-md" \
139
140
  --json
140
141
  ```
141
142
 
143
+ `rudder agent skills enable` is additive and preserves existing enabled
144
+ selections. Use `rudder agent skills sync --desired-skills` only when replacing
145
+ the full optional enabled-skill set intentionally.
146
+
142
147
  ## Permission Model
143
148
 
144
149
  - organization skill reads: any same-organization actor
145
150
  - organization skill mutations: board, CEO, or an agent with effective `agents:create`
146
- - agent skill sync: same permission model as updating that agent
151
+ - agent skill enable/sync: same permission model as updating that agent
147
152
 
148
153
  ## Notes
149
154
 
@@ -151,5 +156,5 @@ rudder agent skills sync \
151
156
  - New organizations also seed optional community preset skills into the organization library. They stay organization-managed and default-off for agents.
152
157
  - If a skill reference is missing or ambiguous, Rudder returns `422`.
153
158
  - Prefer linking back to the relevant issue, approval, and agent when commenting about skill changes.
154
- - This document only covers library import/inspect/sync.
159
+ - This document only covers library import/inspect/enable/sync.
155
160
  - Hire and create flows now live on the CLI-first `rudder-create-agent` path.
@@ -129,6 +129,7 @@ Post-hire adjustments use the normal agent and skill surfaces:
129
129
 
130
130
  ```sh
131
131
  rudder agent get "<agent-id-or-shortname>" --org-id "$RUDDER_ORG_ID" --json
132
+ rudder agent skills enable "<agent-id>" "<selection-ref>" --json
132
133
  rudder agent skills sync "<agent-id>" --desired-skills "<csv>" --json
133
134
  rudder agent local-cli "<agent-id-or-shortname>" --org-id "$RUDDER_ORG_ID" --json
134
135
  ```