@rudderhq/agent-runtime-codex-local 0.3.6-canary.4 → 0.3.6-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-codex-local",
|
|
3
|
-
"version": "0.3.6-canary.
|
|
3
|
+
"version": "0.3.6-canary.5",
|
|
4
4
|
"license": "SEE LICENSE IN LICENSE",
|
|
5
5
|
"homepage": "https://github.com/Undertone0809/rudder",
|
|
6
6
|
"bugs": {
|
|
@@ -68,7 +68,7 @@
|
|
|
68
68
|
"probe:quota": "pnpm exec tsx src/cli/quota-probe.ts --json"
|
|
69
69
|
},
|
|
70
70
|
"dependencies": {
|
|
71
|
-
"@rudderhq/agent-runtime-utils": "0.3.6-canary.
|
|
71
|
+
"@rudderhq/agent-runtime-utils": "0.3.6-canary.5",
|
|
72
72
|
"picocolors": "^1.1.1"
|
|
73
73
|
},
|
|
74
74
|
"devDependencies": {
|
package/skills/rudder/SKILL.md
CHANGED
|
@@ -5,7 +5,12 @@ description: Use Rudder control-plane best practices and CLI-backed references f
|
|
|
5
5
|
|
|
6
6
|
# Rudder Skill
|
|
7
7
|
|
|
8
|
-
This is the control-plane practice skill for agents working under Rudder.
|
|
8
|
+
This is the control-plane practice skill for agents working under Rudder. Rudder
|
|
9
|
+
work is not only "run a command"; it is a governed loop:
|
|
10
|
+
|
|
11
|
+
```text
|
|
12
|
+
Goal -> Issue -> Agent run -> Review -> Feedback -> Learning -> Better future runs
|
|
13
|
+
```
|
|
9
14
|
|
|
10
15
|
Runtime-owned heartbeat prompts provide the fixed heartbeat execution flow for
|
|
11
16
|
timed wakeups, assignment wakes, reviewer wakes, mention wakes, passive
|
|
@@ -63,8 +68,11 @@ rudder approval issues "$RUDDER_APPROVAL_ID" --json
|
|
|
63
68
|
rudder agent inbox --json
|
|
64
69
|
rudder issue context "<issue-id-or-identifier>" --json
|
|
65
70
|
rudder issue context "$RUDDER_TASK_ID" --wake-comment-id "$RUDDER_WAKE_COMMENT_ID" --json
|
|
71
|
+
rudder issue context "<issue-id-or-identifier>" --wake-comment-id "cmt_<uuid-prefix>" --json
|
|
66
72
|
rudder issue checkout "<issue-id-or-identifier>" --json
|
|
67
73
|
rudder issue comment "<issue-id-or-identifier>" --body-file "<path>" [--image "<path>"] --json
|
|
74
|
+
rudder issue comments get "<issue-id-or-identifier>" "cmt_<uuid-prefix>" --json
|
|
75
|
+
rudder issue comments list "<issue-id-or-identifier>" --after "cmt_<uuid-prefix>" --json
|
|
68
76
|
rudder issue done "<issue-id-or-identifier>" --comment-file "<path>" [--image "<path>"] --json
|
|
69
77
|
rudder issue block "<issue-id-or-identifier>" --comment-file "<path>" [--image "<path>"] --json
|
|
70
78
|
rudder issue review "<issue-id-or-identifier>" --decision approve --comment-file "<path>" --json
|
|
@@ -75,6 +83,12 @@ rudder issue create --org-id "$RUDDER_ORG_ID" ... --json
|
|
|
75
83
|
rudder user activity --user me --since today --json
|
|
76
84
|
```
|
|
77
85
|
|
|
86
|
+
Agent and issue-comment responses include `shortRef` when available. You may pass
|
|
87
|
+
`agt_<uuid-prefix>` to `rudder agent get` and `cmt_<uuid-prefix>` as
|
|
88
|
+
`--wake-comment-id`, `rudder issue comments get <issue> <comment>`, or
|
|
89
|
+
`rudder issue comments list <issue> --after <comment>`; use the full UUID if a
|
|
90
|
+
short ref is ambiguous within the issue.
|
|
91
|
+
|
|
78
92
|
Issue comment and close-out commands accept comment bodies only from files or
|
|
79
93
|
stdin. For multiline Markdown, command names, code spans, code blocks,
|
|
80
94
|
validation summaries, or screenshot evidence, write the body to a temporary
|
|
@@ -29,11 +29,11 @@ Direct API fallback is allowed for heartbeat close-out only when a required CLI
|
|
|
29
29
|
| `rudder agent skills sync <agent-id>` | Sync the desired enabled skill set for an agent. | yes | no | no | attached when available |
|
|
30
30
|
| `rudder issue get <issue>` | Read a full issue by UUID or identifier. | no | no | no | no |
|
|
31
31
|
| `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 |
|
|
32
|
-
| `rudder issue context <issue
|
|
32
|
+
| `rudder issue context <issue> [--wake-comment-id <comment-id-or-cmt-ref>]` | Read the compact heartbeat context for an issue; wake comments may be addressed by full id or cmt_<uuid-prefix>. | no | no | no | no |
|
|
33
33
|
| `rudder issue checkout <issue>` | Atomically checkout an issue for the current or specified agent. | yes | no | required | attached when available |
|
|
34
34
|
| `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 |
|
|
35
|
-
| `rudder issue comments list <issue
|
|
36
|
-
| `rudder issue comments get <issue> <comment-id>` | Read one issue comment by id. | no | no | no | no |
|
|
35
|
+
| `rudder issue comments list <issue> [--after <comment-id-or-cmt-ref>]` | List issue comments, optionally only newer comments after a full comment id or cmt_<uuid-prefix> with --after. | no | no | no | no |
|
|
36
|
+
| `rudder issue comments get <issue> <comment-id-or-cmt-ref>` | Read one issue comment by full id or cmt_<uuid-prefix> scoped to the issue. | no | no | no | no |
|
|
37
37
|
| `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 |
|
|
38
38
|
| `rudder issue review <issue> --decision <decision> --comment-file <path>` | Record a structured reviewer decision with a required comment. | yes | no | no | attached when available |
|
|
39
39
|
| `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 |
|
|
@@ -110,6 +110,8 @@ If an issue has a reviewer, moving it to `blocked` is also a reviewer handoff: t
|
|
|
110
110
|
|
|
111
111
|
Issue comment and close-out commands accept comment bodies only from files or stdin. 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.
|
|
112
112
|
|
|
113
|
+
Issue comment responses include `shortRef` when available. `rudder issue comments get <issue> <comment-id-or-cmt-ref>` accepts a full comment UUID or `cmt_<uuid-prefix>`, and `rudder issue comments list <issue> --after <comment-id-or-cmt-ref>` accepts the same forms for the pagination anchor. Use the full UUID when a short ref is ambiguous within the issue.
|
|
114
|
+
|
|
113
115
|
`--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.
|
|
114
116
|
|
|
115
117
|
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.
|
|
@@ -172,7 +174,7 @@ Do not rely on a free-form reject or accept comment as the review outcome. The s
|
|
|
172
174
|
## Compatibility Commands
|
|
173
175
|
|
|
174
176
|
- `rudder agent list --org-id <id>` — List agents for an organization.
|
|
175
|
-
- `rudder agent get <agent-id-or-shortname>` — Read one agent by id or
|
|
177
|
+
- `rudder agent get <agent-id-or-shortname-or-agt-ref>` — Read one agent by id, shortname, or agt_<uuid-prefix> short ref.
|
|
176
178
|
- `rudder agent hire --org-id <id> --payload <json>` — Create a new hire using the canonical hire workflow.
|
|
177
179
|
- `rudder agent config index` — Read the installed agent runtime configuration index.
|
|
178
180
|
- `rudder agent config doc <agent-runtime-type>` — Read adapter-specific configuration guidance for one runtime.
|