/ralph-config
Write recommended RalphTUI config for json or beads tracker
$ npx -y skills add GantisStorm/essentials-claude-code --agent claude-codeHow it fires
How this command gets triggered: by you, by Claude, or both.
- Fires itselfClaude auto-loads it when your prompt matches the work.
- You can call itInvoke it directly when you want it.
- Slash command
/ralph-config
Context preview
What this command does when you run it.
Write recommended RalphTUI config for json or beads tracker
Command definition
ralph-config.mdallowed-tools: Bash(cat:*), Bash(mkdir:*), Bash(test:*)
argument-hint: "<json|beads>"
description: Write recommended RalphTUI config for json or beads tracker
model: opus
context: fork
Ralph Config
Write the full recommended RalphTUI configuration for Tasks (json) or Beads workflow.
Arguments
- `json` — Write config for prd.json workflow
- `beads` — Write config for Beads workflow
Instructions
Step 1: Validate Argument
If argument is not `json` or `beads`:
Usage: /ralph-config <json|beads>
json - Config for prd.json tasks workflow
beads - Config for Beads workflow
Step 2: Ensure Directory Exists
mkdir -p .ralph-tui
Step 3: Write Config
**If argument is `json`:**
cat > .ralph-tui/config.toml << 'EOF'
# RalphTUI config for Tasks (prd.json) workflow
# See: WORKFLOW-TASKS.md#recommended-configurations
configVersion = "2.1"
maxIterations = 0
agent = "claude"
tracker = "json"
autoCommit = false
subagentTracingDetail = "full"
[agentOptions]
model = "claude-opus-4-5-20251101"
[trackerOptions]
[notifications]
sound = "system"
EOF
**If argument is `beads`:**
cat > .ralph-tui/config.toml << 'EOF'
# RalphTUI config for Beads workflow
# See: WORKFLOW-BEADS.md#setup-for-beads
configVersion = "2.1"
maxIterations = 0
agent = "claude"
tracker = "beads-bv"
autoCommit = false
subagentTracingDetail = "full"
[agentOptions]
model = "claude-opus-4-5-20251101"
[trackerOptions]
[notifications]
sound = "system"
EOF
Step 4: Report Result
cat .ralph-tui/config.toml
Config written: .ralph-tui/config.toml
Tracker: <json or beads-bv>
Run with:
ralph-tui run --prd <path> # json tracker
ralph-tui run --epic <epic-id> # beads-bv tracker
Read more
allowed-tools: Bash(cat:*), Bash(mkdir:*), Bash(test:*) argument-hint: "<json|beads>" description: Write recommended RalphTUI config for json or beads tracker model: opus context: fork
Ralph Config
Write the full recommended RalphTUI configuration for Tasks (json) or Beads workflow.
Arguments
- `json` — Write config for prd.json workflow
- `beads` — Write config for Beads workflow
Instructions
Step 1: Validate Argument
If argument is not `json` or `beads`:
Usage: /ralph-config <json|beads> json - Config for prd.json tasks workflow beads - Config for Beads workflow
Step 2: Ensure Directory Exists
mkdir -p .ralph-tui
Step 3: Write Config
**If argument is `json`:**
cat > .ralph-tui/config.toml << 'EOF' # RalphTUI config for Tasks (prd.json) workflow # See: WORKFLOW-TASKS.md#recommended-configurations configVersion = "2.1" maxIterations = 0 agent = "claude" tracker = "json" autoCommit = false subagentTracingDetail = "full" [agentOptions] model = "claude-opus-4-5-20251101" [trackerOptions] [notifications] sound = "system" EOF
**If argument is `beads`:**
cat > .ralph-tui/config.toml << 'EOF' # RalphTUI config for Beads workflow # See: WORKFLOW-BEADS.md#setup-for-beads configVersion = "2.1" maxIterations = 0 agent = "claude" tracker = "beads-bv" autoCommit = false subagentTracingDetail = "full" [agentOptions] model = "claude-opus-4-5-20251101" [trackerOptions] [notifications] sound = "system" EOF
Step 4: Report Result
cat .ralph-tui/config.toml
Config written: .ralph-tui/config.toml Tracker: <json or beads-bv> Run with: ralph-tui run --prd <path> # json tracker ralph-tui run --epic <epic-id> # beads-bv tracker
Loops, swarms, and teams powered by Claude Code's built-in Task System. Loop, swarm, and team are three execution modes. Loop runs sequentially. Swarm runs parallel subagents. Team spawns full Claude Code instances with shared contracts via Agent Teams.
Repo: GantisStorm/essentials-claude-code
Other commands on essentials-claude-code.
- /beads-converter
Convert plans to Beads - works with /beads-loop, /beads-swarm, or RalphTUI
Open command - /beads-loop
Execute beads iteratively until all tasks complete
Open command - /beads-swarm
Execute beads with parallel agent swarm (dependency-aware)
Open command - /bug-plan-creator
Deep bug investigation with architectural fix plan generation - works with any executor (loop or swarm)
Open command - /cancel-loop
Cancel any active loop
Open command - /cancel-swarm
Cancel any active swarm
Open command

