f5-planning

f5-planning is a command for Claude Code from Fujigo-Software/f5-framework-claude. It costs 6 tokens per session (2,781 once invoked), scanned A, original, MIT.

A command for creating project plans, work breakdown structures, estimates, sprint plans, roadmaps, and resource plans. A work breakdown structure divides a project into smaller tasks.

In plain words
What is it for?
Use it to create or check plans for tasks, effort, sprints, milestones, resources, or the overall project roadmap.
Why use it?
It gives planning documents a fixed location and format instead of scattering them across the project.

Command for Claude Code

Written for Claude Code: argument-hint in frontmatter.

Part of the f5-core plugin — 46 commands, 10 agents shipped together

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 commands/fujigo-software/f5-framework-claude/f5-planning
Clone the repo
git clone --depth 1 https://github.com/Fujigo-Software/f5-framework-claude

Made for: Claude Code.

Or install f5-core, the plugin that ships this one along with the rest of its 46 commands, 10 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 f5-planning

README.md
[![agentmods](https://agentmods.dev/badge/commands/fujigo-software/f5-framework-claude/f5-planning.svg)](https://agentmods.dev/commands/fujigo-software/f5-framework-claude/f5-planning)
Your own site
<a href="https://agentmods.dev/commands/fujigo-software/f5-framework-claude/f5-planning"><img src="https://agentmods.dev/badge/commands/fujigo-software/f5-framework-claude/f5-planning.svg" alt="Measured on agentmods" height="20"></a>
Per session 6 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 2,781 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.1 $0.00006 $0.02781
Opus 5 $0.00003 $0.01391
Sonnet 5 $0.00001 $0.00556
Haiku 4.5 $0.00001 $0.00278

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

Security

Grade A, and why

f5-planning 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 6d 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.

plugins/f5-core/commands/f5-planning.md · 422 lines

How it starts

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

/f5-planning - Project Planning & WBS Command

Generate Work Breakdown Structure (WBS), estimates, and sprint planning.

ARGUMENTS

The user's request is: $ARGUMENTS

⚠️ CRITICAL OUTPUT RULES

Output files MUST be in .f5/planning/

Document Type Output Path
WBS .f5/planning/wbs.md
Estimates .f5/planning/estimates.md
Sprint Plan .f5/planning/sprints/sprint-{N}.md
Roadmap .f5/planning/roadmap.md
Resource Plan .f5/planning/resources.md

❌ WRONG paths:

docs/wbs.md ❌
planning.md ❌
wbs.md ❌

STEP 1: PARSE ACTION

Action Description
wbs Generate Work Breakdown Structure
estimate Estimate effort for tasks
sprint Create sprint plan
roadmap Generate project roadmap
resource Resource allocation plan
status Show planning status

ACTION: WBS

/f5-planning wbs [--from <source>]

Sources

  • srs - Generate from SRS requirements (default)
  • design - Generate from design documents
  • screens - Generate from screen list

Process

  1. Read SRS from .f5/specs/srs/v1.0.0/srs.md
  2. Read Screen List from .f5/specs/basic-design/v1.0.0/screens/screen-list.md
  3. Read API Design from .f5/specs/basic-design/v1.0.0/api/api-design.md
  4. Generate hierarchical WBS
  5. Output to .f5/planning/wbs.md

Output Template

# Work Breakdown Structure (WBS)

**Project:** {{PROJECT_NAME}}
**Generated:** {{TIMESTAMP}}
**Source:** {{SOURCE}}

## Summary

| Category | Items | Estimated Days |
|----------|-------|----------------|
| Backend | {{COUNT}} | {{DAYS}} |
| Frontend | {{COUNT}} | {{DAYS}} |
| Mobile | {{COUNT}} | {{DAYS}} |
| DevOps | {{COUNT}} | {{DAYS}} |
| **Total** | {{TOTAL}} | {{TOTAL_DAYS}} |

---

## 1. Backend Development

### 1.1 Authentication Module
| ID | Task | Priority | Est. Days | Dependencies |
|----|------|----------|-----------|--------------|
| BE-AUTH-001 | User Registration API | P0 | 1 | - |
| BE-AUTH-002 | OTP Verification | P0 | 0.5 | BE-AUTH-001 |
| BE-AUTH-003 | Login API | P0 | 0.5 | BE-AUTH-001 |
| BE-AUTH-004 | JWT Token Management | P0 | 1 | BE-AUTH-003 |
| BE-AUTH-005 | Password Reset | P1 | 0.5 | BE-AUTH-001 |

### 1.2 Listing Module
| ID | Task | Priority | Est. Days | Dependencies |
|----|------|----------|-----------|--------------|
| BE-LIST-001 | Create Listing API | P0 | 1.5 | BE-AUTH |
| BE-LIST-002 | Search & Filter API | P0 | 2 | BE-LIST-001 |
| BE-LIST-003 | Listing Detail API | P0 | 0.5 | BE-LIST-001 |

### 1.3 Auction Module
...

### 1.4 Order Module
...

### 1.5 Payment Module
...

---

## 2. Frontend Development (Web)

### 2.1 Authentication Screens
| ID | Task | Priority | Est. Days | Dependencies |
|----|------|----------|-----------|--------------|
| FE-AUTH-001 | Login Screen | P0 | 1 | BE-AUTH-003 |
| FE-AUTH-002 | Register Screen | P0 | 1 | BE-AUTH-001 |
| FE-AUTH-003 | OTP Screen | P0 | 0.5 | BE-AUTH-002 |

### 2.2 Listing Screens
...

---

## 3. Mobile Development (Flutter)

### 3.1 Authentication Screens
...

### 3.2 Farmer Screens
...

### 3.3 Buyer Screens
...

---

## 4. DevOps & Infrastructure

### 4.1 Initial Setup
| ID | Task | Priority | Est. Days | Dependencies |
|----|------|----------|-----------|--------------|
| DO-001 | Docker setup | P0 | 0.5 | - |
| DO-002 | CI/CD Pipeline | P0 | 1 | DO-001 |
| DO-003 | Database setup | P0 | 0.5 | DO-001 |

---

## 5. Testing

### 5.1 Unit Tests
...

### 5.2 Integration Tests
...

### 5.3 E2E Tests
...

---

## Dependencies Graph

```mermaid
graph LR
    AUTH[Auth Module] --> LIST[Listing Module]
    AUTH --> USER[User Module]
    LIST --> AUC[Auction Module]
    LIST --> OFFER[Offer Module]
    AUC --> ORDER[Order Module]
    OFFER --> ORDER
    ORDER --> PAY[Payment Module]
    ORDER --> QC[Quality Check]

Priority Summary

Priority Tasks Days % of Total
P0 (MVP) {{P0_COUNT}} {{P0_DAYS}} {{P0_PERCENT}}%
P1 (Phase 2) {{P1_COUNT}} {{P1_DAYS}} {{P1_PERCENT}}%
P2 (Future) {{P2_COUNT}} {{P2_DAYS}} {{P2_PERCENT}}%

Read the full file on GitHub · 422 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. 6d ago First seen · 422 lines · 6 tokens per session scan A f292ebb4c000

Subscribe to this mod's changes

f5-planning is a command published in the GitHub repository Fujigo-Software/f5-framework-claude (24 stars, last pushed 7mo ago), licensed MIT. It adds 6 tokens to every session and 2,781 once invoked, about $0.0000 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-30.