skills_get_body
Retrieve full skill instructions, system prompt addition, and tier3 manifest for a given skill ID. Apply instructions to complete tasks; fetch referenced files only when explicitly required.
Instructions
STEP 2 - Load full skill instructions. Call after skills_find_relevant once you have identified the best-matching skill_id.
Returns three fields: • instructions - expert step-by-step guidance; read and follow these • system_prompt_addition - optional context to add to your persona (may be empty) • tier3_manifest - lists available references, scripts, and assets by filename
After loading: apply the instructions. If tier3_manifest lists files that the instructions explicitly reference, fetch them with skills_get_reference, skills_run_script, or skills_get_asset. Most tasks are fully served by the instructions alone - do not load Tier 3 speculatively.
Version pinning: pass version='1.2' to pin to a specific skill version, or use the inline form skill_id='stripe-integration@1.2'. If the requested version is not found, the latest version is returned with a version_note explaining the fallback. Deprecated skills include a deprecation_notice field naming the replacement.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| version | No | ||
| skill_id | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |