ソース情報
- リポジトリ
- 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コマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
Index of Build Systems Skills
Coordination patterns for distributed dataflow systems including barriers, epochs, and distributed snapshots
Windowing, sessionization, time-series aggregation, and late data handling for streaming systems
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
================================================================================