Skip to content
Automation
Command

/ralph-config

Write recommended RalphTUI config for json or beads tracker

From plugin
essentials-claude-code
9125 skills8 agents25 commands
Install
$ npx -y skills add GantisStorm/essentials-claude-code --agent claude-code

How 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.md
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
Read more
Ships withessentials-claude-code

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.

Get the whole plugin, auto-invoked
Stats
91
Stars
1
Views
9
Forks
Maintained
Maintenance
Unlicense
License
5mo ago
Last commit
7mo ago
Created

Repo: GantisStorm/essentials-claude-code