@rudderhq/agent-runtime-claude-local 0.7.3 → 0.7.4
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-claude-local",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.4",
|
|
4
4
|
"license": "SEE LICENSE IN LICENSE",
|
|
5
5
|
"homepage": "https://github.com/Undertone0809/rudder",
|
|
6
6
|
"bugs": {
|
|
@@ -69,7 +69,7 @@
|
|
|
69
69
|
"probe:quota:raw": "pnpm exec tsx src/cli/quota-probe.ts --json --raw-cli"
|
|
70
70
|
},
|
|
71
71
|
"dependencies": {
|
|
72
|
-
"@rudderhq/agent-runtime-utils": "0.7.
|
|
72
|
+
"@rudderhq/agent-runtime-utils": "0.7.4",
|
|
73
73
|
"picocolors": "^1.1.1"
|
|
74
74
|
},
|
|
75
75
|
"devDependencies": {
|
|
@@ -52,6 +52,11 @@ operating-practices guide for operating behavior:
|
|
|
52
52
|
| `rudder_agent_skills_create` | `rudder agent skills create [agent-id] --name <name> [--enable]` | Create an agent-private skill package under AGENT_HOME/skills. | yes | no | no | attached when available |
|
|
53
53
|
| `rudder_agent_skills_enable` | `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 |
|
|
54
54
|
| `rudder_agent_skills_sync` | `rudder agent skills sync <agent-id>` | Sync the desired enabled skill set for an agent. | yes | no | no | attached when available |
|
|
55
|
+
| `rudder_goal_list` | `rudder goal list [--lifecycle <draft|active|closed|all>] [--focus <true|false>] [--facet <facet>] [--limit <n>]` | Discover Goals owned by the authenticated Agent; defaults to active Goals and returns current progress, next step, and attention state. | no | required | required | no |
|
|
56
|
+
| `rudder_goal_context` | `rudder goal context <goal-id>` | Read the owned Goal agreement and current operating context before acting: contract revision, criteria, boundaries, progress, next step, attention, proposals, and recent feedback. | no | no | required | no |
|
|
57
|
+
| `rudder_goal_progress` | `rudder goal progress <goal-id> --summary <text> --evidence-refs <json> --idempotency-key <key>` | Record evidence-backed progress for a Goal owned by the authenticated Agent and attribute it to the current Run. | yes | no | required | required |
|
|
58
|
+
| `rudder_goal_change_propose` | `rudder goal change propose <goal-id> --contract-revision <n> --after-contract <json> --rationale <text> --idempotency-key <key>` | Propose a reviewable change to the current Goal contract when evidence shows its outcome, criteria, boundaries, or deadlines should change. | yes | no | required | required |
|
|
59
|
+
| `rudder_goal_result_propose` | `rudder goal result propose <goal-id> --contract-revision <n> --criteria <json> --evidence-refs <json> --risk-summary <text> --idempotency-key <key>` | Submit an evidence-backed Goal result for mandatory human acceptance without closing the Goal. | yes | no | required | required |
|
|
55
60
|
| `rudder_issue_get` | `rudder issue get <issue>` | Read a full issue by UUID or identifier. | no | no | no | no |
|
|
56
61
|
| `rudder_issue_list` | `rudder issue list --org-id <id>` | List issues with optional status, assignee, and project filters without requiring a search query. | no | required | no | no |
|
|
57
62
|
| `rudder_issue_search` | `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 |
|
|
@@ -64,7 +69,7 @@ operating-practices guide for operating behavior:
|
|
|
64
69
|
| `rudder_issue_review` | `rudder issue review <issue> --decision <decision> --comment-file <path>` | Record a structured reviewer decision with a required comment. | yes | no | no | attached when available |
|
|
65
70
|
| `rudder_issue_commit` | `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 |
|
|
66
71
|
| `rudder_issue_done` | `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 |
|
|
67
|
-
| `rudder_issue_block` | `rudder issue block <issue> --comment-file <path> [--image <path>]` |
|
|
72
|
+
| `rudder_issue_block` | `rudder issue block <issue> --comment-file <path> [--image <path>]` | Request human assistance after bounded recovery attempts; repeated matching claims are audited before the Issue becomes blocked. | yes | no | no | attached when available |
|
|
68
73
|
| `rudder_project_list` | `rudder project list --org-id <id>` | List projects in an organization. | no | required | no | no |
|
|
69
74
|
| `rudder_project_get` | `rudder project get <project-id-or-shortname> [--org-id <id>]` | Read one project by ID or shortname. | no | no | no | no |
|
|
70
75
|
| `rudder_project_create` | `rudder project create --org-id <id> --name <name>` | Create a project in the organization. | yes | required | no | attached when available |
|
|
@@ -147,7 +152,7 @@ Operating rules live in [ownership, checkout, and wake scope](operating-practice
|
|
|
147
152
|
|
|
148
153
|
- progress: `rudder issue comment <issue> --body-file <path> [--image <path>]`
|
|
149
154
|
- done: `rudder issue done <issue> --comment-file <path> [--image <path>]`
|
|
150
|
-
-
|
|
155
|
+
- assistance/block audit: `rudder issue block <issue> --comment-file <path> [--image <path>]`
|
|
151
156
|
|
|
152
157
|
Issue comment and close-out commands accept comment bodies only from files or stdin. For multiline Markdown, command names, code spans, code blocks, test summaries, or screenshot evidence, pass `--body-file <path>` or `--comment-file <path>`, or pass `-` to read the body from stdin.
|
|
153
158
|
|
|
@@ -83,12 +83,16 @@ because work is executable, durable, long-running, or reviewable.
|
|
|
83
83
|
## Review And Close-Out
|
|
84
84
|
|
|
85
85
|
Use the close-out signal matching the outcome: a progress comment when work
|
|
86
|
-
remains, done with completion evidence,
|
|
87
|
-
explicit handoff comment with an ownership change.
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
86
|
+
remains, done with completion evidence, a blocker claim after bounded recovery,
|
|
87
|
+
or an explicit handoff comment with an ownership change.
|
|
88
|
+
|
|
89
|
+
Complete the real task. If an action fails, investigate and try a bounded,
|
|
90
|
+
materially different recovery path before requesting human help. A blocker
|
|
91
|
+
claim must identify the blocker and exact human input or action required.
|
|
92
|
+
Rudder records the Assistance Request and audits the same blocker across
|
|
93
|
+
separate execution Runs; the first claim does not directly establish a blocked
|
|
94
|
+
Issue. Do not repeat a failed action inside one Run merely to increase the
|
|
95
|
+
audit count, and do not present partial work as complete.
|
|
92
96
|
|
|
93
97
|
A reviewer does not take over implementation unless explicitly asked. Ordinary
|
|
94
98
|
explicit reviewer work may happen in any issue status while preserving
|