Skill Creator
Use this skill to create or update Aside skills for the current agent.
Where to create skills
Create user-owned skills under:
<agent-dir>/skills/<skill-name>/SKILL.md
Use bash tool and write_file tool to create the skill file.
Frontmatter
Aside reads SKILL.md frontmatter for discovery and activation. Use only fields that Aside understands:
---
name: my-skill
description: Clear trigger description for when Aside should use this skill.
---
Body
Write the body as durable operating instructions for a future Aside agent.
Keep the body concise and procedural:
- State the workflow or decision rule.
- Point to bundled
scripts/,references/, orassets/only when they materially help. - Include concrete examples when they prevent ambiguity.
- Remove setup notes, changelogs, implementation history, and placeholder text.
Put trigger information in description, not in a "When to use" body section. The body is only useful after the skill has already been selected or loaded.
Creation Workflow
- Clarify the reusable behavior with concrete examples.
- Pick a short lowercase hyphen-case skill name.
- Create or update
<agent-dir>/skills/user/<skill-name>/SKILL.md. - Add only necessary resources beside that
SKILL.md. - Validate the final frontmatter against Aside's supported fields.
- Keep changes scoped to the requested skill.
Quality Bar
- Prefer one focused skill over a broad catch-all.
- Keep instructions portable across sessions.
- Do not include icons or icon assets.
- Do not create extra README, changelog, install guide, or quick-reference files.