plan-phase

plan-phase is a skill for Claude Code, Codex from alicicek/tale-mode. It costs 102 tokens per session (1,470 once invoked), scanned A, original, MIT.

A planning guide for breaking a large feature into smaller, independently deliverable phases. It calls for checking the code, recording reasons for decisions, reviewing the plan with fresh eyes, and defining runnable checks.

In plain words
What is it for?
Use it to plan complex feature work, map dependencies, divide tasks into phases, and define how each phase will be verified.
Why use it?
Large multi-session work can lose track of requirements, assumptions, and unfinished pieces. This guide makes those links explicit before implementation begins.

Skill for Claude CodeCodex

Part of the tale-mode plugin — 6 skills, 2 commands, 1 agent shipped together

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.

agentmods
npx agentmods add skills/alicicek/tale-mode/plan-phase
Any agent
npx skills add alicicek/tale-mode --skill plan-phase
Clone the repo
git clone --depth 1 https://github.com/alicicek/tale-mode

Made for: Claude Code, Codex.

Or install tale-mode, the plugin that ships this one along with the rest of its 6 skills, 2 commands, 1 agent.

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 plan-phase

README.md
[![agentmods](https://agentmods.dev/badge/skills/alicicek/tale-mode/plan-phase.svg)](https://agentmods.dev/skills/alicicek/tale-mode/plan-phase)
Your own site
<a href="https://agentmods.dev/skills/alicicek/tale-mode/plan-phase"><img src="https://agentmods.dev/badge/skills/alicicek/tale-mode/plan-phase.svg" alt="Measured on agentmods" height="20"></a>
Per session 102 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,470 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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 $0.00102 $0.01470
Opus 5 $0.00051 $0.00735
Sonnet 5 $0.00020 $0.00294
Haiku 4.5 $0.00010 $0.00147

Measured 4d ago against content hash 726116a4081c, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

plan-phase 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 4d 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.

plugins/tale-mode/skills/plan-phase/SKILL.md · 82 lines

How it starts

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

Plan a phase (high bar)

Cross-platform note. This is the skill form of the /tale-mode:plan-phase Claude Code command, for hosts where slash commands don't exist (e.g. Codex). The two are kept in sync — if you edit one, mirror the other. On Codex there is no $ARGUMENTS: take the task to plan from the user's prompt. If your host has a plan mode, enter it — and keep recon prompt-hygiene: prefer the host's dedicated read tools over shell, keep shell recon to plain single-purpose read-only commands (on Claude Code, simple ls/cat/grep/git log chains auto-approve via the bundled plan-mode hook), and route loop-heavy sweeps through read-only sub-agents.

Plan the user's task at a high bar. Do not skip a step:

  1. Open with a grill (only when the brief leaves real gaps). Before designing, close the owner-shaped gaps interview-style: outcome-first questions (the owner decides outcomes; the machine owns mechanisms), ONE at a time, each with a recommended answer; challenge vague answers ("fast" = what latency?). Never ask what the code or live docs can answer — that's §1's job. A settled brief skips this step.

  2. Verify, don't trust. Spawn a read-only sub-agent (Claude Code: an Explore agent; Codex: a sub-agent) to read the relevant code and sources; confirm every claim you'll rely on; cite file:line. Correct any stale assumption explicitly ("the brief says X; the code shows Y at <file:line>"). For any external framework / library / SDK / CLI — especially fast-moving or RC ones — confirm the CURRENT setup against official docs (Context7 / web), not training memory.

  3. Decisions with receipts. A table Decision | Source, where Source is a verbatim quote from the user, an answer you asked for, or "my judgment — rationale: …". Never inscribe a constraint nobody gave you. If the task came from an open-ended discussion with no written brief, first distil that conversation's conclusions into the receipts table — don't plan against un-captured intent.

  4. Ask the real forks. Ask the user about genuine, load-bearing choices you can't resolve from the task / code / a sensible default — batched into one round. Label each option by authority: "In plan", "Engineering alternative", or "Out of scope". Don't mark an option "Recommended" if it contradicts the active plan; to override the plan, say "recommend changing the plan" and cite the exact line.

  5. Adversarial review — fresh eyes, looped. Run a hostile, fresh-context reviewer on your draft (Claude Code: the plan-reviewer agent; Codex: a fresh sub-agent framed as a jaded senior): "try to break this plan — what's stale vs the code, what's a design hole, what's the worst-case input, what will the verification miss?" Fold every confirmed finding in with an ID (C1, C2, …), then re-run it on the revised plan until a fresh pass surfaces nothing material (cap the rounds; gains saturate fast). This is where design holes get caught before they cascade.

  6. Invariants. List what must not break (frozen contracts, do-not-touch, security / privacy / data / money) and assert each in the verification section.

  7. Decompose & sequence — size to sessions. If the task is larger than one sitting, split it into independently-shippable phases — each sized to one session / one PR / one coherent verify-loop, with its own done-criteria, gate, and rollback. Keep each phase thin (intent + gate), not step-by-step — the executor re-derives specifics against live code at kickoff. Name an executor per workstream (builder/codex/runner/main-loop, per the owner's roles table) — the delegation decision belongs at plan time, not mid-build; main-loop workstreams carry a one-line justification (taste or interdependence). Order foundation-first, then independent fan-out. Emit a progress tracker and a per-phase kickoff cue so the plan self-documents how to start each phase: on Claude Code /tale-mode:kickoff-phase <this-file> "Phase N"; on Codex, invoke the kickoff-phase skill (from /skills) naming this file + "Phase N".

Read the full file on GitHub · 82 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. 4d ago First seen · 82 lines · 102 tokens per session scan A 726116a4081c

Subscribe to this mod's changes

plan-phase is a skill published in the GitHub repository alicicek/tale-mode (36 stars, last pushed 2mo ago), licensed MIT. It adds 102 tokens to every session and 1,470 once invoked, about $0.0005 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.

Related

Other skills, from other repositories

run

Conduct a task end to end, from a one-line fix to a multi-day programme - a short interview, then autonomous execution to the finish. Classifies the task S/M/L/XL, configures itself to the repo, routes each role to a cost tier, drives the agent team from the kanban board, and stops only at genuine decisions. Use for…

jjanczur/tyran · 97 tokens

procoder

Work like a senior developer in a repository governed by procoder: run the commit gate before calling anything done, format and lint through the binary, and drive the spec, plan, todo, backlog, and sprint chain in .procoder/. Use this skill when the repository contains a .procoder/ directory or an AGENTS.md naming…

azrtydxb/procoder · 101 tokens

status

Where is the work right now. Regenerates the projections and the kanban board from the journal and answers with the progress line, the agents still running, the open gates and the resume steps. Read-only. Use for /tyran:status or when asked what is going on.

jjanczur/tyran · 58 tokens

retro

Engineering retrospective from git metrics. Reports deployment frequency, release cycle span, churn hotspots, backlog health. Outputs narrative report with 3+ actionable items. Flags: --since, --path, explicit range argument.

greglas75/zuvo · 44 tokens

backlog

Manage the project's tech debt backlog. Add, list, fix, wontfix, delete, prioritize, and suggest batch actions on tracked issues. Used by audit and review skills to persist findings, and directly by users to manage accumulated debt. Modes: list [category], add [description], fix B-{N}, wontfix B-{N} [reason], delete…

greglas75/zuvo · 85 tokens

docs-keeper

Maintains the four living documents of a hi-vibe project: CLAUDE.md (lean project context — constraints, pitfalls, rationale), per-folder MODULE.md (detailed design), handover.md (session-to-session context log), CHANGELOG.md (substantive change history, Keep a Changelog). Use for /hi-vibe:init, :handover, :log…

jx-hxxx/hi-vibe · 217 tokens