← All tools
Skills
The tools that manage skills themselves — creating them, updating them, and telling a client when its installed copies have fallen behind.
5Tools
8Parameters
2026-09-03Generated
muninn_skill_check
Read only
1 parameter
Check whether installed Muninn skills are up to date. Send the skills you currently have loaded with their skill-version stamps; returns which are outdated, current, or unknown. Only reports on skills you name.
| Parameter | Type | Required | Description |
| installed |
object[] |
Required |
The Muninn skills currently loaded, with their version stamps |
muninn_skill_create
Writes
3 parameters
Create a new Muninn-native skill from name, description, and body. Stores two memories (entry + body), wires them by ID, and makes the skill available in the next session_boot. Returns entryId and bodyId.
| Parameter | Type | Required | Description |
| name |
string |
Required |
Skill name slug e.g. 'muninn-status'. Must be unique. |
| description |
string |
Required |
Trigger description ≤300 chars — used in the <available_skills> registry. |
| body |
string |
Required |
Full skill body: trigger phrases, steps, examples. |
muninn_skill_delete
Writes
Destructive
1 parameter
Permanently delete a Muninn-native skill by name. Removes both the entry and body memories from all storage layers.
| Parameter | Type | Required | Description |
| name |
string |
Required |
Skill name slug to delete. |
muninn_skill_registry
Read only
0 parameters
Assemble and return the <available_skills> XML block from all skill-entry memories. Present the returned text as-is — Claude reads it as a fireable skill registry. Call mid-session after adding a new skill to refresh without rebooting.
muninn_skill_update
Writes
3 parameters
Update an existing Muninn-native skill's body and/or description. Finds the skill by name, updates whichever fields are provided, regenerates embeddings. Does not recreate the memories.
| Parameter | Type | Required | Description |
| name |
string |
Required |
Skill name slug to update. |
| description |
string |
— |
New description ≤300 chars. Omit to leave unchanged. |
| body |
string |
— |
New full skill body. Omit to leave unchanged. |
← Back to all 70 tools