LaunchKit · 2026
Back to Skills

agent-dispatch

Lightweight agent registry and JIT router.

0
0 downloads
by @userfrm

Setup & Installation

openclaw skills install @userfrm/agent-dispatch

Or with the ClawHub CLI, for registry-managed skill folders outside a full OpenClaw workspace:

npx clawhub install agent-dispatch

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.

INPUT

User asks: 'Can you audit this codebase for security vulnerabilities?'

AGENT
  1. 1Scans the agent index and matches the 'security' keyword to 'security-auditor:quality'
  2. 2Checks if security-auditor.md exists in ~/.claude/agents/
  3. 3Downloads the agent file from the GitHub repository if not cached locally
  4. 4Validates the downloaded file starts with YAML frontmatter
  5. 5Reads the agent file and dispatches the task via the Task tool with the full agent prompt prepended
OUTPUT

Security audit findings relayed from the security-auditor subagent to the main conversation