Shows available Hydra commands by parsing plugin.yaml and explains Git worktree concept for parallel agent workflows.
From hydranpx claudepluginhub marcel-bich/marcel-bich-claude-marketplace --plugin hydra/helpExplains Ralph Loop plugin for iterative AI development via repeated Claude prompts with file self-reference, and lists commands /ralph-loop to start loops and /cancel-ralph to cancel.
/helpDisplays Hookify plugin help: hook events, markdown config files with regex patterns, creation via /hookify or manual files, subcommands, and examples for safe behaviors.
/helpDisplays a complete table of all available SuperClaude (/sc) commands with their descriptions and functionality.
/helpDisplays full reference guide for Ouroboros commands and agents by rendering the dedicated SKILL.md file.
/helpDisplays the complete GSD command reference, listing all available commands with descriptions, usage examples, quick start guide, and core workflow.
/helpDisplays categorized tsumiki command list, details for named command, or recommends best match for trouble description. Accepts optional command name or query text.
You are executing the /hydra:help command. Show the user available commands and explain the Git worktree concept.
Git worktrees allow having multiple branches checked out simultaneously in different directories. Each worktree has:
This means: Parallel work on different features without git stash or branch switching.
When multiple agents need to work in parallel, each needs its own directory. Otherwise:
With worktrees, each agent gets its own isolated working directory.
Show currently available commands:
grep -A2 "^ [a-z]" "${CLAUDE_PLUGIN_ROOT:-$(dirname $(dirname $0))}/plugin.yaml" 2>/dev/null || echo "Could not read plugin.yaml"
1. /hydra:create feature-x # Create worktree
2. /hydra:spawn feature-x "..." # Agent works there
3. /hydra:watch # Live monitor agents
4. /hydra:status # Check git status
5. /hydra:merge feature-x # Integrate changes
6. /hydra:cleanup # Clean up
1. /hydra:parallel feature-a:Task A | feature-b:Task B | feature-c:Task C
2. /hydra:watch # Monitor all agents live
3. /hydra:merge feature-a # Merge when done
4. /hydra:cleanup # Remove merged worktrees
git worktree --help