用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/videojs/v10 --skill create-skill命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
| name | create-skill |
| description | Create repository skills. Use for repeatable agent workflows. |
Create a skill only when a repeatable vertical workflow needs instructions beyond what code, tests, existing docs, and general model capability already provide.
Collect concrete trigger and non-trigger examples.
Check existing skills for overlap; extend or consolidate before adding another metadata entry.
Choose one coherent job and a globally unique, verb-first kebab-case name.
Create .agents/skills/<name>/SKILL.md with only portable frontmatter:
---
name: <name>
description: <what it does and when to use it>
---
Put only essential procedure, project-specific gotchas, inputs/outputs, one compact example, and validation in SKILL.md.
Add a references/ file only for conditional detail and link it directly with an explicit read condition. Add a tested script only for repeated deterministic work.
Do not tell a skill to load a sibling skill. Give related skills precise, overlapping descriptions so hosts can compose them from the task.
Run pnpm link:aliases to refresh compatibility directory links.
Update AGENTS.md only when its compact routing index needs the skill.
Run pnpm check:workspace.
Read references/principles.md for scope/context decisions, references/structure.md for non-trivial resource layout, and references/patterns.md only when the workflow needs an established pattern. Do not load them by default.
Create another skill only when it has an independent trigger and useful standalone workflow. Keep supporting knowledge as a reference. Do not add auxiliary changelogs, duplicated project docs, generic tutorials, or variants that belong in one parameterized workflow.
Input: “Create a repeatable workflow for reviewing package export changes.”
Output: One focused .agents/skills/review-package-exports/ skill with a precise trigger, compact procedure, example result, and validation loop.
Write generated Video.js API reference pages. Use for components, hooks, controllers, factories, builder compatibility, demos, or extracted JSDoc.
Create VJSC modules. Use for UI and styles.
Implement an SPF use-case composition. Use when a delivery scenario combines feature variants and requires composition, tests, and status updates.