| name | engineer-skill |
| description | Guide for creating effective Agent Skills (SKILL.md packages). Use when users want to create a new skill, write a skill, author a SKILL.md, or ask about skill structure, best practices, or skill file format. Works across IDEs (Cursor, Claude Code, OpenCode). |
| license | Based on https://github.com/anthropics/skills |
Skill Creator
This skill guides through creating effective Agent Skills — markdown-based packages that teach AI agents specialized workflows, domain knowledge, and procedural capabilities.
Question Format (FR-UNIVERSAL.QA-FORMAT)
When asking the user a choice (IDE, scope, behavior decisions):
- Each question MUST be a numbered list item (
1., 2., …) — not a heading, bold-only line, or paragraph.
- For multi-select questions, when the user delegates with
agent's choice (or equivalent), pick the subset yourself, emit a one-line justification of the pick, and proceed without re-asking for confirmation.
About Skills
Skills are self-contained packages (directory with SKILL.md) that extend agent capabilities with:
- Specialized workflows — multi-step procedures for specific domains
- Tool integrations — instructions for working with specific file formats or APIs
- Domain expertise — company-specific knowledge, schemas, business logic
- Bundled resources — scripts, references, and assets for complex tasks
IDE Detection and Skill Placement
Skills work across multiple IDEs. Before creating a skill, determine the current environment and ask the user where to place it.
Control Primitives Map by IDE
| Primitive | Scope | Claude Code | Cursor | OpenCode |
|---|
| Persistent Instructions | User | ~/.claude/CLAUDE.md | - | ~/.config/opencode/AGENTS.md
~/.claude/CLAUDE.md (fallback) |
| Project | CLAUDE.md
.claude/rules/*.md | AGENTS.md
.cursor/rules/*/RULE.md
.cursor/rules/*.mdc | AGENTS.md
CLAUDE.md (fallback)
opencode.json instructions |
| Folder | subdir/CLAUDE.md
CLAUDE.local.md | subdir/AGENTS.md | - |
| Conditional Instructions | Project | .claude/rules/*.md | .cursor/rules/*/RULE.md
.cursor/rules/*.mdc | opencode.json instructions (globs) |
| Custom Commands | User | ~/.claude/commands/*.md | ~/.cursor/commands/*.md | ~/.config/opencode/commands/*.md |
| Project | .claude/commands/*.md
.claude/commands/<namespace>/*.md | .cursor/commands/*.md | .opencode/commands/*.md |
| Skills | User | ~/.claude/skills/<name>/ | ~/.cursor/skills/<name>/ | ~/.config/opencode/skills/<name>/
~/.claude/skills/<name>/ (fallback) |
| Project | .claude/skills/<name>/ | .cursor/skills/<name>/ | .opencode/skills/<name>/
.claude/skills/<name>/ (fallback) |
| Event Hooks | User | ~/.claude/settings.json | ~/.cursor/hooks.json | ~/.config/opencode/plugins/*.{js,ts} |
| Project | .claude/settings.json
.claude/settings.local.json | .cursor/hooks.json | .opencode/plugins/*.{js,ts} |
| MCP Integration | User | settings.json
managed-mcp.json | ~/.cursor/mcp.json | opencode.json mcp |
| Project | .mcp.json | .cursor/mcp.json | opencode.json mcp |
| Context Ignoring | User | .claude/settings.json | - | - |
| Project | - | .cursorignore | .gitignore
.ignore
opencode.json watcher.ignore |
Skill-Specific Paths
| IDE | Personal Skills | Project Skills |
|---|
| Cursor | ~/.cursor/skills/<name>/ | .cursor/skills/<name>/ |
| Claude Code | ~/.claude/skills/<name>/ | .claude/skills/<name>/ |
| OpenCode | ~/.config/opencode/skills/<name>/ | .opencode/skills/<name>/ |
OpenCode also reads skills from fallback locations: .claude/skills/, .agents/skills/, ~/.claude/skills/, ~/.agents/skills/.
Detection Strategy
- Check for IDE-specific markers in the project:
.cursor/ directory → Cursor
.claude/ directory → Claude Code
.opencode/ directory or opencode.json → OpenCode
- If multiple detected or none → ask the user
- Ask: personal skill (user-level) or project skill (shared via repo)?
IMPORTANT: Never create skills in ~/.cursor/skills-cursor/ — reserved for Cursor internals.
Core Principles
Concise is Key
Context window is shared with conversation, other skills, and user request. Every token competes for space.
Default assumption: the agent is already very smart. Only add context it doesn't already have.
Challenge each piece:
- "Does the agent really need this explanation?"
- "Does this paragraph justify its token cost?"
Prefer concise examples over verbose explanations.
Set Appropriate Degrees of Freedom
| Freedom Level | When to Use | Example |
|---|
| High (text instructions) | Multiple valid approaches, context-dependent | Code review guidelines |
| Medium (pseudocode/templates) | Preferred pattern with acceptable variation | Report generation |
| Low (specific scripts) | Fragile operations, consistency critical | Database migrations |
Anatomy of a Skill
Every skill: required SKILL.md + optional bundled resources in a directory:
skill-name/
├── SKILL.md # Required - main instructions
├── references/ # Optional - detailed documentation
│ ├── api_reference.md
│ └── patterns.md
├── scripts/ # Optional - executable code
│ └── validate.py
└── assets/ # Optional - output resources
└── template.md
SKILL.md (required)
- Frontmatter (YAML):
name and description fields. These determine when the skill triggers.
- Body (Markdown): Instructions loaded AFTER skill triggers.
Bundled Resources (optional)
| Type | Path | Purpose | When to Include |
|---|
| Scripts | scripts/ | Executable code (Python/Bash) | Same code rewritten repeatedly; deterministic reliability needed |
| References | references/ | Documentation loaded into context as needed | Detailed info too lengthy for SKILL.md |
| Assets | assets/ | Files used in output (templates, images, fonts) | Templates, boilerplate, images for final output |
What NOT to Include
No README.md, CHANGELOG.md, INSTALLATION_GUIDE.md, or other auxiliary docs. The skill contains only what the agent needs to do the job.
Progressive Disclosure
Three-level loading to manage context:
- Metadata (name + description) — always in context (~100 words)
- SKILL.md body — when skill triggers (<5k words)
- Bundled resources — as needed (unlimited)
Keep SKILL.md under 500 lines. Split content into separate files when approaching this limit. Reference them clearly from SKILL.md with guidance on when to read them.
Important: Keep references one level deep from SKILL.md. Avoid deeply nested chains.
Writing Effective Descriptions
Description is critical for skill discovery. The agent uses it to decide when to apply the skill.
Rules
-
Third person (injected into system prompt):
- Good: "Processes Excel files and generates reports"
- Bad: "I can help you process Excel files"
-
Specific with trigger terms:
- Good: "Extract text/tables from PDF files, fill forms, merge documents. Use when working with PDF files or when the user mentions PDFs, forms, or document extraction."
- Bad: "Helps with documents"
-
Include WHAT and WHEN (the WHEN phrase is MANDATORY, not optional):
- WHAT: specific capabilities
- WHEN: trigger scenarios — an explicit phrase such as "Use when …" or "when the user …"
- Enforced:
validate_skill.ts (and flowai's check-skills.ts for every skills/ primitive) reject a description that has no recognized WHEN-trigger phrase. Lazy forms ("How to X", "Helps with X", a bare domain label) fail.
Constraints
| Field | Limit |
|---|
name | Max 64 chars, [a-z0-9-] only, no leading/trailing/consecutive hyphens |
description | Max 1024 chars, no angle brackets <> |
name + description combined | <100 tokens (~400 chars; chars/4 approx) — the flowai validator check-skills.ts rejects over-budget catalog metadata. Agents load this tuple at session start for skill discovery; over-budget means the skill won't be visible. Aim for ~75 tokens to leave headroom. |
SKILL.md body | <5000 tokens (~20000 chars; chars/4 approx) — also enforced by check-skills.ts. Plan the budget BEFORE editing: run wc -c <SKILL.md>; if (current + planned-additions) / 4 > 4000 tokens, put the bulk in references/<topic>.md from the start instead of inlining. The cap rejects late, so retry-and-compress cycles waste tool calls. Multiple skills in this repo (maintenance, engineer-skill, engineer-command, write-agent-benchmarks, etc.) already follow this pattern — check their references/ for prior art. |
Common Patterns
Template Pattern
Provide output format templates when consistent structure matters:
## Report structure
ALWAYS use this template:
# [Title]
## Executive summary
[One-paragraph overview]
## Key findings
- Finding 1 with data
## Recommendations
1. Specific action
Examples Pattern
For output quality dependent on seeing examples:
## Commit message format
**Example 1:**
Input: Added user authentication with JWT tokens
Output: feat(auth): implement JWT-based authentication
Workflow Pattern
Break complex operations into steps with checklists:
## Workflow
- [ ] Step 1: Analyze input
- [ ] Step 2: Create mapping
- [ ] Step 3: Validate
- [ ] Step 4: Execute
- [ ] Step 5: Verify
Conditional Workflow Pattern
Guide through decision points:
1. Determine type:
**Creating new?** -> "Creation workflow" below
**Editing existing?** -> "Editing workflow" below
Feedback Loop Pattern
For quality-critical tasks:
1. Make edits
2. Validate: `deno run scripts/validate_skill.ts output/`
3. If fails -> fix -> validate again
4. Only proceed when validation passes
Anti-Patterns
- Windows paths: Use
scripts/helper.py, not scripts\helper.py
- Too many options: Provide a default with escape hatch, not a buffet
- Time-sensitive info: Use "Current method" / "Old patterns (deprecated)" sections
- Inconsistent terminology: Pick one term, use throughout
- Vague names:
code-review not helper or utils
Priming: Output Shape Teaches The Agent
Two lessons for authors changing a skill's output contract (what the final response should look like). Derived from debugging a skill whose output kept leaking into a file even after the write to file directive was removed.
Embedded examples are ground truth
When SKILL.md contains an example output block, the agent treats the shape of that example as the imitation target. A directive like "deliver findings inline in the response" competes with an example that starts with # Report Title (YYYY-MM-DD) + ## 1. Section + - [ ] item — and usually loses. That shape reads as "markdown file to save", and the agent saves it, regardless of the surrounding prose.
Rule: when changing an output contract, audit the example block, not just the directives. Drop file-shaped scaffolding:
# / ## headings → plain-text category labels (1. Section Name).
- Timestamped titles (
# Report (YYYY-MM-DD)) → remove; chat responses don't need titles.
- [ ] checkbox syntax → plain - bullets; checkboxes imply "tracked task file".
The shape must match the target delivery medium. For inline chat output, the example should read like a chat message.
Remove the priming source, don't stack prohibitions
When unwanted behavior is primed by a rule, example shape, or system-level context (e.g., project AGENTS.md rules imported by a benchmark runner), the instinct is to add a negative constraint like Do NOT create files or Rule X does NOT apply to this skill. These rarely beat a shape-level or system-level prior — the agent has to pick a winner, often inconsistently.
Better approach: find the priming source inside the skill and remove it.
- Directive rule pointing at a file (
Output Target: write to <path>) → delete the rule entirely.
- Section title with file connotations (
Reporting, Save report, Persist) → rename (Deliver findings).
- Prose using "report" as a directive noun → switch to "findings" or "output".
- Example shaped like a document → reshape to chat-message form (see above).
Add explicit prohibitions only as a last resort, after reframing fails.
Skill Creation Process
Phase 1: Discovery
Gather from user:
- Purpose and primary use case
- Target IDE and storage location (personal vs project)
- Trigger scenarios (when should agent apply this?)
- Domain knowledge the agent lacks
- Output format preferences
- Existing patterns to follow
If context from prior conversation exists, infer the skill from discussed workflows/patterns.
Phase 2: Design
- Draft skill name (lowercase, hyphens, max 64 chars)
- Write specific, third-person description with WHAT + WHEN
- Outline main sections
- Identify supporting files needed (references, scripts, assets)
Phase 3: Implementation
- Create directory structure
- Write SKILL.md with frontmatter
- Create supporting reference files
- Create utility scripts if needed
- Run
deno run -A scripts/init_skill.ts for scaffolding if starting from scratch
Phase 4: Verification (BLOCKING gate)
Run validation and do NOT finish until it exits 0:
deno run -A scripts/validate_skill.ts <path/to/skill-directory>
validate_skill.ts is the portable per-skill FLOOR. It rejects a missing, oversized, or angle-bracketed description AND a description with no WHEN-trigger phrase (e.g. "Use when …"). If it fails, FIX the description and re-run — never proceed while it is red.
Two validators, two roles. validate_skill.ts (bundled here) is the portable floor that runs on ONE skill anywhere. Inside the flowai repo, scripts/check-skills.ts is the repo-wide gate wired into deno task check: it adds the catalog budget (name+description <100 tokens, ~400 chars — stricter than the floor's 1024-char description limit) and applies the same WHEN-trigger requirement to every skills/ primitive. A description can pass the floor yet fail the repo gate on the token budget, so when authoring inside flowai satisfy BOTH.
Description self-review rubric (BLOCKING — a "no" on any line means rewrite before finishing):
Checklist:
Phase 5: Packaging
deno run -A scripts/package_skill.ts <path/to/skill-directory> [output-directory]
Creates a .skill zip file for distribution.
Phase 6: Iterate
- Use skill on real tasks
- Notice struggles or inefficiencies
- Update SKILL.md or bundled resources
- Test again
Design Patterns Reference