# skill-compile

`station__skills__skill-compile` · external (needs EXECUTION_BACKEND_URL configured) · domain `skills` · pv-relevance `non-pv`

Compile knowledge from sources into a pack.

> **Note:** This tool routes through an external execution backend. If `EXECUTION_BACKEND_URL` is unset on the server, calls return JSON-RPC error `-32603 "Tool execution backend not configured"`. Tools with `backend: native` execute in-process and are always callable.

## Agent metadata

- `idempotent`: unknown
- `read_only`: unknown
- `expected_latency_ms`: unknown (not yet contract-tested)
- `cost_tokens_estimate`: unknown

## Input schema

- `include_artifacts` *boolean* — Include Brain artifact files (default: false).
- `include_distillations` *boolean* — Include Brain distillation files (default: false).
- `include_implicit` *boolean* — Include implicit knowledge files (default: false).
- `include_staged` *boolean* — Include staged fragments from prior knowledge_ingest calls (default: true).
- `name` *string* (required) — Name for the knowledge pack.
- `sources` *array* — Raw text sources to include (optional, in addition to Brain sources).

## Example call

```json
POST /api/mcp
Content-Type: application/json

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "station__skills__skill-compile",
    "arguments": {
      "name": ""
    }
  }
}
```

## Related

- [/tools](/tools) — all 3062 tools
- [/tools/skills__skill-compile](/tools/skills__skill-compile) — HTML page
- [/tools/skills__skill-compile/json](/tools/skills__skill-compile/json) — JSON form (agent-friendly)
- [/api/mcp](/api/mcp) — endpoint
- [/AGENTS.md](/AGENTS.md) — agent guide
