skills/skill-creation/SKILL.md
Guide for creating, updating, and managing skills. Use when: you need to extend your capabilities with a new skill, or the user asks you to create one. Skills are persistent Markdown instruction modules auto-discovered at runtime.
npx skillsauth add emanueleielo/ciana-parrot skill-creationInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
You can create new skills to extend your own capabilities. Skills are Markdown instruction modules that persist across conversations and require no restart.
meeting-notes, code-review)write_file("skills/<name>/SKILL.md", content)
Every skill needs a YAML frontmatter block followed by Markdown instructions:
---
name: <skill-name>
description: "Brief description of what this skill does and when to use it. Max 1024 chars."
---
# Skill Title
Instructions in markdown...
| Field | Required | Description |
|-------|----------|-------------|
| name | Yes | Must match the directory name exactly |
| description | Yes | What the skill does and when to use it. Max 1024 chars |
| requires_env | No | List of environment variables needed (skill is hidden if missing) |
| requires_bridge | No | Host gateway bridge name required (skill is hidden if bridge unavailable) |
| homepage | No | External URL for reference documentation |
| metadata | No | Provider-specific metadata (e.g., OpenClaw) |
Simple skill (no dependencies):
---
name: meeting-notes
description: "Generate structured meeting notes from conversations. Use when the user asks to summarize or document a meeting."
---
Skill requiring an API key:
---
name: notion
description: "Manage Notion workspace: create pages, query databases, add content blocks. Requires NOTION_API_KEY."
requires_env:
- NOTION_API_KEY
---
Skill requiring a host bridge:
---
name: spotify
description: "Control Spotify playback: play, pause, skip, search tracks/albums/playlists via spogo CLI."
requires_bridge: "spotify"
---
Follow this structure for the Markdown body:
# Skill Title
Brief one-line summary.
## When to Use
- Trigger phrase or scenario 1
- Trigger phrase or scenario 2
## When NOT to Use
- Scenario where another approach is better
## Commands / Workflow
Step-by-step instructions, code blocks, curl examples, etc.
## Notes
- Caveats, rate limits, known issues
SKILL.md files — never create Python scripts or executable code in skill directoriesname in frontmatter MUST match the directory nameSKILL.md per skilledit_file or write_file to modify skills/<name>/SKILL.mdtools
Send and read WhatsApp messages via the wacli CLI. Search chats, view history, send text and files to contacts or groups.
development
Get current weather and forecasts via wttr.in or Open-Meteo. Use when: user asks about weather, temperature, or forecasts for any location. NOT for: historical weather data, severe weather alerts, or detailed meteorological analysis. No API key needed.
tools
Extract frames, thumbnails, or clips from video files using ffmpeg. Use when analyzing video content or creating previews.
tools
Diagnose and resolve errors with Ciana's host bridges, CLI tools, Claude Code mode, macOS permissions, and gateway connectivity.