Skill Load
1 action. Each is callable by the agent as a tool, over HTTP via /api/invoke, and (usually) from a UI page.
skill_load
POST
Progressive-disclosure: load a skill's full body + supporting files when the agent decides to use it. Only the description is in the system prompt; the body comes in via this tool.
When the agent calls it: Call this when a skill's description matches the current task — it gives you the full procedure + templates.
- AI tool:
skill_load - API:
POST /api/invoke/skill_load
Input
| Field | Type | Required | Description |
|---|---|---|---|
slug |
string | yes | |
ticketId |
string | — |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"slug": {
"type": "string"
},
"ticketId": {
"type": "string",
"minLength": 1
}
},
"required": [
"slug"
]
}