Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx skills add syou6162/agent-skills --skill execute-plangit clone --depth 1 https://github.com/syou6162/agent-skillsWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/syou6162/agent-skills/execute-plan)<a href="https://agentmods.dev/skills/syou6162/agent-skills/execute-plan"><img src="https://agentmods.dev/badge/skills/syou6162/agent-skills/execute-plan.svg" alt="Measured on agentmods" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00057 | $0.00840 |
| Opus 5 | $0.00028 | $0.00420 |
| Sonnet 5 | $0.00011 | $0.00168 |
| Haiku 4.5 | $0.00006 | $0.00084 |
Grade A, and why
execute-plan scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 8d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
What it actually says
planモードから実装開始
planモードで作成した計画に基づいて実装を開始します。planファイルの内容を読み取り、タスクリストを作成し、各タスクを順次実行していきます。
- 本スキルでの「planモード」はClaude Code固有の機能です。Planモードが存在しないエージェント環境では、「計画フェーズ」として読み替えてください。
禁止事項
- タスクを完了せずに勝手に終了しない
- すべてのタスクが完了するまで必ず作業を続ける
- planファイルが存在しない場合は実装を開始しない
実行手順
1. planファイルの特定
.claude_work/plans/ ディレクトリ内のplanファイルを特定します。
ls -t .claude_work/plans/*.md | head -n 1
- 最終更新日が最も新しいファイルを使用(
ls -tで降順ソート、head -n 1で最新の1ファイルを取得) - ファイルが存在しない場合: ユーザーに報告して終了
2. planファイルの読み取り
特定したplanファイルをReadツールで読み取ります。
3. タスクリストの作成
planファイルの「実行計画」セクションから各ステップを抽出し、タスクリストを作成します(Claude CodeではTaskCreateツール、他のエージェントでは同等のタスク管理機能を使用)。
各タスクは以下の形式で作成してください:
- subject: ステップのタイトル(簡潔に)
- description: ステップの詳細内容
- activeForm: 「〜を実行中」形式
最後に「Codex レビューを実行」タスクを追加します。
4. タスクの順次実行
タスクリストの順番に従って、各タスクを実行します。
各タスクについて:
- タスクを
in_progressに更新(Claude CodeではTaskUpdateツール、他のエージェントでは同等のタスク管理機能を使用) - タスクの内容を実行
- タスクを
completedに更新 - タスクの変更をコミット作成(
git addとgit commitでタスク単位の意味のあるコミットメッセージを付ける)
5. 最終レビュー
すべての実装タスクが完了したら、最後にcodex-reviewスキルを実行します(Claude Codeでは Skill(syou6162-agent-skills:codex-review))。
注意事項
- このスキルはオーケストレーションが役割です。実装そのものはメインエージェントが行います。
- 各タスク完了時に必ずコミットを作成してください。
- すべてのタスクが完了するまで作業を続けてください。
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 8d ago First seen · 72 lines · 0 tokens per session scan A 3620a17a7add
execute-plan is a skill published in the GitHub repository syou6162/agent-skills (11 stars, last pushed 2mo ago), licensed MIT. It adds 57 tokens to every session and 840 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other skills, from other repositories
create-pr
Creates a GitHub PR with a Linear-ticket-prefixed title and a decision-led, narrative description for prisma-next. Use when the user wants to create a pull request, open a PR, or submit changes for review.
git-commit
Generate well-formatted git commit messages following conventional commit standards.
mcore-split-pr
Split a PR into multiple PRs to reduce the number of required CODEOWNERS reviewer groups.
contributing
How to contribute to evlog, covering commit and PR conventions, changesets, the Definition of Done, testing rules, and the authored skills that walk through building a new adapter, enricher, framework integration, or map rule. Load this for any question about contributing, opening a PR, or adding something to the…
strict-tdd
Strict RED->GREEN->REFACTOR test-driven development with enforcement. Never write production code before a failing test. Atomic commits per TDD cycle.
git-commit
Creates git commits following Conventional Commits format with type/scope/subject and detailed markdown body. Use when user wants to commit changes, create commit, save work, or stage and commit. Enforces project-specific conventions from CLAUDE.md. Each change type gets its own markdown heading (# emoji + type), with…