Skills

Skills allow teams to capture repeatable workflows—such as code review checklists, commit conventions, or migration playbooks—as reusable instructions that the Side Chat agent follows on demand. Once defined, these skills can be invoked manually via slash commands or automatically by the AI when the context is relevant.
Getting Started: Creating a Skill
Skills are managed through through the Preferences menu.
Navigate to Preferences > Skills.
Click the [New Skill] button located on the right side of the page.
Fill in the required fields in the Create New Skill popup:
Name
✅
Identifier using lowercase letters, numbers, and hyphens only (max 64 chars).
Description
✅
Explain when the agent should call this skill. The LLM uses this to decide when to invoke the skill automatically. (Max 1,024 chars).
Instruction
(SKILL.md body)
✅
The actual guidance the agent should follow. Including specific rules and examples leads to better results.
License (Advanced)
⬜
Optional license tag for the skill itself.
Compatibility (Advanced)
⬜
Optional environment notes. (Max 500 chars)
Managing Skills
Editing & Renaming: Clicking a skill in the list opens the edit dialog. Renaming a skill renames its physical folder on disk and migrates its current status (enabled/disabled) to the new name.
Enabling/Disabling: Each row has a toggle on the right.
Enabled: The skill can be called via slash commands and is available as an auto-invokable tool.
Disabled: The skill remains on disk but is not loaded into the conversation.
Active Limit (Max 10): Up to 10 skills can be enabled simultaneously. Once the limit is reached, toggles for disabled skills are greyed out with a tooltip: "You have reached the maximum number of active skills. Disable another skill first."
Parsing Errors: If a
SKILL.mdhas invalid formatting or missing required fields, it appears in a "Parsing errors" section. Use the [Open file] link to fix the syntax in the editor.
If you try to rename a skill to one that already exists, the dialog blocks the save with a clear "A skill with the same name already exists" error instead of a generic failure toast.
Project Structure
When you save a skill, Arkain automatically creates a dedicated folder within your project at .arkain/skills/.
The SKILL.md Format
The SKILL.md file uses Markdown with a metadata block at the top for configuration, followed by the instructions.
Example (code-review/SKILL.md):
Using Skills in Side Chat
1. Explicit Slash Invocation
Trigger a specific skill by typing / followed by the skill name anywhere in your message.
/code-review take a look at the latest commit
Chaining: Multiple skills can be invoked in one message:
/code-review /commit-message.Visual Feedback: Recognized slash tokens render as monospace chips in the input box and chat bubbles.
2. Automatic Invocation
Enabled skills are exposed to the AI as the invoke_skill tool. If the AI determines a skill is relevant based on its description, it invokes the skill automatically. A visual marker (e.g., /code-review used) appears in the conversation history to indicate its use.
Tips for Writing Good Skills
Make
descriptioncount. It is the line the LLM reads to decide whether to invoke the skill on its own. Be specific about when the skill should fire and what it produces.Write the instruction like a checklist. Numbered steps and explicit output formats lead to far more consistent results than free-form prose.
Keep the body focused. Instructions over ~3,000 characters trigger a length warning in the editor; move large reference material into a sibling file (
examples.md,style-guide.md) and reference it from the instruction.Name with intent. The skill name is the slash command.
/code-reviewreads better in chat than/cr-helper-v2.
Common Scenarios
Apply the same commit-message convention every time
/commit-message (explicit invocation)
Run a fixed PR review checklist
/code-review (explicit invocation)
Have the agent automatically apply a domain rule when relevant
Encode the trigger condition in description, leave the skill enabled (auto-invocation)
Park a skill you're still drafting
Keep it disabled until it's ready
With Skills, your team's hard-won conventions live next to the code they apply to, and Side Chat can apply them with a single slash — or pick them up on its own when the moment is right. For more on how Side Chat orchestrates these calls, see Agent mode.
Last updated