ralph-teams 1.0.13 → 1.0.14

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.
@@ -0,0 +1,31 @@
1
+ {
2
+ "permissions": {
3
+ "allow": [
4
+ "Bash(git init:*)",
5
+ "Bash(jq:*)",
6
+ "Bash(./ralph.sh prd.json 2>&1 | head -30)",
7
+ "Bash(ls:*)",
8
+ "Bash(kill:*)",
9
+ "Bash(cat:*)",
10
+ "Bash(claude:*)",
11
+ "Bash(pkill:*)",
12
+ "mcp__Multi-CLI__List-Codex-Models",
13
+ "mcp__Multi-CLI__Ask-Codex",
14
+ "Bash(wc:*)",
15
+ "Bash(chmod:*)",
16
+ "Bash(gh copilot:*)",
17
+ "WebSearch",
18
+ "WebFetch(domain:docs.github.com)",
19
+ "WebFetch(domain:deepwiki.com)",
20
+ "Bash(ralph-claude:*)",
21
+ "Bash(npm run:*)",
22
+ "Bash(code:*)",
23
+ "Bash(npm link:*)",
24
+ "Bash(ralph-teams:*)",
25
+ "Bash(rjq validate:*)",
26
+ "Bash(rjq extract-stream-text:*)",
27
+ "Bash(rjq read:*)",
28
+ "Bash(npm test:*)"
29
+ ]
30
+ }
31
+ }
package/README.md CHANGED
@@ -558,7 +558,7 @@ npm install -g ralph-teams
558
558
 
559
559
  ### Ralph needs to switch branches but the worktree is dirty
560
560
 
561
- Ralph may prompt to auto-commit current changes before creating or switching to the loop branch. If you do not want that commit, clean up the worktree yourself before starting the run.
561
+ Ralph auto-commits current changes before creating or switching to the loop branch. If you do not want that commit, clean up the worktree yourself before starting the run.
562
562
 
563
563
  ## Development
564
564
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ralph-teams",
3
- "version": "1.0.13",
3
+ "version": "1.0.14",
4
4
  "description": "CLI tool for Ralph Teams",
5
5
  "bin": {
6
6
  "ralph-teams": "dist/index.js",
package/ralph.sh CHANGED
@@ -407,20 +407,8 @@ prompt_to_commit_dirty_worktree() {
407
407
  echo "Worktree has uncommitted changes and Ralph needs to create or switch to branch '$target_branch'."
408
408
  echo "Ralph will now stage and commit all current changes before the run."
409
409
  git status --short
410
- printf "Proceed with auto-commit before continuing? [y/N]: "
411
-
412
- local response
413
- IFS= read -r response || response=""
414
- case "$response" in
415
- y|Y|yes|YES)
416
- git add -A
417
- git commit -m "chore: auto-commit changes before ralph run"
418
- ;;
419
- *)
420
- echo "Aborted: user declined auto-commit before run."
421
- exit 1
422
- ;;
423
- esac
410
+ git add -A
411
+ git commit -m "chore: auto-commit changes before ralph run"
424
412
  }
425
413
 
426
414
  prompt_to_remove_stale_worktree_dir() {