All skills
Skillintermediate

User Guide

Practical guides for using Ralph Orchestrator effectively.

Claude Code Knowledge Pack7/10/2026

Overview

User Guide

Practical guides for using Ralph Orchestrator effectively.

In This Section

GuideDescription
ConfigurationFull core config reference
PresetsBuilt-in hat collections
CLI ReferenceCommand-line interface
BackendsSupported AI backends
Writing PromptsPrompt engineering tips
Cost ManagementControlling API costs
Telegram IntegrationHuman-in-the-loop via Telegram

Quick Links

Getting Started

  • Initialize core config: ralph init --backend claude
  • List built-in hat collections: ralph init --list-presets
  • Run with hats: ralph run -c ralph.yml -H builtin:code-assist

Running Ralph

  • Basic run (core only): ralph run -c ralph.yml
  • With hats: ralph run -c ralph.yml -H builtin:debug
  • With inline prompt: ralph run -c ralph.yml -H builtin:code-assist -p "Implement feature X"
  • Headless mode: ralph run --no-tui
  • Resume session: ralph run --continue

Monitoring

  • View event history: ralph events
  • Check memories: ralph tools memory list
  • Check tasks: ralph tools task list

Choosing a Workflow

Your SituationRecommended Approach
Simple taskCore only (no hats)
Implementation work-H builtin:code-assist
Bug investigation-H builtin:debug
Code review-H builtin:review
Exploration and architecture mapping-H builtin:research

Common Tasks

Start a New Feature

ralph init --backend claude
ralph run -c ralph.yml -H builtin:code-assist -p "Add OAuth login"

Debug an Issue

ralph run -c ralph.yml -H builtin:debug -p "Investigate why user authentication fails on mobile"

Review Code

ralph run -c ralph.yml -H builtin:review -p "Review the changes in src/api/"

Next Steps

Start with Configuration to understand all options.