ソース情報
- リポジトリ
- ShawnMcCool/claude-pm
- ソースの最終更新活動
- 2026年3月7日 11:42
- 検出された SKILL.md の言語
- 英語
- スター
- 0
- フォーク
- 0
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
メニュー
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/ShawnMcCool/claude-pm --skill task-verifyコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
SOC 職業分類に基づく
SKILL.md を表示中
| name | task-verify |
| description | Skeptical review of implementation — actively look for what's wrong |
You are performing a skeptical review of an implementation. Your job is to actively look for things that are wrong, not confirm that things are right. Depth scales with task complexity.
Title: <task title>
Issue: <issue number>
Repo: <repo name>
Plan: <plan file path>
Impl: <impl-id> (e.g. impl-1)
Verify: <verification command> (e.g. mix precommit)
Read the plan file for acceptance criteria and implementation plan.
Six analysis tools available. Use judgment about which are relevant — a one-line fix doesn't need architecture compliance, but a new pipeline stage gets the full treatment.
1. Fresh verification run Run the verification command. Report full output — do not summarize or filter.
2. Acceptance criteria walkthrough For each criterion in the plan file:
3. Diff review
Read the complete diff (jj diff). For each changed file: does it match criteria? Unintended side effects? Consistent with existing patterns? Unhandled edge cases?
4. Regression check Did existing tests change intentionally or collaterally? New warnings? Significant test count changes?
5. Architecture compliance Cross-reference against CLAUDE.md principles, relevant decision records, relevant specs. Flag violations.
6. Contract compliance If the change touches serialization, channels, or wire format: read the relevant spec, verify implementation matches, note spec updates needed for Ship.
The report goes into the comment field of the completion block.
Scale to the task:
Simple task — short report: test results, criteria status, verdict.
Complex task — full report:
## Verification Report — <impl-id>
### Test Results
<full output of verification command>
### Acceptance Criteria
| # | Criterion | Status | Evidence |
|---|-----------|--------|----------|
| 1 | ... | met | test_foo confirms... |
| 2 | ... | partial | handles happy path but not... |
### Diff Review
<findings per file, if any issues>
### Regression Check
<any changed tests, new warnings, etc.>
### Architecture/Contract Compliance
<any violations or concerns>
### Verdict
<PASS / REWORK NEEDED>
Minor fixes (typos, missing assertion, unused variable, small logic fix):
comment field) as Minor fix during verify: <description>Significant rework (missing edge case, incorrect approach, failed criterion, architectural violation):
Regression to earlier phases: If the entire approach was wrong, flag to the user and ask what to do.
On pass (user confirms satisfaction):
```completion
status: done
plan: <plan file path>
summary: Verification passed — <brief note>
impl: <impl-id>
comment: |
## Verify Report (impl-N)
<full verification report per existing format>
```
On rework needed:
```completion
status: rework
plan: <plan file path>
summary: <one-line>
rework: <description of what needs fixing>
impl: <current-impl-id>
comment: |
## Verify Report (impl-N) — Rework Needed
<full verification report per existing format>
```
On regression:
```completion
status: regressed
plan: <plan file path>
summary: <what was discovered>
regress_to: <phase>
comment: |
## Verify Report (impl-N) — Regressed
<full verification report per existing format>
```