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 Azzygoatcoder/agent-useful-skills --skill writing-plansgit clone --depth 1 https://github.com/Azzygoatcoder/agent-useful-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/azzygoatcoder/agent-useful-skills/writing-plans)<a href="https://agentmods.dev/skills/azzygoatcoder/agent-useful-skills/writing-plans"><img src="https://agentmods.dev/badge/skills/azzygoatcoder/agent-useful-skills/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.
<a href="https://agentmods.dev/skills/azzygoatcoder/agent-useful-skills/writing-plans"><img src="https://agentmods.dev/badge/skills/azzygoatcoder/agent-useful-skills/writing-plans.svg" alt="Reviewed on agentmods" width="80" 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.00021 | $0.01710 |
| Opus 5 | $0.00010 | $0.00855 |
| Sonnet 5 | $0.00004 | $0.00342 |
| Haiku 4.5 | $0.00002 | $0.00171 |
Grade A, and why
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 10d 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.
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.
Writing Plans
Overview
Write comprehensive implementation plans assuming the engineer has zero context for our codebase and questionable taste. Document everything they need to know: which files to touch for each task, code, testing, docs they might need to check, how to test it. Give them the whole plan as bite-sized tasks. DRY. YAGNI. TDD. Frequent commits.
Assume they are a skilled developer, but know almost nothing about our toolset or problem domain. Assume they don't know good test design very well.
Announce at start: "I'm using the writing-plans skill to create the implementation plan."
Context: If working in an isolated worktree, it should have been created via the superpowers:using-git-worktrees skill at execution time.
Save plans to: docs/superpowers/plans/YYYY-MM-DD-<feature-name>.md
- (User preferences for plan location override this default)
Scope Check
If the spec covers multiple independent subsystems, it should have been broken into sub-project specs during brainstorming. If it wasn't, suggest breaking this into separate plans — one per subsystem. Each plan should produce working, testable software on its own.
Lightweight Plans (Small Changes)
For small changes — a few files, a single feature, no cross-subsystem coordination — the full plan format below is overkill. Write a lightweight plan instead:
# [Feature] Plan
**Goal:** one sentence
**Files:**
- `src/foo.py` — change `bar()`
- `tests/test_foo.py` — add test
**Steps:**
1. Add a failing test for the new behavior
2. Implement it
3. Run `pytest tests/test_foo.py -v` and confirm green
4. Commit
Binding rules in lightweight mode (same as full):
- No placeholders — every step must be concrete, no "TBD"/"implement later"
- Test first — write the failing test before the implementation
- One self-review pass — does each step have a testable outcome?
Use the full format below when the change spans multiple files with interfaces between them, needs global constraints, or the implementer lacks context. When in doubt, lightweight.
What ships with it
1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
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.
- 10d ago First seen · 189 lines · 21 tokens per session scan A 32d30d78ab9c
writing-plans is a skill published in the GitHub repository Azzygoatcoder/agent-useful-skills (6 stars, last pushed 12d ago), licensed MIT. It adds 21 tokens to every session and 1,710 once invoked, about $0.0001 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.
Other skills, from other repositories
dsh-plugin-dev
An authoritative development guide for DeepSeek Harness plugins. DeepSeek Harness is a system where models, tools, services, events, and adapters are built as plugins.
dsh-plugin-client
A development guide for the browser interface of a DSH plugin, including its package structure, registered interface locations, and build setup.
dsh-plugin-dev
A guide for creating and debugging DeepSeek Harness plugins, which are add-ons packaged as npm modules with configuration files.
dsh-plugin-i18n
A pattern for giving a DSH plugin’s user interface English and Chinese text that changes immediately when the selected language changes.
dsh-git-commit
A Git commit guide for writing standardised commit messages and performing basic checks before committing code. Git commits are saved checkpoints in a project’s history.
dsh-dependency-audit
A guide for reviewing and upgrading project dependencies, which are third-party packages the project relies on. It covers security warnings, installation scripts, lock files, breaking changes, tests, rollback plans, and reducing unnecessary dependencies.