servelisted
Install: claude install-skill qwerfunch/cladding
# Cladding serve
Run `clad serve` from the project root. Boots an MCP server over stdio that exposes:
- **Tools**: the full development surface (feature/graph/context queries, checks, gate, changelog) plus the natural-language onboarding flow — `clad_prepare_init` / `clad_stage_init` / `clad_init` and the clarify pair. Before `spec.yaml` exists only the three onboarding bootstrap tools are exposed.
- **Resources**: `cladding://spec`, `cladding://events`, `cladding://audit`.
- **Prompts**: 5 personas (orchestrator, planner, reviewer, observability, developer).
- **Live audit notifications**: `notifications/resources/updated` fires for `cladding://audit` whenever a new evidence entry lands — a subscribed client can live-tail the audit log without polling.
Registers itself in cladding's sampling context so the host adapters (`generic-mcp`, `claude-code`) route LLM dispatch through `McpSamplingTransport` instead of the Mock fallback.
```
clad serve --cwd /path/to/project
```
**Most users don't run this directly.** Cladding's plugin manifest (`.mcp.json`) launches `clad serve` automatically when the plugin is enabled. Invoke this skill only for debugging the MCP server in isolation.