From forge
Submits headless agent jobs to Forge daemon via MCP tools, monitors status, and retrieves outputs. Use for delegating fire-and-forget tasks to background LLMs like Claude or Gemini.
How this skill is triggered — by the user, by Claude, or both
Slash command
/forge:useThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Forge runs tasks on LLM agents in the background via a daemon. Interact through MCP tools.
Forge runs tasks on LLM agents in the background via a daemon. Interact through MCP tools.
Submit a job. Returns a job ID.
Required: task (string) - the prompt/task description.
Optional:
| Parameter | Type | Description |
|---|---|---|
agent | string | claude (default), gemini, local, lmstudio |
model | string | Agent-specific: sonnet, haiku, opus, gemini-2.5-pro, etc. |
timeout | string | Duration: 30s, 10m (default), 1h |
input_files | string[] | File paths to include as context |
output_format | string | markdown (default), json, yaml, code, raw |
constraints | string[] | Output validation constraints |
tags | string[] | Tags for filtering/organization |
Check job status. Required: job_id (string).
Get completed job result. Required: job_id (string).
Returns: output content, metadata (agent, model, duration, tokens, cost).
List jobs. Optional: status filter (pending, running, completed, failed), limit (default 20).
1. forge_submit → returns job_id
2. forge_status → poll until "completed" or "failed"
3. forge_output → retrieve the result
pending → claimed → dispatched → running → validating → delivering → completed
Any state can transition to failed.
pending, check with forge_status or run /forge:setup.forge_list to monitor.["non-empty", "min-length:100"]).npx claudepluginhub zate/cc-plugins --plugin forgeRuns one-shot provider LLM subagents for fan-out tasks, bulk per-file work, or specialized model calls. Returns result directly, lock-free for parallel execution.
Orchestrates deterministic JS workflows for Claude Code subagents with phases, parallelism, and quality patterns. For fan-out to hundreds of agents or codebase-wide audits.
Delegates tasks to external LLMs like Gemini and Qwen with quota management, logging, and error handling. Use for token-heavy tasks exceeding context limits or cheaper processing.