golem-cc 0.1.14 → 0.1.15

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.
Files changed (2) hide show
  1. package/bin/golem +2 -2
  2. package/package.json +1 -1
package/bin/golem CHANGED
@@ -425,7 +425,7 @@ IMPLEMENT_HEADER
425
425
  cat IMPLEMENTATION_PLAN.md >> "$prompt_file"
426
426
 
427
427
  # Run implementation (Ralph pattern: cat PROMPT | claude -p)
428
- cat "$prompt_file" | claude -p --allowedTools "Read,Write,Edit,Glob,Grep,Bash"
428
+ cat "$prompt_file" | claude -p --dangerously-skip-permissions
429
429
 
430
430
  local exit_code=$?
431
431
  if [[ $exit_code -ne 0 ]]; then
@@ -495,7 +495,7 @@ NO_SIMPLIFY
495
495
  fi
496
496
 
497
497
  # Run simplify + commit (Ralph pattern)
498
- cat "$prompt_file" | claude -p --allowedTools "Read,Write,Edit,Glob,Grep,Bash"
498
+ cat "$prompt_file" | claude -p --dangerously-skip-permissions
499
499
 
500
500
  exit_code=$?
501
501
  if [[ $exit_code -ne 0 ]]; then
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "golem-cc",
3
- "version": "0.1.14",
3
+ "version": "0.1.15",
4
4
  "description": "Autonomous coding loop with Claude - structured specs, ralph loop execution, code simplification",
5
5
  "bin": {
6
6
  "golem-cc": "./bin/install.cjs"