awesome-writing-plans

awesome-writing-plans is a skill for Claude Code, Codex from sramji/awesome-superpowers. It costs 89 tokens per session (2,023 once invoked), scanned A, original, MIT.

A process for writing an implementation plan and then reviewing it for realistic test gaps. It can extend the plan or record risks that are deliberately left for later.

In plain words
What is it for?
Use it when preparing a project implementation plan, checking whether the proposed tests cover likely failures, and handing the reviewed plan to the person or process that will execute it.
Why use it?
It helps catch failure cases that a normal plan might miss before someone starts coding.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: mentions subagents.

Good fit Use it when preparing a project implementation plan, checking whether the proposed tests cover likely failures, and handing the reviewed plan to the person or process that will execute it.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/sramji/awesome-superpowers/awesome-writing-plans
Install

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.

Any agent
npx skills add sramji/awesome-superpowers --skill awesome-writing-plans
Clone the repo
git clone --depth 1 https://github.com/sramji/awesome-superpowers

Made for: Claude Code, Codex.

Wrote 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.

agentmods badge for awesome-writing-plans

README.md
[![agentmods](https://agentmods.dev/badge/skills/sramji/awesome-superpowers/awesome-writing-plans/github.svg)](https://agentmods.dev/skills/sramji/awesome-superpowers/awesome-writing-plans)
Your own site
<a href="https://agentmods.dev/skills/sramji/awesome-superpowers/awesome-writing-plans"><img src="https://agentmods.dev/badge/skills/sramji/awesome-superpowers/awesome-writing-plans/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for awesome-writing-plans

Your own site · 80×15
<a href="https://agentmods.dev/skills/sramji/awesome-superpowers/awesome-writing-plans"><img src="https://agentmods.dev/badge/skills/sramji/awesome-superpowers/awesome-writing-plans.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 89 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,023 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce invoked
Fable 5.1 $0.00089 $0.02023
Opus 5 $0.00044 $0.01012
Sonnet 5 $0.00018 $0.00405
Haiku 4.5 $0.00009 $0.00202

Measured 11d ago against content hash d653f6f3b6fe, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

awesome-writing-plans 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 11d 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.

skills/awesome-writing-plans/SKILL.md · 189 lines

How it starts

The opening of the file, as written. The whole thing — 189 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Awesome Writing Plans

Overview

Project-level wrapper for superpowers:writing-plans that adds a fresh-subagent rigor review loop after the plan is written and before handoff to executing-plans. Each round asks "what realistic failure mode would survive these tests?" and the main agent either extends the plan with a closing test or marks the gap out-of-scope with a written rationale. Loop runs up to 3 rounds; terminates on 0 critical gaps or escalates to the user with a summary.

Announce at start: "I'm using the awesome-writing-plans skill — write the plan with a ≤3-round test-rigor pass before handoff."

Core principle: Run upstream writing-plans → Pass B rigor loop → extend or defer each critical gap → handoff to executing-plans.

The Process

digraph awesome_writing_plans {
    rankdir=TB;
    upstream [label="Step 1: Run\nsuperpowers:writing-plans" shape=box];
    written [label="Plan written" shape=box];
    self_review [label="Upstream Self-Review\n(inline checklist)" shape=box];
    round [label="Step 2: Pass B Round N\nDispatch subagent" shape=box];
    gaps [label="Critical gaps\nreturned?" shape=diamond];
    address [label="Extend plan OR\nadd to Deferred Risks" shape=box];
    cap [label="Round count\n≥ 3?" shape=diamond];
    escalate [label="Escalate to user\nwith summary" shape=box];
    handoff [label="Step 3: Handoff to\nexecuting-plans" shape=doublecircle];

    upstream -> written;
    written -> self_review;
    self_review -> round;
    round -> gaps;
    gaps -> address [label="yes"];
    gaps -> handoff [label="no"];
    address -> cap;
    cap -> escalate [label="yes"];
    cap -> round [label="no"];
    escalate -> handoff;
}

Step 1: Run upstream writing-plans

Invoke superpowers:writing-plans.

Run it to completion through its own "Self-Review" step. Do not proceed to the upstream skill's "Execution Handoff" step until Pass B runs (Step 2). The override inserts between self-review and execution-handoff.

Read the full file on GitHub · 189 lines

Changes

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.

  1. 11d ago First seen · 189 lines · 89 tokens per session scan A d653f6f3b6fe

Subscribe to this mod's changes

awesome-writing-plans is a skill published in the GitHub repository sramji/awesome-superpowers (3 stars, last pushed 2mo ago), licensed MIT. It adds 89 tokens to every session and 2,023 once invoked, about $0.0004 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-31.

Related

Other skills, from other repositories