用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/cyberuni/cyber-asana --skill skillify命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | skillify |
| description | Use this skill when generalizing a workflow from the current session into a reusable SKILL.md. |
| metadata | {"internal":true} |
Extracts a repeatable workflow from what was done in the current session and creates a reusable agent skill from it. Different from create-skill, which scaffolds from a blank template — this skill analyzes what actually happened and generalizes it.
Load the skill-design governance before drafting:
npx cyber-skills@<version> governance show skill-design
Read stdout as the authoritative rules for principles, progressive disclosure, and description structure.
From the session history, extract:
Separate decisions from documentation. The skill should encode what to decide and how — not reference material the model already knows.
Placement:
| Signal | Placement |
|---|---|
| Workflow is personal, not tied to a specific codebase | User (~/.agents/skills/<name>/) |
| Workflow only makes sense for contributors to this repo | Project private (.agents/skills/<name>/) |
| Workflow is meant to be installed by users of this package | Project public (skills/<name>/) |
Pattern:
| Signal | Pattern |
|---|---|
| Ordered workflow with multiple decisions or phases | Process |
| Workflow centered on calling tools or external systems | Tool-based |
| Workflow mainly enforcing tone, structure, or quality | Standard |
Ask the user if the context is ambiguous.
patch-skill, deploy-preview, sync-tokens)Test the description: would an agent activate this skill in the right situation and NOT activate it otherwise?
Use this structure:
---
name: <name>
description: Use this skill when <trigger>. <One-line summary.>
---
# <Title>
## When to use
<Precise trigger conditions>
## Steps
### 1. <Step title>
<Decision logic, not documentation>
### 2. <Step title>
...
## What NOT to do
- <Common mistake or anti-pattern>
Rules:
Per skill-design § Extract deterministic logic, mark any step that:
Add a TODO comment in the skill body:
<!-- TODO: extract to src/<domain>/... -->
Invoke audit-skill on the draft. Fix any CRITICAL findings before continuing.
Key checks to watch for:
Use create-skill conventions:
# If npx skills is available:
npx skills add <path-to-skill>
# Manual fallback:
ln -sf <path-to-skill> ~/.claude/skills/<name>