detailed-action-plan-block

detailed-action-plan-block is a command for Claude Code from appboypov/pew-pew-plaza-packs. It costs 0 tokens per session (980 once invoked), scanned A, original, MIT.

A detailed implementation-plan template for breaking high-level software work into specific actions. It can name files, methods, database changes, and example code for each step.

In plain words
What is it for?
Use it to plan CRUD features, database schemas, technical improvements, and other implementation tasks.
Why use it?
It turns a broad requirement into instructions that developers can act on and review. This reduces ambiguity about what should be changed and where.

Command for Claude Code

Written for Claude Code: installed under .claude/.

Needs its repository: it reads a path above its own folder, which exists only inside the repository. The line is import { ItemController } from '../controllers/items.controller';.

Good fit Use it to plan CRUD features, database schemas, technical improvements, and other implementation tasks.

Compare 6 commands from other repositories ↓
Install

Getting it into your agent

It runs from inside its repository, so the clone comes first — what it calls does not travel with the file alone.

Clone the repo
git clone --depth 1 https://github.com/appboypov/pew-pew-plaza-packs
agentmods
npx agentmods add commands/appboypov/pew-pew-plaza-packs/detailed-action-plan-block

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 detailed-action-plan-block

README.md
[![agentmods](https://agentmods.dev/badge/commands/appboypov/pew-pew-plaza-packs/detailed-action-plan-block/github.svg)](https://agentmods.dev/commands/appboypov/pew-pew-plaza-packs/detailed-action-plan-block)
Your own site
<a href="https://agentmods.dev/commands/appboypov/pew-pew-plaza-packs/detailed-action-plan-block"><img src="https://agentmods.dev/badge/commands/appboypov/pew-pew-plaza-packs/detailed-action-plan-block/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 detailed-action-plan-block

Your own site · 80×15
<a href="https://agentmods.dev/commands/appboypov/pew-pew-plaza-packs/detailed-action-plan-block"><img src="https://agentmods.dev/badge/commands/appboypov/pew-pew-plaza-packs/detailed-action-plan-block.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 0 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 980 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.00000 $0.00980
Opus 5 $0.00000 $0.00490
Sonnet 5 $0.00000 $0.00196
Haiku 4.5 $0.00000 $0.00098

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

Security

Grade A, and why

detailed-action-plan-block 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.

.claude/commands/add/detailed-action-plan-block.md · 139 lines

How it starts

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

Block Command

When this command is used, use the following block. Acknowledge your understanding and then await the user's request.


## 🎬 Detailed Action Plan
> 💡 *Detailed implementation steps for each high-level CRUD operation. Specify exact files, methods, and content to be created or modified. Include code examples showing exactly what to implement.*

[Break down each high-level step into specific implementation actions with code examples]

```
<example>
### 1. Create [[database-schema]]
- Create file: `database/migrations/001_create_items_table.sql`
  ```sql
  CREATE TABLE items (
    id UUID PRIMARY KEY DEFAULT gen_random_uuid(),
    name VARCHAR(255) NOT NULL,
    description TEXT,
    status VARCHAR(50) DEFAULT 'active',
    created_by UUID REFERENCES users(id),
    created_at TIMESTAMP WITH TIME ZONE DEFAULT CURRENT_TIMESTAMP,
    updated_at TIMESTAMP WITH TIME ZONE DEFAULT CURRENT_TIMESTAMP
  );
  
  CREATE INDEX idx_items_status ON items(status);
  CREATE INDEX idx_items_created_by ON items(created_by);
  ```

- Create file: `src/types/database/item.ts`
  ```typescript
  export interface Item {
    id: string;
    name: string;
    description?: string;
    status: 'active' | 'inactive' | 'deleted';
    created_by: string;
    created_at: Date;
    updated_at: Date;
  }
  
  export type CreateItemDto = Omit<Item, 'id' | 'created_at' | 'updated_at'>;
  export type UpdateItemDto = Partial<Omit<Item, 'id' | 'created_at'>>;
  ```

### 2. Create [[api-endpoints]]
- Update file: `src/api/routes/index.ts`
  - Add at line 15 after other route imports:
  ```typescript
  import itemRoutes from './items';
  ```
  - Add at line 32 in the route registration section:
  ```typescript
  router.use('/items', authenticate, itemRoutes);
  ```

- Create file: `src/api/routes/items.ts`
  ```typescript
  import { Router } from 'express';
  import { body, query } from 'express-validator';
  import { ItemController } from '../controllers/items.controller';
  import { validate } from '../middleware/validate';
  import { authorize } from '../middleware/authorize';
  
  const router = Router();
  const controller = new ItemController();
  
  router.get('/',
    query('page').optional().isInt({ min: 1 }),
    query('limit').optional().isInt({ min: 1, max: 100 }),
    query('status').optional().isIn(['active', 'inactive', 'deleted']),
    validate,
    authorize('items.read'),
    controller.list
  );
  
  router.post('/',
    body('name').notEmpty().trim().isLength({ max: 255 }),
    body('description').optional().trim(),
    body('status').optional().isIn(['active', 'inactive']),
    validate,
    authorize('items.create'),
    controller.create
  );
  
  export default router;
  ```

Read the full file on GitHub · 139 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 · 139 lines · 0 tokens per session scan A 91367c533856

Subscribe to this mod's changes

detailed-action-plan-block is a command published in the GitHub repository appboypov/pew-pew-plaza-packs (85 stars, last pushed 8mo ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 980 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-09-03.