소스 정보
- 저장소
- tools-only/X-Skills
- 최근 소스 활동
- 2026년 2월 13일 13:22
- 감지된 SKILL.md 언어
- 영어
- 스타
- 7
- 포크
- 1
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/tools-only/X-Skills --skill check-fixes명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | check-fixes |
| description | Runs orc.md review then checks if later Fixes: commits reveal missed bugs |
You run the full orc.md review workflow on a commit, then evaluate whether the
review caught bugs that were later fixed by subsequent commits carrying
Fixes: tags referencing the reviewed commit.
This is a two-stage protocol. Stage 1 delegates to orc.md exactly. Stage 2 performs the Fixes: search and evaluation. Both stages are mandatory.
You will be given:
All of these inputs are passed through verbatim to orc.md in Stage 1.
Example invocation:
Analyze commit abc123 using prompts from /path/to/prompts
Search forward to def456 for the end of the series
Spawn the orchestrator agent exactly as korcreview would. Pass through ALL inputs, flags, and optional instructions verbatim.
Task: review-orchestrator
Model: sonnet
Prompt: Read the prompt file <prompt_dir>/agent/orc.md and execute it.
Commit reference: <commit>
Prompt directory: <prompt_dir>
<all optional flags, series/range info, and additional instructions>
Wait for the orchestrator to complete. Do not proceed to Stage 2 until it finishes.
Record from the orchestrator output:
./review-inline.txt was createdFrom the reviewed commit, determine:
commit_sha: The full 40-character SHAshort_sha: The first 12 characters of the SHAsubject: The commit subject line (first line of commit message)Search the range <commit_sha>..<end_point> for commits whose messages
contain a Fixes: tag referencing our commit.
The Fixes: tag format is: Fixes: <sha> ("<subject>")
Commits may reference ours by:
short_sha
(first 12 chars) or any prefix thereof (minimum 8 chars)Use find_commit with regex_patterns to search:
find_commit(
git_range: "<commit_sha>..<end_point>",
regex_patterns: ["Fixes:.*<short_sha_first_8_chars>"]
)
If no results, also try matching by subject (escape regex metacharacters):
find_commit(
git_range: "<commit_sha>..<end_point>",
regex_patterns: ["Fixes:.*<escaped_subject_fragment>"]
)
Use a distinctive fragment of the subject (15-30 chars) rather than the full subject to account for minor formatting differences.
If semcode isn't available, just do your best with git commands. You'll get there.
For each candidate commit found:
find_commit(git_ref: "<candidate_sha>")Fixes: tag lineCollect all validated Fixes: commits into a list.
| Fixes: commits found? | Action |
|---|---|
| No | Exit. Output: NO FIXES FOUND — review evaluation not applicable |
| Yes | Proceed to Stage 3 |
For each validated Fixes: commit:
Load the full Fixes: commit (message + diff) using:
find_commit(git_ref: "<fixes_sha>", verbose: true)
If semcode isn't available, just use git
Determine:
Read ./review-inline.txt (if it exists).
Search the review output for evidence that the bug was identified:
Matching criteria — the review caught the bug if ANY of these are true:
If ./review-inline.txt does not exist, the review found no issues at all —
the bug was missed.
Important: A bug is either caught or missed. There is no third option. Do not skip bugs because they seem hard to catch, require runtime testing, or involve hardware-specific knowledge. If the review did not flag it, it is missed. Use the other classification in Stage 4 for bugs that are beyond the current review architecture's capabilities.
| Review caught bug? | Action |
|---|---|
| Yes | Record as caught, continue to next Fixes: commit |
| No | Record as missed, will report in Step 4 |
If ALL bugs from Fixes: commits were caught by the review:
ALL BUGS CAUGHT — review was effectiveIf ANY bugs were missed:
Output file: ./review-failed.md — use this exact filename, no variations.
Create ./review-failed.md with the following structure:
# Review Failure Report
## Reviewed Commit
- **SHA**: <full_sha>
- **Subject**: <subject>
## Fixes Commits Found
<For each Fixes: commit, list SHA, subject, and whether the bug was caught>
## Missed Bugs
<For each missed bug:>
### Bug N: <short description>
**Fixes commit**: <sha> ("<subject>")
**Bug type**: <NULL deref | UAF | race | leak | logic error | locking | other>
**Location**: <file>:<>
:
:
:
| Bug | Classification | Rationale |
|-----|---------------|-----------|
| Bug N | | |
Classifications:
: The review prompts lack specific knowledge
about the subsystem patterns, APIs, or invariants needed to catch this bug.
The reviewer would need domain-specific rules that don't currently exist in
the subsystem guides.
: The review prompts and knowledge exist to catch this bug,
but the analysis process failed to apply them correctly. This includes
insufficient callstack depth, skipped analysis steps, or failure to follow
existing patterns in technical-patterns.md or callstack.md.
: The bug doesn't fit either category — e.g., it requires runtime
state reasoning, hardware testing, empirically-tuned parameters, workload-
specific timing, test infrastructure portability, device tree completeness
checks, or cross-subsystem analysis that is beyond the current review
architecture. Use this for bugs that no static code review could reasonably
catch. These are still recorded as missed — the classification explains WHY
they were missed, not whether to report them. When a bug is classified as
, the Suggested Prompt Modifications section may note that no prompt
changes are recommended, or suggest only lightweight improvements (e.g.,
documentation, checklists, testing guidance).
Our goal here is to add the most generic instructions possible that catch this class of bug.
Write this file to ./review-failed.md.
Verify the output file is named exactly ./review-failed.md. If you wrote to
any other filename (e.g., review-regression-analysis.md, review-report.md,
etc.), rename it to ./review-failed.md.
================================================================================
CHECK-FIXES COMPLETE
================================================================================
Reviewed commit: <sha> <subject>
Search range: <commit_sha>..<end_point>
Fixes: commits found: <count>
<For each Fixes: commit:>
<sha> <subject> — <CAUGHT | MISSED>
Result: <ALL CAUGHT | FAILURES FOUND | NO FIXES FOUND>
Failure report: ./review-failed.md | not created
================================================================================