ralph-init
# ralph-init
What this skill does
# ralph-init
Initialize Ralph in the current project.
## What This Does
This skill sets up Ralph's autonomous development environment in your project by creating the necessary directory structure, copying templates, and configuring tracking files.
## Initialization Steps
When you run `/ralph:init`, Claude will:
### 1. Create Directory Structure
```bash
mkdir -p docs/ai/ralph
```
Creates the Ralph working directory in your project where all Ralph-related files will live.
### 2. Copy Templates
Copy all 3 templates from the plugin to your project:
```bash
# Get the plugin path
PLUGIN_PATH="$(dirname "$(dirname "$(dirname "$0")")")"
# Copy templates and remove .template extension
cp "$PLUGIN_PATH/templates/PROMPT.md.template" docs/ai/ralph/PROMPT.md
cp "$PLUGIN_PATH/templates/fix_plan.md.template" docs/ai/ralph/fix_plan.md
cp "$PLUGIN_PATH/templates/AGENTS.md.template" docs/ai/ralph/AGENTS.md
```
**Templates copied:**
- `PROMPT.md.template` → `docs/ai/ralph/PROMPT.md` - Ralph's iteration instructions
- `fix_plan.md.template` → `docs/ai/ralph/fix_plan.md` - Task tracking and priorities
- `AGENTS.md.template` → `docs/ai/ralph/AGENTS.md` - Build/test instructions and learnings
### 3. Create CLAUDE.md Symlink
```bash
# Create symlink in project root pointing to AGENTS.md
ln -s docs/ai/ralph/AGENTS.md CLAUDE.md
```
This allows Claude Code to automatically read Ralph's learnings and build/test instructions when starting any conversation in this project.
### 4. Initialize status.json
```bash
cat > docs/ai/ralph/status.json << 'EOF'
{
"iteration_count": 0,
"started_at": null,
"status": "initialized",
"last_updated": "YYYY-MM-DDTHH:MM:SSZ"
}
EOF
```
**status.json fields:**
- `iteration_count`: Number of completed iterations (starts at 0)
- `started_at`: ISO 8601 timestamp when `/ralph:start` was run (null until started)
- `status`: Current state - `initialized`, `running`, `stopped`, `complete`, `reset`
- `last_updated`: ISO 8601 timestamp of last status change
### 5. Update .gitignore
Add Ralph's working directory to `.gitignore` if not already present:
```bash
# Check if docs/ai/ralph/ is already in .gitignore
if ! grep -q "^docs/ai/ralph/" .gitignore 2>/dev/null; then
echo "docs/ai/ralph/" >> .gitignore
fi
```
This prevents Ralph's iteration files from being committed to version control. Only your actual code changes get committed.
## Next Steps
After initialization completes, you can:
1. **Customize your setup** (optional):
- Edit `docs/ai/ralph/PROMPT.md` to add project-specific instructions
- Edit `docs/ai/ralph/AGENTS.md` to add your build/test commands
- Edit `docs/ai/ralph/fix_plan.md` to add your initial tasks
2. **Start autonomous development**:
- Run `/ralph:start` to begin the autonomous iteration loop
- Ralph will pick tasks from `fix_plan.md` and work through them one by one
3. **Manual iteration** (if you prefer):
- Run `/ralph:iterate` to execute exactly one iteration
- Use this for more control over when iterations happen
## Files Created
After running `/ralph:init`, your project will have:
```
your-project/
├── docs/ai/ralph/
│ ├── PROMPT.md # Ralph's iteration instructions
│ ├── fix_plan.md # Task list and priorities
│ ├── AGENTS.md # Build/test instructions
│ └── status.json # Iteration tracking
├── CLAUDE.md # Symlink → docs/ai/ralph/AGENTS.md
└── .gitignore # Updated to exclude docs/ai/ralph/
```
## Important Notes
- **CLAUDE.md is a symlink**: Don't edit it directly. Edit `docs/ai/ralph/AGENTS.md` instead.
- **Customize before starting**: Review and update the templates with your project's specific build/test commands before running `/ralph:start`.
- **Git integration**: Ralph creates commits after each task. Make sure your git config (user.name, user.email) is set.
- **Fresh context**: Ralph starts each iteration with zero memory, so all important context must be in the template files.
Related in General
modeling-omnistudio-epc-catalog
IncludedSalesforce Industries CME EPC product-modeling skill for Product2-based catalog creation. Use when creating EPC products, configuring product attributes, building offer bundles with Product Child Items, or reviewing EPC DataPack JSON metadata for product catalog changes. TRIGGER when: user creates or updates Product2 EPC records, AttributeAssignment payloads, AttributeMetadata/AttributeDefaultValues, Offer bundles, or ProductChildItem relationships. DO NOT TRIGGER when: designing OmniScripts/FlexCards/Integration Procedures (use building-omnistudio-omniscript, building-omnistudio-flexcard, or building-omnistudio-integration-procedure), implementing Apex business logic (use generating-apex), or troubleshooting deployment pipelines (use deploying-metadata).
relationship-science-coach
IncludedUse this skill for direct, practical adult relationship coaching: couples conflict, repair, trust, marriage, dating, flirting, attachment patterns, emotional connection, sex, desire differences, eroticism, kink negotiation, affection, love languages, breakups, and long-term passion. Draw on Gottman, EFT and Hold Me Tight, attachment science, modern sex research, Perel, Nagoski, Kerner, Schnarch, Love and Stosny, and flexible love-language tools. Be concrete and low-hedge. Redirect only for imminent danger, abuse, coercive control, minors, non-consent, self-harm, stalking, or medical/legal/psychiatric decisions.
building-sf-integrations
IncludedSalesforce integration architecture and runtime plumbing with 120-point scoring. Use this skill to set up Named Credentials, External Credentials, External Services, REST/SOAP callout patterns, Platform Events, and Change Data Capture. TRIGGER when: user sets up Named Credentials, External Services, REST/SOAP callouts, Platform Events, CDC, or touches .namedCredential-meta.xml files. DO NOT TRIGGER when: Connected App/OAuth config (use configuring-connected-apps), Apex-only logic (use generating-apex), or data import/export (use handling-sf-data).
venue-templates
IncludedAccess comprehensive LaTeX templates, formatting requirements, and submission guidelines for major scientific publication venues (Nature, Science, PLOS, IEEE, ACM), academic conferences (NeurIPS, ICML, CVPR, CHI), research posters, and grant proposals (NSF, NIH, DOE, DARPA). This skill should be used when preparing manuscripts for journal submission, conference papers, research posters, or grant proposals and need venue-specific formatting requirements and templates.
let-fate-decide
IncludedDraws the 12 Houses of the Zodiac Tarot spread to inject entropy into planning when prompts are vague, ambiguous, or casually delegated. Interprets the spread to guide next steps. Use when the user says 'let fate decide', 'YOLO', 'whatever', 'idk', or other nonchalant phrases, makes Yu-Gi-Oh references, or when you are about to arbitrarily pick between multiple reasonable approaches. Prefer over ask-questions-if-underspecified when the user's tone is casual or playful rather than precision-seeking.
net-ops
IncludedCross-platform network troubleshooting (Windows, macOS, Linux) via local or remote shell. Use for: DNS broken, can't resolve hostnames, nslookup/dig works but apps fail, NRPT, WFP, scutil, /etc/resolver, systemd-resolved, /etc/resolv.conf, NetworkManager, VPN DNS leak residue (ProtonVPN/Mullvad/WireGuard/AnyConnect), AV/firewall blocking DNS or DoH, Tailscale DNS interaction, intermittent connectivity, remote diagnostics over SSH.