From hydra
How Hydra discovers, resolves, and routes to squad packs. Read this before adding/removing/modifying a squad.
How this skill is triggered — by the user, by Claude, or both
Slash command
/hydra:squad-registry-discoveryThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Hydra's modularity hinges on one rule: **a squad is any directory under `squads/` (project-local) or `~/.hydra/squads/` (user-global) that contains a `squad.yaml`**. Discovery runs at supervisor construction time via `hydra_core.squad_loader.discover_squads`.
Hydra's modularity hinges on one rule: a squad is any directory under squads/ (project-local) or ~/.hydra/squads/ (user-global) that contains a squad.yaml. Discovery runs at supervisor construction time via hydra_core.squad_loader.discover_squads.
<project-root>/squads/<slug>/squad.yaml (project wins — used for project-specific overrides)~/.hydra/squads/<slug>/squad.yaml (user global)A project-level slug shadows a user-level slug of the same name.
squad.yaml Keysname: <human readable>
description: <multi-line>
source_pack: <abs path or null> # references the underlying repo if any
entrypoint: mcp|subprocess|agent-impersonation|claude-skill|stub
industries: [tag1, tag2] # router signal
agents: [{slug, role, authority, model_hint?}]
tools: [{name, mcp_server?, privilege}]
accepts: [<envelope_type>, ...] # or ["*"]
emits: [<envelope_type>, ...]
gates: [{rubric_id, hitl_required?, when?}]
invoke: {entrypoint-specific config}
mkdir squads/<slug> and write squad.yaml.hydra_core/router.py::_KEYWORDS[<slug>]./hydra:squads to verify discovery./hydra:run "<test goal>" --squad <slug> to smoke-test.entrypoint from stub to the real adapter once tools/MCP are wired.See CONTRIBUTING-SQUADS.md for the full activation checklist.
Creates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.
npx claudepluginhub lebobo88/hydra --plugin hydra