@rudderhq/agent-runtime-cursor-local 0.2.0-canary.15 → 0.2.0-canary.16
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-cursor-local",
|
|
3
|
-
"version": "0.2.0-canary.
|
|
3
|
+
"version": "0.2.0-canary.16",
|
|
4
4
|
"license": "SEE LICENSE IN LICENSE",
|
|
5
5
|
"homepage": "https://github.com/Undertone0809/rudder",
|
|
6
6
|
"bugs": {
|
|
@@ -51,7 +51,7 @@
|
|
|
51
51
|
"typecheck": "tsc --noEmit"
|
|
52
52
|
},
|
|
53
53
|
"dependencies": {
|
|
54
|
-
"@rudderhq/agent-runtime-utils": "0.2.0-canary.
|
|
54
|
+
"@rudderhq/agent-runtime-utils": "0.2.0-canary.16",
|
|
55
55
|
"picocolors": "^1.1.1"
|
|
56
56
|
},
|
|
57
57
|
"devDependencies": {
|
package/skills/rudder/SKILL.md
CHANGED
|
@@ -267,6 +267,7 @@ Planning rules:
|
|
|
267
267
|
- Above 80% spend, focus on critical work only.
|
|
268
268
|
- Use `rudder-create-agent` for hiring or new-agent creation workflows.
|
|
269
269
|
- If you make a git commit you MUST add `Co-Authored-By: Rudder <noreply@github.com/Undertone0809/rudder>` to the end of each commit message.
|
|
270
|
+
- Git commits must use an explicit safe identity. Rudder prepares isolated Codex homes and runtime worktrees with `user.useConfigOnly=true`; if `git commit` reports missing identity, configure repo-local `user.name` and `user.email` instead of bypassing the guard. Never accept `*@*.local` author or committer metadata.
|
|
270
271
|
|
|
271
272
|
## Comment Style (Required)
|
|
272
273
|
|
|
@@ -57,6 +57,10 @@ If an issue has a reviewer, moving it to `blocked` is also a reviewer handoff: t
|
|
|
57
57
|
|
|
58
58
|
If `RUDDER_WAKE_REASON=issue_passive_followup`, the run is close-out governance for the same issue. Inspect current issue state first, then leave a progress comment, completion, blocker, or explicit handoff.
|
|
59
59
|
|
|
60
|
+
## Git Identity Policy
|
|
61
|
+
|
|
62
|
+
Local runtime `HOME` is isolated from the operator home. Codex local runs and runtime-created git worktrees are prepared with `user.useConfigOnly=true` so missing identity fails fast instead of producing `*@*.local` commits. If Git reports missing author or committer identity, configure the repository explicitly with `git config user.name <name>` and `git config user.email <safe-email>`; do not unset the guard or accept auto-detected local-host metadata.
|
|
63
|
+
|
|
60
64
|
## Reviewer Close-Out Signals
|
|
61
65
|
|
|
62
66
|
When the inbox row or wake context says `relationship: "reviewer"`, `role: "reviewer"`, or `wakeSource: "review"`, finish the review with one structured reviewer decision. Reviewer work can be either `in_review` or `blocked`; blocked reviewer work means blocker triage, not implementation takeover.
|