원클릭으로
create-skill
Use this skill when the user asks to create a new agent skill — scaffold, audit, and link into detected agents.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Use this skill when the user asks to create a new agent skill — scaffold, audit, and link into detected agents.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Use this skill when deploying a static site to GitHub Pages — configures base path, Actions workflow, and Pages source.
Use this skill when a published-package change needs a changeset (monorepos supported).
Use this skill when auditing a SKILL.md for structure, quality, and security before installing or committing.
Use this skill when looking for curated skill recommendations from awesome lists, with exact install commands.
Use this skill when a PR fails security or vulnerability checks (audit, CVE, Dependabot, Snyk, or advisory blocks).
Use this skill when creating GitHub or GitLab issues; searches for duplicates before filing.
| name | create-skill |
| description | Use this skill when the user asks to create a new agent skill — scaffold, audit, and link into detected agents. |
| metadata | {"internal":true} |
When the user asks to create a new skill, follow this convention.
Pick the placement before scaffolding:
| Placement | Location | Notes |
|---|---|---|
| User | ~/.agents/skills/<name>/ | Personal skills across all projects |
| Project private | .agents/skills/<name>/ | Contributor tooling; add metadata: internal: true |
| Project public | skills/<name>/ | Shipped with a package; users install via npx skills add |
Capture the workflow shape separately from placement:
| Pattern | When to use it |
|---|---|
| Process | Ordered multi-step workflow with decision points |
| Tool-based | Consistent use of tools, systems, or connectors |
| Standard | Tone, format, structure, or quality enforcement |
Ask the user if the placement or pattern is ambiguous.
Global skills live in ~/.agents/skills/<name>/ and are linked into each agent's skills directory:
~/.agents/skills/
<name>/
SKILL.md ← source of truth, edit this
~/.claude/skills/
<name> ← symlink → ~/.agents/skills/<name> (Claude Code)
# ...and equivalent paths for other detected agents
Determine the skill placement (above), then create the directory at the matching path.
Check whether npx skills is available:
npx skills --version 2>/dev/null
If available, use it to scaffold the skill:
npx skills init <name> --dir ~/.agents/skills
This creates ~/.agents/skills/<name>/SKILL.md with a starter template. Edit that file to fill in the real content.
If not available, create manually:
mkdir -p ~/.agents/skills/<name>
Then write ~/.agents/skills/<name>/SKILL.md using this template:
---
name: <name>
description: Use this skill when <trigger condition>. <One-line summary of what it does.>
---
# <Name>
## When to use
<Describe when this skill should be used.>
## Instructions
1. First step
2. Second step
Run automated checks first:
npx cyber-skills@<version> audit validate --path ~/.agents/skills/<name>
Fix any CRITICAL findings before proceeding.
Then invoke the audit-skill agent skill for full review (Q6–Q12, E3–E8, P1–P3). Do not continue to step 3 if any CRITICAL findings remain.
If npx skills is available:
npx skills add ~/.agents/skills/<name>
This detects all installed agents and prompts the user to choose which ones to link. It handles the correct path for each agent (Claude Code, Cursor, Codex, OpenCode, etc.).
Known issue: npx skills has a bug where it may not create ~/.claude/skills/ if the directory doesn't exist yet. After linking, verify:
ls ~/.claude/skills/<name>
If missing, fall back to the manual step below.
If npx skills is not available, or the symlink is missing after the above:
ln -sf ~/.agents/skills/<name> ~/.claude/skills/<name>
Adjust the target path for other agents as needed (e.g., ~/.cursor/skills/, ~/.opencode/skills/).
Before writing content, load the skill-design governance:
npx cyber-skills@<version> governance show skill-design
Read stdout as the authoritative rules for principles, progressive disclosure, description structure, and when to extract deterministic logic to scripts or existing project CLIs.
If the skill includes a scripts/ directory or documents CLI commands agents run, also load agent-tool-output:
npx cyber-skills@<version> governance show agent-tool-output
Read stdout as the authoritative rules for stdout, JSON, non-interactive paths, and stderr.
~/.agents/skills/ is the source of truth — commit or back up this directory.~/.claude/skills/) only contain symlinks; never edit files there directly.description frontmatter field is what agents read to decide when to activate the skill — make it specific and include "Use this skill when" trigger language. For sub-skills, prefix with "Internal skill:" to prevent unintended activation.