fase(20): visual regression refactor

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
debian
2026-03-08 06:02:37 -04:00
parent 49e76c92b1
commit 94defee1f8
40 changed files with 1670 additions and 190 deletions

View File

@@ -1,7 +1,24 @@
ALLOWED_TOOLS="bash,write,edit,read,glob,grep,todoread,todowrite"
AUTO_APPROVE=true
MAX_LOOPS=200
MODEL="claude-sonnet-4-20250514"
# .ralphrc - Ralph project configuration for ABE
# Allow all bash commands including docker
ALLOW_ALL_BASH=true
# Project
PROJECT_NAME="abe"
PROJECT_TYPE="typescript"
# Claude Code
CLAUDE_CODE_CMD="claude"
CLAUDE_OUTPUT_FORMAT="json"
# Loop settings
MAX_CALLS_PER_HOUR=100
CLAUDE_TIMEOUT_MINUTES=120
# Session continuity (mantener contexto entre loops)
SESSION_CONTINUITY=true
SESSION_EXPIRY_HOURS=24
# Circuit breaker - auto-reset para operación continua
CB_AUTO_RESET=true
CB_COOLDOWN_MINUTES=0
# Tool permissions - "Bash" sin paréntesis permite TODOS los comandos bash
ALLOWED_TOOLS="Write,Read,Edit,MultiEdit,Glob,Grep,Bash,Bash(git *),Bash(npm *),Bash(npx *),Bash(node *)"