Skip to content

Commit 2a954a1

Browse files
committed
⚙️ add sandbox warning to ralph make target
1 parent 78cb871 commit 2a954a1

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

Makefile

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,11 @@ docs: ## Run docs with bun
123123
@echo "$(GREEN)✅ Docs run completed.$(RESET)"
124124

125125
ralph: check_jq ## Run Ralph agent loop
126-
@echo "$(GREEN)🤖Starting Ralph Agent...$(RESET)"
126+
@echo "$(RED)⚠️ WARNING: Ralph is an autonomous agent that can modify your codebase.$(RESET)"
127+
@echo "$(RED)⚠️ It is HIGHLY RECOMMENDED to run Ralph in a sandboxed environment.$(RESET)"
128+
@echo "$(YELLOW)Press Ctrl+C to abort, or wait 3 seconds to continue...$(RESET)"
129+
@sleep 3
130+
@echo "$(GREEN)🤖 Starting Ralph Agent...$(RESET)"
127131
@chmod +x scripts/ralph.sh
128132
@./scripts/ralph.sh $(ARGS)
129133
@echo "$(GREEN)✅ Ralph Agent finished.$(RESET)"

0 commit comments

Comments
 (0)