with one click
builder
A skill for building and maintaining Agent Skills
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
A skill for building and maintaining Agent Skills
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
| name | builder |
| description | A skill for building and maintaining Agent Skills |
| author | Andrew Howden |
| version | 0.1.0 |
This skill provides instructions for creating, building, and maintaining Agent Skills using the skr tool.
An Agent Skill is a directory containing standardized knowledge and capabilities for an AI agent. It is packaged as an OCI artifact (like a Docker image) and distributed via container registries.
A valid skill directory must contain a SKILL.md file at its root.
my-skill/
├── SKILL.md (Required) Entry point and instructions.
├── references/ (Optional) Supporting documentation.
├── scripts/ (Optional) Executable tools.
└── assets/ (Optional) Static files.
The SKILL.md file is the core of the skill. It MUST strictly follow this format:
---
name: "my-skill"
description: "A brief description of the skill."
---
# My Skill
Detailed instructions on how to use this skill...
Frontmatter Rules:
name: [Required] 1-64 characters, lowercase alphanumeric and hyphens. Should match the directory name.description: [Required] 1-1024 characters.To create a new skill, create a directory and a SKILL.md file.
mkdir path/to/skill-nameSKILL.md with appropriate frontmatter.To package a skill into an artifact:
skr build path/to/skill-name --tag my-skill:v1
SKILL.md for zero-latency execution.references/ directory for deep-dive technical documentation to keep SKILL.md concise.