Skills are stored locally inDocumentation Index
Fetch the complete documentation index at: https://docs.mira-app.dev/llms.txt
Use this file to discover all available pages before exploring further.
mira.db and can be exported as self-contained JSON files for sharing, backup, or use across multiple MIRA installations.
Exporting a Skill
Importing a Skill
Skill JSON format
Exported skills are human-readable JSON. All fields are required unless marked optional.Field reference
| Field | Type | Required | Notes |
|---|---|---|---|
name | string | โ | Displayed in the skill picker and session header |
description | string | โ | One-line summary shown below the name |
category | string | โ | See valid values below |
icon | string | โ | Any single emoji character |
color | string | โ | Hex colour for the skill card accent (#rrggbb) |
instructions | string | โ | Full system-level instructions injected at session start. Supports Markdown. |
modelOverrides | object | โ | Per-skill model parameter overrides (see below) |
mcpAllowlist | string[] | โ | List of MCP server IDs allowed for this skill. Empty array = all servers allowed. |
documentTemplates | string[] | โ | Reserved for future use โ set to [] |
scope | string | โ | "session" or "global" |
isEnabled | boolean | โ | Whether the skill is selectable. Set to true for usable skills. |
isBuiltin | boolean | โ | Always false for custom/imported skills |
category valid values: "Research" ยท "Coding" ยท "Domain Expert" ยท "Creative" ยท "Deterministic" ยท "Custom"
scope valid values:
"session"โ skill is applied only to the current session and is not persisted across sessions"global"โ skill is automatically available across all sessions
modelOverrides fields:
| Field | Type | Notes |
|---|---|---|
temperature | number | 0.0 โ 2.0. Lower = more deterministic. |
maxIterations | number | Max reasoning iterations (RLM engine). Recommended: 10โ30. |
maxTokens | number | Max tokens per response. |
temperatureEnabled | boolean | If false, the provider default is used instead. |
maxIterationsEnabled | boolean | If false, the engine default is used instead. |
maxTokensEnabled | boolean | If false, the provider default is used instead. |
Version history
Every time you save a skill, MIRA creates a new version automatically. To view and restore previous versions:- Open the skill in the editor
- Click โฎ โ Version History
- A panel shows all saved versions with timestamps
- Click any version to preview it
- Click Restore to make that version current