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.
- package/bin/golem +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 --
|
|
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 --
|
|
498
|
+
cat "$prompt_file" | claude -p --dangerously-skip-permissions
|
|
499
499
|
|
|
500
500
|
exit_code=$?
|
|
501
501
|
if [[ $exit_code -ne 0 ]]; then
|