plan-or-execute

plan-or-execute is a skill for Claude Code from nortonx/ai-tooling-free. It costs 26 tokens per session (418 once invoked), scanned A, original, MIT.

A decision guide that recommends either planning a coding task first or carrying it out directly.

In plain words
What is it for?
Use it for tasks such as adding a debounce, changing authentication, migrating code, or restructuring modules to get a plan-versus-direct recommendation.
Why use it?
It helps developers judge whether a change needs codebase exploration and design before implementation.

Skill for Claude Code

Written for Claude Code: argument-hint in frontmatter.

Good fit Use it for tasks such as adding a debounce, changing authentication, migrating code, or restructuring modules to get a plan-versus-direct recommendation.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/nortonx/ai-tooling-free/plan-or-execute
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 nortonx/ai-tooling-free --skill plan-or-execute
Clone the repo
git clone --depth 1 https://github.com/nortonx/ai-tooling-free

Made for: Claude Code.

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-or-execute

README.md
[![agentmods](https://agentmods.dev/badge/skills/nortonx/ai-tooling-free/plan-or-execute.svg)](https://agentmods.dev/skills/nortonx/ai-tooling-free/plan-or-execute)
Your own site
<a href="https://agentmods.dev/skills/nortonx/ai-tooling-free/plan-or-execute"><img src="https://agentmods.dev/badge/skills/nortonx/ai-tooling-free/plan-or-execute.svg" alt="Measured on agentmods" height="20"></a>
Per session 26 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 418 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.00026 $0.00418
Opus 5 $0.00013 $0.00209
Sonnet 5 $0.00005 $0.00084
Haiku 4.5 $0.00003 $0.00042

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

Security

Grade A, and why

plan-or-execute 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.

skills/plan-or-execute/SKILL.md · 50 lines

What it actually says

Arguments

<task description>

  • Required. A free-text description of the task you're considering — drives the PLAN vs DIRECT recommendation.
  • Examples: /plan-or-execute add a debounce to the search input, /plan-or-execute migrate auth middleware to JWT

Copilot CLI note: $ARGUMENTS doesn't substitute in skills — include the argument inline in your prompt.

Plan or Execute: $ARGUMENTS

Assess whether the task described by $ARGUMENTS needs plan mode (codebase exploration + design before changes) or direct execution (just do it).

Do not enter plan mode yourself. Just recommend.

Decision criteria

PLAN when any is true:

  • Change will touch 3+ files
  • Architectural implication (new pattern, module boundary shift, data-flow change)
  • Multiple valid approaches with non-obvious trade-offs
  • Scope is unclear — the request implies "research before deciding"
  • Migration, restructuring, or library swap

DIRECT when all are true:

  • Single-file or tightly-scoped change
  • Clear acceptance criteria
  • An established pattern in the codebase to copy
  • Low blast radius if wrong

Output

  1. Decision: PLAN or DIRECT
  2. Why: one sentence naming the criterion that decided it
  3. Next step:
    • If PLAN: what to explore first (file patterns, entry points, existing patterns to mirror)
    • If DIRECT: the 1–3 concrete edits to make
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. 8d ago First seen · 50 lines · 26 tokens per session scan A 552b882954bc

Subscribe to this mod's changes

plan-or-execute is a skill published in the GitHub repository nortonx/ai-tooling-free (1 stars, last pushed 24d ago), licensed MIT. It adds 26 tokens to every session and 418 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.

Related

Other skills, from other repositories

docs-sync

Keep project documentation in sync with code changes. Identifies which docs need updating after a PR merges or code changes, drafts the updates, and manages doc site structure (mkdocs, docusaurus, vitepress). Use when: (1) a PR just merged and docs may need updating, (2) the user says "update the docs" or "sync docs"…

chriscox/agent-skills · 147 tokens

project-planner

Triage ideas, problems, and feature requests into the right format: proposal doc, feature issue, or bug report. Repo-aware — discovers templates and docs structure from the current repository. Use when: (1) the user describes an idea, feature, or problem they want to track, (2) the user says "file a bug", "I have an…

chriscox/agent-skills · 131 tokens

intuitive-preflight

Turn a vague task, plan, issue, or "LGTM/go ahead" request into an approval-ready preflight contract before implementation starts. Use when the user wants prompt preflight, clearer scope, non-goals, context package, acceptance criteria, definition of done, verification, stop gates, the exact execution command, or…

MiaoDX/intuitive-flow · 112 tokens

intuitive-squash

Squash local GSD or agent-generated commit history into a clean, reviewable story while preserving important fixes. Use when the user asks to squash commits, clean git history, compress phase commits, prepare a branch before PR, compare aggressive vs moderate squash options, or preserve hotfix/security commits during…

MiaoDX/intuitive-flow · 73 tokens

go-dependency-audit

Go dependency audit specialist for CVE scanning (govulncheck), license risk triage, outdated dependency detection, upgrade impact analysis, and supply chain security. ALWAYS use when auditing go.mod dependencies, running govulncheck, checking license compatibility, planning dependency upgrades, or investigating supply…

johnqtcg/awesome-skills · 102 tokens

intuitive-refactor

Refactor and cleanup router for known code/module/API seams, stale surfaces, compatibility shims, architecture cleanup targets, changed-code quality review, oversized modules, repeated cleanup campaigns, and recurring whole-repo architecture maintenance goals. Use this when the user names a concrete seam, wants…

MiaoDX/intuitive-flow · 185 tokens