epics

epics is a command for Claude Code from ihudak/ihudak-claude-plugins. It costs 130 tokens per session (19,774 once invoked), scanned A, original, MIT.

A Jira planning workflow that reads a product requirements document (a description of what should be built) and existing Epic notes, then drafts smaller child Epics as Markdown files. It can also inspect code repositories to find existing capabilities and gaps.

In plain words
What is it for?
Use it to break a Jira product requirements document into child Epics, identify what can be reused from code repositories, and produce reviewed Markdown drafts.
Why use it?
It gives teams a structured way to turn a planned product into implementable work without manually comparing requirements with existing code. Reviews and writing checks help catch unclear or incomplete Epic drafts.

Command for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: reads .claude/ paths; mentions CLAUDE.md; mentions subagents.

Runs only inside its plugin — its command needs a path that Claude Code sets for a plugin’s own hooks and for nothing else. Install the plugin, not this.

Part of the dev-workflows plugin — 2 skills, 28 commands, 38 agents, 3 hooks shipped together

Good fit Use it to break a Jira product requirements document into child Epics, identify what can be reused from code repositories, and produce reviewed Markdown drafts.

Compare 6 commands from other repositories ↓
Install

Getting it into your agent

This one installs as part of its plugin. Adding the marketplace and installing the plugin brings it with everything else the plugin ships.

Claude Code
/plugin marketplace add ihudak/ihudak-claude-plugins
Claude Code
/plugin install dev-workflows

Made for: Claude Code.

Or install dev-workflows, the plugin that ships this one along with the rest of its 2 skills, 28 commands, 38 agents, 3 hooks.

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 epics

README.md
[![agentmods](https://agentmods.dev/badge/commands/ihudak/ihudak-claude-plugins/epics.svg)](https://agentmods.dev/commands/ihudak/ihudak-claude-plugins/epics)
Your own site
<a href="https://agentmods.dev/commands/ihudak/ihudak-claude-plugins/epics"><img src="https://agentmods.dev/badge/commands/ihudak/ihudak-claude-plugins/epics.svg" alt="Measured on agentmods" height="20"></a>
Per session 130 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 19,774 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.00130 $0.19774
Opus 5 $0.00065 $0.09887
Sonnet 5 $0.00026 $0.03955
Haiku 4.5 $0.00013 $0.01977

Measured 2d ago against content hash 0bace008e3a4, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-07, from the pricing page.

Security

Grade A, and why

epics 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 2d 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/dev-workflows/commands/epics.md · 948 lines

How it starts

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

Draft child Epics for the resolved Product Requirements Document: $ARGUMENTS

/epics is the keyed Epic-writing workflow. Given a Product Requirements Document key, it reads the PRD plus its existing Epics from the resolved PRD folder, optionally scans code repos to identify reusable capabilities and gaps, drafts child Epic definitions as markdown files under the resolved output directory, and gates the result on an Opus review.

Key distinction from /document (keyed mode): the PRD being Epic-ized is not yet implemented — there are no PRs to diff. Code scanning (when enabled) is a plain filesystem search to understand what exists and what needs to be built.

/epics accepts exactly two shapes and refuses everything else (Phase 0 steps 1a and 1b): a PRD- folder, which it partitions into new Epics, or an EPIC- folder that has a PRD above it, which it re-refines. A stand-alone EPIC- folder and a BRD- container are both refused. Epics come from a PRD only, and /epics is the only command in this plugin that creates an EPIC- folder — /create-ard and /specify refuse an absent one rather than minting it.

/epics never branches and never commits the Epic drafts (still true — the run's git writes are confined to $SPECS_PATH, per ${CLAUDE_PLUGIN_ROOT}/references/specs-repo-git.md; the run does make read-only git calls elsewhere — Phase 4's git remote get-url origin per candidate clone and Phase 8's git diff --stat from project_root — but none of them writes), and writes only inside the resolved PRD folder — one EPIC-<PRD-KEY>-NN-<eslug>/ per Epic, plus _coverage.md beside prd.md. Git hygiene of the write target is the user's responsibility — they may or may not have it under version control. The run commits only inside $SPECS_PATH, and only its bounded session-artifact paths (${CLAUDE_PLUGIN_ROOT}/references/specs-repo-git.md §2.1) — via the specs-preflight flush at run start (§3.4) and the terminal commit-artifacts step (§4); never the drafts, never the write target. It still creates no branch (still true — specs-preflight switches $SPECS_PATH only between branches that already exist, and only plugin-created ones (${CLAUDE_PLUGIN_ROOT}/references/specs-repo-git.md §2.2); it creates none).


Phase 0 — Load

  1. Resolve the address. Parse the single positional address from $ARGUMENTS — a <KEY>, or an @<path> naming a folder or a file inside one — and resolve it with resolve-address (${CLAUDE_PLUGIN_ROOT}/references/addressing.md §3), with no <KIND> argument: a slice folder is PRD--prefixed while the brd-link.md inside it asserts kind: brd, so narrowing the resolution by kind would refuse on one route the very folder it resolves on the other (addressing.md §3, resolve-key step 1). The kind gate is step 1b's, and it is taken on what the resolved folder holds. status: found → carry its path, kind and key forward; ambiguous → stop, naming every match and @<path> as the way through. absent is a graceful stop, not a folder to create/epics partitions a PRD folder that exists and creates no PRD folder of its own:
    EPICS_NOT_FOUND: no folder found for <ADDRESS> under $SPECS_PATH/specifications/ (every level addressing.md §3 bounds, plus §5's legacy fallback) — check the address. /epics partitions an existing PRD folder and creates none. A PRD folder is created by /dev-workflows:idea <KEY> or /dev-workflows:create-prd <KEY> on the idea route, and by /dev-workflows:brd-split on its parent BRD on the BRD route; an EPIC- folder is created by this command and by no other, so an Epic address that resolves to nothing was never drafted here.
    
    Every command that stop names creates the folder it claims to, and none of them is a command this one would then refuse: /idea and /create-prd each write PRD-<KEY>-<slug>/ on their first write, and /brd-split carves the PRD- slice — all three PRD- folders that pass step 1a.

Read the full file on GitHub · 948 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. 2d ago Changed · +185 lines · +83 tokens per session 0bace008e3a4
  2. 7d ago First seen · 763 lines · 47 tokens per session scan A d45114bbb5d4

Subscribe to this mod's changes

epics is a command published in the GitHub repository ihudak/ihudak-claude-plugins (2 stars, last pushed 4d ago), licensed MIT. It adds 130 tokens to every session and 19,774 once invoked, about $0.0006 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.