planner

planner is a skill for Claude Code, Codex from junghwaYang/oh-my-codex. It costs 0 tokens per session (533 once invoked), scanned A, original, MIT.

An interview-based planning guide for complex software projects and major design decisions.

In plain words
What is it for?
Use it when starting a project, choosing an architecture, clarifying ambiguous requirements, or deciding milestones before coding.
Why use it?
It turns unclear requirements into an agreed plan by asking about goals, existing systems, constraints, and other needs before implementation. The plan is then broken into phases and documented.

Skill for Claude CodeCodex

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/junghwayang/oh-my-codex/planner
Any agent
npx skills add junghwaYang/oh-my-codex --skill planner
Clone the repo
git clone --depth 1 https://github.com/junghwaYang/oh-my-codex

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 planner

README.md
[![agentmods](https://agentmods.dev/badge/skills/junghwayang/oh-my-codex/planner.svg)](https://agentmods.dev/skills/junghwayang/oh-my-codex/planner)
Your own site
<a href="https://agentmods.dev/skills/junghwayang/oh-my-codex/planner"><img src="https://agentmods.dev/badge/skills/junghwayang/oh-my-codex/planner.svg" alt="Measured on agentmods" height="20"></a>
Per session 0 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 533 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.00000 $0.00533
Opus 5 $0.00000 $0.00267
Sonnet 5 $0.00000 $0.00107
Haiku 4.5 $0.00000 $0.00053

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

Security

Grade A, and why

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

.codex/skills/planner/SKILL.md · 105 lines

How it starts

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

Planner Skill

Interview-driven planning for complex projects.

When to Use

  • Starting a new project
  • Major architectural decisions
  • Unclear or ambiguous requirements
  • When user says "plan" or wants to think before doing

When NOT to Use

  • Simple, well-defined tasks
  • Urgent fixes
  • When user explicitly wants immediate action
  • Follow-up work on existing plans

Workflow

1. INTERVIEW
   - Ask 3-5 clarifying questions
   - Understand constraints and preferences
   - Identify non-obvious requirements

2. SYNTHESIZE
   - Summarize understanding
   - Confirm with user before proceeding

3. ARCHITECT
   - Design high-level structure
   - Identify components and relationships
   - Choose patterns and technologies

4. DECOMPOSE
   - Break into phases
   - Define milestones
   - Estimate effort

5. DOCUMENT
   - Save to .codex/plans/{project-name}.md
   - Include decision rationale

Interview Questions Template

Ask in order of importance, stop when you have enough:

  1. Goal: "What's the end result you're looking for?"
  2. Context: "What existing code/systems does this interact with?"
  3. Constraints: "Any tech stack requirements or limitations?"
  4. Timeline: "Is this urgent or can we iterate?"
  5. Quality: "What's more important - speed or polish?"

Plan Document Structure

# Project: {name}
Date: {date}
Status: Planning | In Progress | Complete

## Overview
{2-3 sentence summary}

## Requirements
### Must Have
- {requirement}

### Nice to Have
- {requirement}

## Architecture
{diagram or description}

## Phases
### Phase 1: {name}
- {task}
- {task}
Milestone: {what's done when phase completes}

### Phase 2: {name}
...

## Tech Decisions
| Decision | Choice | Rationale |
|----------|--------|-----------|
| {what} | {choice} | {why} |

## Risks
- {risk}: {mitigation}

## Open Questions
- {question}

Examples

Good trigger:

"plan: I want to build a CLI tool for managing my dotfiles"

Good trigger:

"Let's think through how to architect the payment system"

Read the full file on GitHub · 105 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 · 105 lines · 0 tokens per session scan A 669e62982b48

Subscribe to this mod's changes

planner is a skill published in the GitHub repository junghwaYang/oh-my-codex (5 stars, last pushed 6mo ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 533 tokens. 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

systematic-debugging

Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes.

obra/superpowers · 21 tokens

brainstorming

You MUST use this before any creative work - creating features, building components, adding functionality, or modifying behavior. Explores user intent, requirements and design before implementation.

obra/superpowers · 37 tokens

auto-perf-optimize

Run agent-driven VS Code performance or memory investigations. Use when asked to launch Code OSS, automate a VS Code scenario, run the Chat memory smoke runner, capture renderer heap snapshots, take workflow screenshots, compare run summaries, or drive a repeatable scenario before heap-snapshot analysis.

microsoft/vscode · 62 tokens

chat-perf

Run chat perf benchmarks and memory leak checks against the local dev build or any published VS Code version. Use when investigating chat rendering regressions, validating perf-sensitive changes to chat UI, or checking for memory leaks in the chat response pipeline.

microsoft/vscode · 51 tokens

chat-pet-sprite-creation

Use when creating or changing VS Code chat pet sprite art, sprite sheets, state animations, eye treatments, Stable/Insiders variants, or pet transitions under src/vs/workbench/contrib/chat/browser/widget/media/chatPet.

microsoft/vscode · 53 tokens

cpu-profile-analysis

Analyze V8/Chrome CPU profiles (.cpuprofile) and DevTools trace files (Trace-.json). Use when: profiling performance, investigating slow functions, comparing code paths, finding bottlenecks, analyzing timeToRequest, understanding call trees from sampling profiler data, analyzing layout/paint/rendering, investigating…

microsoft/vscode · 71 tokens