一键导入
checklist
Convert the current plan, code review, or structured content in context into a persistent markdown checklist file under .claude/plans/
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Convert the current plan, code review, or structured content in context into a persistent markdown checklist file under .claude/plans/
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Reads the diff between the current branch and main and produces a production pre-flight checklist of everything that must be done or configured once the change merges. Use before merging or deploying a branch.
Suggest tests worth writing for a feature using the ZOMBIES heuristic (Zero, One, Many, Boundaries, Interface, Exceptions, Simple scenarios). Pass a free-text feature description, or omit args to use the current branch's diff. Outputs only the categories that apply — not a full ZOMBIES checklist.
🌡️ Evaluate every dependency a branch pulls in — client or server, any language — against the WARM check (Worth it, Alive, Right-sized, Maintained securely). Diffs the branch against a base, finds newly added or upgraded direct dependencies across all manifests, and scores each one. Use when the user asks to "WARM check" a branch, vet new dependencies, or review what a PR adds to the dependency tree.
Triage a branch or diff by grouping changed files into feature areas, assigning each a risk tier (High/Medium/Low), and producing a scannable summary that helps decide where to spend review time. Use when the user asks to "triage" a branch, PR, or diff.
Scan a branch or diff against the First Five checklist (Error Handling, Input Boundaries, External Calls, State Mutations, Assumed Dependencies) and report only genuine concerns. Use when the user asks to "run the first five" on a branch or diff.
Prepare a structured, scannable review checklist for a branch or diff, grouped by feature change and applying the four-pass review order (Types, Data Flow, Business Logic, Edge Cases) within each feature. Use when the user asks to "prep a review", "review order", or wants a checklist to manually walk through changes.
| name | checklist |
| description | Convert the current plan, code review, or structured content in context into a persistent markdown checklist file under .claude/plans/ |
| disable-model-invocation | true |
| allowed-tools | Read, Write, Glob, Bash(mkdir:*), Bash(ls:*) |
Convert the most recent structured content in this conversation (plan, code review, task list, implementation steps, etc.) into a markdown checklist file saved to the project.
Look at the current conversation context. Find the most recent plan, code review, implementation steps, or other structured content. This is what you will convert.
Derive a short, descriptive kebab-case name from the content's topic (e.g., auth-refactor, api-migration, payment-integration). The file will be saved as .claude/plans/<name>-checklist.md.
Before writing, check if .claude/plans/<name>-checklist.md already exists. If it does, ask the user whether to overwrite, choose a different name, or cancel. Do NOT proceed without their answer.
Before converting, assess what level the checkboxes should be at:
- [ ] markers to the major implementation sections/steps — NOT to every tiny sub-step within them. The user has already reviewed and approved this plan; your job is only to make it trackable.- [ ] markers at the level of those large steps. Do not break them down further into micro-checkboxes.Transform the content into a checklist file following these rules:
- [ ] checkbox markers to the top-level actionable sections identified in step 4 - [ ]) should only be used if the original content had an explicit multi-level structure with distinct phases/sub-phasesAdd this exact block at the very top of the file, before any other content:
<!-- CHECKLIST INSTRUCTIONS
IMPORTANT: When working on items in this checklist, you MUST check off each item
(change `- [ ]` to `- [x]`) AS SOON AS it is implemented/completed.
Do not wait until the end — check off each item immediately after finishing it.
This file is the source of truth for tracking progress.
-->
Create .claude/plans/ if it doesn't already exist.
Save the checklist to .claude/plans/<name>-checklist.md.
Tell the user the file path and a brief summary of what was captured. Remind them that items will be checked off as they are completed.