Setup & Installation
Or with the ClawHub CLI, for registry-managed skill folders outside a full OpenClaw workspace:
What This Skill Does
A lightweight agent registry and JIT router for Claude Code and compatible platforms. Maps specialized tasks — code review, security audits, debugging, refactoring, and more — to one of 130+ subagents, downloading the agent file on demand from GitHub if not already cached locally. Intended to be consulted before performing any specialized engineering work.
Instead of manually finding, installing, and invoking individual specialized agents, the router handles discovery, download, and dispatch in a single step.
When to use it
- Routing a security audit request to a dedicated auditor agent automatically
- Downloading a Kubernetes specialist on demand during an infrastructure task
- Delegating TypeScript refactoring to a cached language-specialist subagent
- Dispatching a React debugging session to a frontend subagent without manual setup
- Handing off data analysis to a dedicated data-scientist agent mid-conversation
Example Workflow
Here's how your AI assistant might use this skill in practice.
User asks: 'Can you audit this codebase for security vulnerabilities?'
- 1Scans the agent index and matches the 'security' keyword to 'security-auditor:quality'
- 2Checks if security-auditor.md exists in ~/.claude/agents/
- 3Downloads the agent file from the GitHub repository if not cached locally
- 4Validates the downloaded file starts with YAML frontmatter
- 5Reads the agent file and dispatches the task via the Task tool with the full agent prompt prepended
Security audit findings relayed from the security-auditor subagent to the main conversation