ralph-claude-code/templates/AGENT.md
frankbria 48bd008701 Fix create_files.sh syntax errors and complete Ralph implementation
- Fix nested EOF heredoc conflicts in update_status() and show_help() functions
- Use unique delimiters (STATUSEOF, HELPEOF) to avoid conflicts
- Complete Ralph for Claude Code implementation with all components:
  - ralph_loop.sh: Main autonomous development loop with rate limiting
  - ralph_monitor.sh: Live monitoring dashboard
  - setup.sh: Project initialization script
  - templates/: Template files for new projects
  - .gitignore: Comprehensive ignore rules

All scripts are now executable and syntax-validated.
2025-08-27 09:15:00 -07:00

658 B

Agent Build Instructions

Project Setup

# Install dependencies (example for Node.js project)
npm install

# Or for Python project
pip install -r requirements.txt

# Or for Rust project  
cargo build

Running Tests

# Node.js
npm test

# Python
pytest

# Rust
cargo test

Build Commands

# Production build
npm run build
# or
cargo build --release

Development Server

# Start development server
npm run dev
# or
cargo run

Key Learnings

  • Update this section when you learn new build optimizations
  • Document any gotchas or special setup requirements
  • Keep track of the fastest test/build cycle