golem-cc 0.1.25 → 0.1.26

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 +3 -0
  2. package/package.json +1 -1
package/bin/golem CHANGED
@@ -493,6 +493,9 @@ run_build_loop() {
493
493
  local max_iterations="$1"
494
494
  local simplify="$2"
495
495
 
496
+ # Handle Ctrl+C gracefully
497
+ trap 'echo ""; echo -e "${YELLOW} Build interrupted by user${NC}"; log_event "BUILD_INTERRUPTED" "User cancelled"; exit 130' INT
498
+
496
499
  print_banner
497
500
 
498
501
  # Verify prerequisites
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "golem-cc",
3
- "version": "0.1.25",
3
+ "version": "0.1.26",
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"