@rudderhq/agent-runtime-gemini-local 0.3.4-canary.21 → 0.3.4-canary.22

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.3.4-canary.21",
3
+ "version": "0.3.4-canary.22",
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.3.4-canary.21",
70
+ "@rudderhq/agent-runtime-utils": "0.3.4-canary.22",
71
71
  "picocolors": "^1.1.1"
72
72
  },
73
73
  "devDependencies": {
@@ -318,7 +318,7 @@ Planning rules:
318
318
  - reassign back to the requester if that is the expected workflow
319
319
  - when you create or update a durable Library file, always include a user-visible Markdown link to that file in your final chat reply or issue comment
320
320
  - when you reference the plan in comments, use the `markdownLink` returned by `rudder library file ref ... --json`
321
- - `rudder issue documents ...` is a legacy compatibility surface for older DB-backed issue documents. Read it when a prompt explicitly points to an existing legacy issue document; do not use it for new durable files.
321
+ - `rudder issue documents ...` has been retired. Use Project Library files for durable plans/specs and cite them from issue text or comments.
322
322
 
323
323
  ## Critical Rules
324
324
 
@@ -365,7 +365,6 @@ Use concise markdown with:
365
365
  - issues: `/<prefix>/issues/<issue-identifier>`
366
366
  - issue comments: `/<prefix>/issues/<issue-identifier>#comment-<comment-id>`
367
367
  - Library files: `/<prefix>/library?path=<url-encoded-relative-path>`
368
- - legacy issue documents: `/<prefix>/issues/<issue-identifier>#document-<document-key>`
369
368
  - agents: `/<prefix>/agents/<agent-url-key>`
370
369
  - projects: `/<prefix>/projects/<project-url-key>`
371
370
  - approvals: `/<prefix>/messenger/approvals/<approval-id>`
@@ -108,15 +108,6 @@ requests.
108
108
 
109
109
  Use the incremental `after` form when you already know the thread.
110
110
 
111
- ### Documents
112
-
113
- - `GET /api/issues/:issueId/documents`
114
- - `GET /api/issues/:issueId/documents/:key`
115
- - `PUT /api/issues/:issueId/documents/:key`
116
- - `GET /api/issues/:issueId/documents/:key/revisions`
117
-
118
- When updating an existing document, send the latest `baseRevisionId` or the API will reject concurrent overwrites.
119
-
120
111
  ### Status and ownership mutations
121
112
 
122
113
  - `PATCH /api/issues/:issueId`
@@ -39,9 +39,6 @@ Direct API fallback is allowed for heartbeat close-out only when a required CLI
39
39
  | `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 |
40
40
  | `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 |
41
41
  | `rudder issue release <issue>` | Release an issue back to todo and clear ownership. | yes | no | no | attached when available |
42
- | `rudder issue documents list <issue>` | List issue documents. | no | no | no | no |
43
- | `rudder issue documents get <issue> <key>` | Read one issue document by key. | no | no | no | no |
44
- | `rudder issue documents revisions <issue> <key>` | List revisions for an issue document. | no | no | no | no |
45
42
  | `rudder project list --org-id <id>` | List projects in an organization. | no | required | no | no |
46
43
  | `rudder project get <project-id-or-shortname> [--org-id <id>]` | Read one project by ID or shortname. | no | no | no | no |
47
44
  | `rudder project create --org-id <id> --name <name>` | Create a project in the organization. | yes | required | no | attached when available |
@@ -166,7 +163,6 @@ Do not rely on a free-form reject or accept comment as the review outcome. The s
166
163
  - `rudder agent config list --org-id <id>` — List redacted agent configuration snapshots for an organization.
167
164
  - `rudder agent config get <agent-id-or-shortname>` — Read one redacted agent configuration snapshot by id or shortname.
168
165
  - `rudder agent icons` — List legacy named agent icons for compatibility/debugging; normal create and hire payloads should omit icon.
169
- - `rudder issue documents put <issue> <key> --body-file <path>` — Legacy create or update of a DB-backed issue document; prefer local project Library files under `$RUDDER_PROJECT_LIBRARY_ROOT` for durable project files.
170
166
  - `rudder issue create --org-id <id> ... [--label-id <id> ...] [--label <name> ...]` — Create a new issue or subtask with the generic issue surface; agent-created issues default to the creating agent when no assignee is supplied.
171
167
  - `rudder issue labels list --org-id <id>` — List organization issue labels available for issue creation.
172
168
  - `rudder approval create --org-id <id> --type <type> --payload <json>` — Create a new approval request.