Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/tomevault-io/skills-registry --skill reviewing-skills명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
SOC 직업 분류 기준
| name | reviewing-skills |
| description | > Use when this capability is needed. |
Review the relevant skills and instructions after any work that changes:
The rule is simple: if the code changed, check whether the instructions still match.
For each skill touched by your changes, verify these in order:
Every code block in a skill should use real types, real method signatures, and real parameter names from the current codebase. The most common failure mode is fabricated or stale API usage — a method that was renamed, a parameter that was added, or a constructor whose signature changed.
To verify, pick each code example and check the actual source:
# Find the real signature
grep -rn "public.*MethodName" src/
Common drift patterns:
Common/src/ vs src/Common/)When a skill states a specific number (priority value, buffer threshold, step count, character limit), verify it against the source constant or definition. These drift silently when someone changes a constant without updating the documentation.
Check the USE FOR / DO NOT USE FOR fields in the YAML frontmatter. After adding a new feature or project, an existing skill's scope may need updating — either to include the new area or to explicitly redirect to a new skill.
Each skill's ## Cross-References section should link to skills that still exist and still cover the referenced topic. If a skill was renamed, split, or merged, update all inbound references.
The main copilot-instructions.md should contain brief summaries with cross-references to skills for depth. If you find the same detailed content in both places, condense the main instructions copy to a summary and cross-reference.
When a new area of the codebase deserves its own skill:
.github/skills/<name>/SKILL.mdname, description, USE FOR, and DO NOT USE FORcopilot-instructions.md.\docs\update-code-sample-catalog.ps1 -UpdateFile .github/skills/<name>/SKILL.md
A skill earns its place when the assistant repeatedly struggles with a specific area, not when an area merely exists.
When a skill or instruction existed but you did not follow it, treat that as a defect in the instructions — not just a one-off mistake. The instruction failed to trigger at the right moment, and the fix is to understand why and close the gap.
Ask these questions:
After root-causing, update the instruction to close the gap — then verify the updated instruction would have caught the original failure.
For a periodic audit of all skills (e.g., after a major release):
Review agents frequently flag things that are actually correct:
src-v4/ that are referenced by V5 projects via project referencesAlways verify against the actual source before changing a skill.
These principles keep skills effective as AI context:
copilot-instructions.mddocs/CodeSampleCatalog.mdSource: corvus-dotnet/Corvus.JsonSchema — distributed by TomeVault.