Agent Skills
Prompt Pie skills follow the Agent Skills specification for cross-tool compatibility.
When you set a piece to skill mode, it follows the Agent Skills specification - an open format for portable AI skills.
What this means
Skills you create in Prompt Pie work with any tool that supports the Agent Skills spec. Download a skill as a .md file and drop it into Claude Code, Codex, Cursor, or any compatible agent.
If you want Prompt Pie to manage those local skill files for you, use the ppie CLI. It creates the right directories and links one source-of-truth skill into Claude Code, Codex, and Cursor for you.
Skill format
A skill in Prompt Pie maps to a SKILL.md file with YAML frontmatter:
---
name: my-skill
description: What this skill does and when to use it.
---
Your skill instructions here.Key fields
| Field | Required | What it does |
|---|---|---|
name | Yes | Lowercase letters, numbers, hyphens. Max 64 characters. |
description | Yes | Describes what the skill does and when to use it. Max 1024 characters. |
license | No | License name or reference. |
compatibility | No | Environment requirements (e.g. "Requires Python 3.14+"). |
metadata | No | Arbitrary key-value pairs for extra info. |
From Prompt Pie to your tools
- Create a piece and toggle to skill mode
- Fill in the name and description
- Write your skill instructions in the body
- Download as
.mdor copy to clipboard - Drop the file into your AI tool's skills directory
Works with any tool that reads SKILL.md files - Claude Code (.claude/skills/), Codex (.agents/skills/), Cursor (.cursor/skills/), and others.