Getting Started
Get CatalystRL skills running in your Claude Code environment in under 5 minutes.
Prerequisites
- 1.Claude Code CLI installed and authenticated
- 2.Node.js 18+ for script execution
- 3.Git for repository operations
Quick Install
Run the setup script to install CatalystRL:
curl -fsSL https://raw.githubusercontent.com/tomcatalyst0/catalystrl-claude/main/setup.sh | bashSee the full installation guide for manual setup and configuration options.
Run Your First Skill
Try the /commit skill to commit changes across repositories:
In Claude Code, type:
/commitThe skill will:
- Scan your repositories for changes
- Stage modified files
- Generate a commit message
- Create the commit with Co-Authored-By attribution
- Optionally push to remote
Core Skills Overview
/bootstrap|Session LifecycleInitialize your session by loading memory, starting services, and restoring context.
/commit|Git OperationsCommit and push changes across multiple repositories with safety checks.
/remember|Memory PersistencePersist important context across sessions for continuity.
/shutdown|Session EndGracefully end your session with memory persistence and cleanup.
Understanding Skill Output
CatalystRL skills provide structured output with:
- Status indicators - Success, warning, or error states
- Step-by-step progress - See what the skill is doing
- Telemetry events - Track operations for debugging
Next Steps
Now that you have CatalystRL running, explore the architecture concepts or learn how to build your own skills.