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.
git clone --depth 1 https://github.com/appboypov/pew-pew-plaza-packsnpx agentmods add commands/appboypov/pew-pew-plaza-packs/detailed-action-plan-blockWrote 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.
[](https://agentmods.dev/commands/appboypov/pew-pew-plaza-packs/detailed-action-plan-block)<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.
<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>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.
| Model | Per session | Once 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 |
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.
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;
```
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.
- 9d ago First seen · 139 lines · 0 tokens per session scan A 91367c533856
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.
Other commands, from other repositories
plan-start
5-phase planning command: PRD analysis, design review, technical decisions, dynamic research team, metrics. Produces a complete implementation plan + ADRs before any code is written.
plan-ceo-review
Strategic product gate — challenge the brief, find the 10-star product hiding inside the request, before writing any code.
team
Virtual eng team orchestrator. Runs a goal end-to-end through the whole team — strategy → plan → build → QA → ship — conducted by the engineering-manager, delegating to every specialist. One entry point that connects /ceo-review, /eng-review, /qa, and /ship.
content-start
Content production session start command. Gives the daily content session a structured start, shows pending work, and sets priorities.
proposal
Client proposal command. Builds a professional client proposal from project summaries. Valid for 30 days.
dashboard
Daily statistics panel. Presents task, audit, event, and performance data as a unified table.