@rudderhq/agent-runtime-codex-local 0.2.5-canary.5 → 0.2.5-canary.7
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.2.5-canary.
|
|
3
|
+
"version": "0.2.5-canary.7",
|
|
4
4
|
"license": "SEE LICENSE IN LICENSE",
|
|
5
5
|
"homepage": "https://github.com/Undertone0809/rudder",
|
|
6
6
|
"bugs": {
|
|
@@ -52,7 +52,7 @@
|
|
|
52
52
|
"probe:quota": "pnpm exec tsx src/cli/quota-probe.ts --json"
|
|
53
53
|
},
|
|
54
54
|
"dependencies": {
|
|
55
|
-
"@rudderhq/agent-runtime-utils": "0.2.5-canary.
|
|
55
|
+
"@rudderhq/agent-runtime-utils": "0.2.5-canary.7",
|
|
56
56
|
"picocolors": "^1.1.1"
|
|
57
57
|
},
|
|
58
58
|
"devDependencies": {
|
package/skills/rudder/SKILL.md
CHANGED
|
@@ -210,11 +210,17 @@ rudder issue update "<issue-id-or-identifier>" ... --json
|
|
|
210
210
|
**Step 9 — Delegate if needed.** Create subtasks with the generic create surface only when the workflow really needs a new task:
|
|
211
211
|
|
|
212
212
|
```bash
|
|
213
|
-
rudder issue create --org-id "$RUDDER_ORG_ID" ... --json
|
|
213
|
+
rudder issue create --org-id "$RUDDER_ORG_ID" ... [--label-id "<label-id>"] [--label "<label-name>"] --json
|
|
214
214
|
```
|
|
215
215
|
|
|
216
216
|
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.
|
|
217
217
|
|
|
218
|
+
When the organization has a mature issue label taxonomy, agent-created issues must choose at least one label. List the available labels first when you are not sure which one applies:
|
|
219
|
+
|
|
220
|
+
```bash
|
|
221
|
+
rudder issue labels list --org-id "$RUDDER_ORG_ID" --json
|
|
222
|
+
```
|
|
223
|
+
|
|
218
224
|
Always set `parentId`. Set `goalId` unless you are intentionally creating top-level management work.
|
|
219
225
|
|
|
220
226
|
## Organization Skills Workflow
|
|
@@ -94,6 +94,7 @@ Do not rely on a free-form reject or accept comment as the review outcome. The s
|
|
|
94
94
|
- `rudder agent config list --org-id <id>` — List redacted agent configuration snapshots for an organization.
|
|
95
95
|
- `rudder agent config get <agent-id-or-shortname>` — Read one redacted agent configuration snapshot by id or shortname.
|
|
96
96
|
- `rudder agent icons` — List legacy named agent icons for compatibility/debugging; normal create and hire payloads should omit icon.
|
|
97
|
-
- `rudder issue create --org-id <id>
|
|
97
|
+
- `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.
|
|
98
|
+
- `rudder issue labels list --org-id <id>` — List organization issue labels available for issue creation.
|
|
98
99
|
- `rudder approval create --org-id <id> --type <type> --payload <json>` — Create a new approval request.
|
|
99
100
|
- `rudder approval resubmit <approval-id> [--payload <json>]` — Resubmit a revision-requested approval, optionally with updated payload.
|