一键导入
update-plan
プランモード完了直前に、プランファイルの品質を `update-design` 同等の基準で検証・改善し、合格してから `ExitPlanMode` を呼ぶ統合スキル。
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
プランモード完了直前に、プランファイルの品質を `update-design` 同等の基準で検証・改善し、合格してから `ExitPlanMode` を呼ぶ統合スキル。
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
Forces the laziest solution that actually works, simplest, shortest, most minimal. Channels a senior dev who has seen everything: question whether the task needs to exist at all (YAGNI), reach for the standard library before custom code, native platform features before dependencies, one line before fifty. Supports intensity levels: lite, full (default), ultra. Use on ANY coding task: writing, adding, refactoring, fixing, reviewing, or designing code, and choosing libraries or dependencies. Also use whenever the user says "ponytail", "be lazy", "lazy mode", "simplest solution", "minimal solution", "yagni", "do less", or "shortest path", or complains about over-engineering, bloat, boilerplate, or unnecessary dependencies. Do NOT use for non-coding requests (general knowledge, prose, translation, summaries, recipes).
タスク完了時に simplify と update-docs を順に実行し、最後に /compact のリマインドを出す。Stop hook の block reason から起動されるか、user が「タスク完了」「/wrapup」と言ったときに発動する。
Interview the user relentlessly about a plan or design until reaching shared understanding, resolving each branch of the decision tree. Use when user wants to stress-test a plan, get grilled on their design, or mentions "grill me".
ptuf の `docs/design/` 配下の設計書を評価・改善するスキル。フィルタ判定ロジックや PreToolUse フック契約の整合性を `src/` と突き合わせて検証する。
ptuf のドキュメント (README.md, docs/design/, CLAUDE.md) を最新の `src/` に追従させる更新スキル。
基于 SOC 职业分类
| name | update-plan |
| description | プランモード完了直前に、プランファイルの品質を `update-design` 同等の基準で検証・改善し、合格してから `ExitPlanMode` を呼ぶ統合スキル。 |
ptuf の plan モード完了直前に、プランファイルの完成度を担保するための 4 フェーズ。
docs/design/ の関連設計書、README.md、CLAUDE.md、Cargo.toml を読むsrc/ 配下のファイルを読むupdate-design と同じ 5 カテゴリで採点する。合格ライン 90 点。
| カテゴリ | 観点 |
|---|---|
| モジュール / 構造体設計 | プランで触れる Rust 構造体・関数の境界の明確さ |
| フック契約 | PreToolUse 入出力の互換維持、変更箇所の影響範囲 |
| 判定ルール / ポリシー | 拒否ロジックの方針、デフォルト挙動への影響 |
| エラーハンドリング | Result 伝搬、unwrap 禁止、終了コード規約の維持 |
| テスト容易性 | 95% coverage 維持の戦略、テスト追加箇所の具体性 |
src/ の整合(参照しているシンボル名・パスが実在するか)ExitPlanMode を呼んでユーザーに提示するプランファイル書き出しが終わった直後、ExitPlanMode 呼び出し直前に発動する。