execute

execute is a command for Claude Code from boparaiamrit/skills-by-amrit. It costs 20 tokens per session (1,050 once invoked), scanned A, original, MIT.

A planning discussion command that collects the user’s preferences before a feature plan is written.

In plain words
What is it for?
Use it when a new feature has several valid approaches, such as different authentication methods, layouts, libraries, or architectures.
Why use it?
It reduces rework caused by making architectural or product decisions based on assumptions.

Command for Claude Code

Written for Claude Code: $ARGUMENTS substitution.

Part of the skills-by-amrit plugin — 33 skills, 34 commands, 9 agents shipped together

Good fit Use it when a new feature has several valid approaches, such as different authentication methods, layouts, libraries, or architectures.

Compare 6 commands from other repositories ↓
Install with agentmods
npx agentmods add commands/boparaiamrit/skills-by-amrit/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.

Clone the repo
git clone --depth 1 https://github.com/boparaiamrit/skills-by-amrit

Made for: Claude Code.

Or install skills-by-amrit, the plugin that ships this one along with the rest of its 33 skills, 34 commands, 9 agents.

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 execute

README.md
[![agentmods](https://agentmods.dev/badge/commands/boparaiamrit/skills-by-amrit/execute/github.svg)](https://agentmods.dev/commands/boparaiamrit/skills-by-amrit/execute)
Your own site
<a href="https://agentmods.dev/commands/boparaiamrit/skills-by-amrit/execute"><img src="https://agentmods.dev/badge/commands/boparaiamrit/skills-by-amrit/execute/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 execute

Your own site · 80×15
<a href="https://agentmods.dev/commands/boparaiamrit/skills-by-amrit/execute"><img src="https://agentmods.dev/badge/commands/boparaiamrit/skills-by-amrit/execute.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 20 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,050 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.00020 $0.01050
Opus 5 $0.00010 $0.00525
Sonnet 5 $0.00004 $0.00210
Haiku 4.5 $0.00002 $0.00105

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

Security

Grade A, and why

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 9d 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.

commands/execute.md · 173 lines

How it starts

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

/execute — Plan Execution

Execute an implementation plan task by task. Uses the executing-plans skill with deviation protocol, checkpoint system, and planning-tools.cjs for state management.

Usage

/execute                  — Execute the current plan (from STATE.md position)
/execute [plan-name]      — Execute a specific plan
/execute --continue       — Continue from last checkpoint

Prerequisites

Before execution:

  1. A plan exists in .planning/plans/ with proper task anatomy (<files>, <action>, <verify>, <done>)
  2. .planning/STATE.md exists (run /init-project first)
  3. The project builds and tests pass (pre-flight check)

Instructions

Step 1: Load Plan and State

# Load current state
node planning-tools.cjs state load

# Verify structure
node planning-tools.cjs verify structure

Read the plan file. If $ARGUMENTS specifies a plan, load that. Otherwise, find the current plan from STATE.md position.

Step 2: Pre-Flight Checks

// turbo

git status

Verify:

  • Working tree is clean (no uncommitted changes)
  • Build passes
  • Existing tests pass

If pre-flight fails, STOP. Fix before executing.

Step 3: Announce and Confirm

"Plan: [name]
Tasks: [N] tasks, estimated [M] minutes
Context budget: [2-3 tasks, should complete in ~50% context]

Starting Task 1. Ready?"

In auto mode (config.mode = "auto"), skip confirmation.

Step 4: Execute Tasks

Use the executing-plans skill. For each task:

  1. Read task fully: <files>, <action>, <verify>, <done>
  2. Check context — if > 70%, checkpoint before starting
  3. Implement per <action> (including DON'T/AVOID rules)
  4. Verify by running every <verify> command
  5. Confirm every <done> criterion
  6. Commit atomically
  7. Advance state:
    node planning-tools.cjs state advance-task
    

Step 5: Handle Deviations

If the plan doesn't match reality:

Category Action
Cosmetic Fix silently, note in commit
Minor Document in commit, proceed
Moderate STOP → Report → Get approval → Proceed
Major STOP → Return to planning

Read the full file on GitHub · 173 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. 9d ago First seen · 173 lines · 20 tokens per session scan A 69017379df3f

Subscribe to this mod's changes

execute is a command published in the GitHub repository boparaiamrit/skills-by-amrit (5 stars, last pushed 5mo ago), licensed MIT. It adds 20 tokens to every session and 1,050 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.