@rudderhq/agent-runtime-claude-local 0.7.3 → 0.7.4-canary.0
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-canary.0",
|
|
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-canary.0",
|
|
73
73
|
"picocolors": "^1.1.1"
|
|
74
74
|
},
|
|
75
75
|
"devDependencies": {
|
|
@@ -64,7 +64,7 @@ operating-practices guide for operating behavior:
|
|
|
64
64
|
| `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
65
|
| `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
66
|
| `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>]` |
|
|
67
|
+
| `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
68
|
| `rudder_project_list` | `rudder project list --org-id <id>` | List projects in an organization. | no | required | no | no |
|
|
69
69
|
| `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
70
|
| `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 +147,7 @@ Operating rules live in [ownership, checkout, and wake scope](operating-practice
|
|
|
147
147
|
|
|
148
148
|
- progress: `rudder issue comment <issue> --body-file <path> [--image <path>]`
|
|
149
149
|
- done: `rudder issue done <issue> --comment-file <path> [--image <path>]`
|
|
150
|
-
-
|
|
150
|
+
- assistance/block audit: `rudder issue block <issue> --comment-file <path> [--image <path>]`
|
|
151
151
|
|
|
152
152
|
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
153
|
|
|
@@ -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
|