Skills
Skills are reusable system prompt fragments – named blocks of instructions (tone, style, house rules) defined in your Kirby config and invoked by editors with @skill://<id> mentions in any prompt dialog. At submit time, each referenced skill's instructions are spliced into the system prompt as a <skill name="...">...</skill> block.

Editors reach skills from the view button or toolbar buttons. Use them to codify the voice and rules your team reuses across the Panel.
Defining Skills since v3.7.0
Each skill has an id, a human label, and an instructions string that gets injected into the system prompt when the skill is active.
return [
'johannschopplich.copilot' => [
'skills' => [
[
'id' => 'brand-voice',
'label' => 'Brand Voice',
'instructions' => 'Write in a warm, conversational tone. Avoid corporate jargon. Prefer short sentences.'
],
[
'id' => 'concise',
'label' => 'Concise',
'instructions' => 'Cut every unnecessary word. Prefer active voice. No filler phrases.'
]
]
]
];
return [
'johannschopplich.copilot' => [
'skills' => [
[
'id' => 'brand-voice',
'label' => [
'en' => 'Brand Voice',
'de' => 'Markenstimme'
],
'instructions' => [
'en' => 'Write in a warm, conversational tone. Avoid corporate jargon. Prefer short sentences.',
'de' => 'Schreibe in einem warmen, gesprächigen Ton. Vermeide Fachjargon. Bevorzuge kurze Sätze.'
]
]
]
]
];
label and instructions can each be localized independently; missing translations fall back to English, then to the first defined language.Using Skills in Prompts
Syntax
A skill mention uses the @skill:// prefix followed by the skill's id:
@skill://skill-id
For example, @skill://brand-voice or @skill://concise. The prompt editor highlights valid skill mentions in green; unknown IDs appear in red.
Typeahead
Start typing @skill:// in the prompt editor to open a dropdown of available skills. Keep typing to filter by id or label; select with the arrow keys and Enter or Tab, or click to insert. Press Escape to dismiss without inserting. The full @skill://<id> token is inserted at the cursor position.
How It Works
When the prompt is submitted, referenced skill IDs are extracted from the prompt text and their instructions are added to the system prompt as <skill> XML blocks. The @skill:// tokens are then stripped from the user prompt before the request is sent.
This differs from page references, where @page:// tokens remain visible and the referenced content is appended to the user prompt. Skill tokens are a control surface for the system prompt – the AI never sees them as user input.
Example
Given a prompt typed by the editor:
Write a product tagline for our new mixer.
@skill://brand-voice
@skill://concise
The AI receives:
- System prompt – the default system prompt, followed by:
<skill name="Brand Voice"> Write in a warm, conversational tone. Avoid corporate jargon. Prefer short sentences. </skill> <skill name="Concise"> Cut every unnecessary word. Prefer active voice. No filler phrases. </skill> - User prompt –
Write a product tagline for our new mixer.