skill-creator
Create a new agent skill following the Agent Skills open standard
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
Create a new agent skill following the Agent Skills open standard
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
Create an Architectural Decision Record (ADR) to document a significant design or technology choice
Audit VS Code extensions against the current project stack and recommend keep/add/remove actions
Diagnose and fix a failing CI pipeline or GitHub Actions workflow
Triage a GitHub issue by classifying severity, labelling waste category, proposing next action, and drafting a structured response
Create a new MCP server — clarify purpose, choose transport, scaffold, implement, test, and register
Configure and manage Model Context Protocol servers for external tool access
| name | skill-creator |
| description | Create a new agent skill following the Agent Skills open standard |
| compatibility | >=1.4 |
Skill metadata: version "1.1"; license MIT; tags [meta, authoring, skill, scaffold]; compatibility ">=1.4"; recommended tools [codebase, editFiles, runCommands].
Create a new agent skill that follows the Agent Skills open standard and the project's §12 Skill Protocol.
Tip: VS Code 1.110+ has a built-in
/create-skillslash command that generates a basic scaffold. This skill provides additional Lean/Kaizen guidance: waste-aware naming, PDCA verification steps, and quality gate checks.
Clarify scope — Ask the user: "What workflow should this skill encode? Describe the trigger and the desired outcome in one sentence."
Choose a name — Use a verb-noun kebab phrase describing the workflow (e.g., review-dependencies, scaffold-api-route). The name becomes the directory name under .github/skills/.
Write the frontmatter — Create .github/skills/<name>/SKILL.md with the minimal VS Code-compatible header, then record the richer metadata directly under the title:
---
name: <kebab-name>
description: <one precise sentence - this is how the agent discovers the skill>
---
Then add a note immediately after the # <Name> heading:
> Skill metadata: version "1.0"; license MIT; tags [<2-5 keywords matching common task descriptions>]; compatibility ">=<current template version>"; recommended tools [codebase, editFiles].
Write the body — Structure as:
# <Name>) — human-readable heading.Apply authoring rules (from §12):
Save — Write the file.
Run tests — Verify the new skill file passes any applicable test suite checks.
.github/skills/<name>/SKILL.md existsname and description fields