epic-creator-agent

epic-creator-agent is an agent for coding agents from el-feo/ai-context. It costs 0 tokens per session (2,222 once invoked), scanned A, original, MIT.

An agent that breaks a Product Requirements Document, or PRD, into larger groups of related work called Epics. It creates structured GitHub issues for those groups and links them back to the PRD.

In plain words
What is it for?
Use it with an open GitHub issue labelled PRD to fetch its details, identify logical Epic groupings, create the Epic issues, and connect them to the original issue.
Why use it?
It turns a broad product request into a smaller set of organised work areas that a team can plan and track.

Agent

Part of the ghpmplus plugin — 2 commands, 6 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 agents/el-feo/ai-context/epic-creator-agent
Clone the repo
git clone --depth 1 https://github.com/el-feo/ai-context

Or install ghpmplus, the plugin that ships this one along with the rest of its 2 commands, 6 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 epic-creator-agent

README.md
[![agentmods](https://agentmods.dev/badge/agents/el-feo/ai-context/epic-creator-agent.svg)](https://agentmods.dev/agents/el-feo/ai-context/epic-creator-agent)
Your own site
<a href="https://agentmods.dev/agents/el-feo/ai-context/epic-creator-agent"><img src="https://agentmods.dev/badge/agents/el-feo/ai-context/epic-creator-agent.svg" alt="Measured on agentmods" 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 2,222 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 $0.00000 $0.02222
Opus 5 $0.00000 $0.01111
Sonnet 5 $0.00000 $0.00444
Haiku 4.5 $0.00000 $0.00222

Measured 4d ago against content hash d81d8bddc750, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

epic-creator-agent 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 4d 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/ghpmplus/agents/epic-creator-agent.md · 339 lines

How it starts

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

Epic Creator Agent

You are the Epic Creator agent for GHPMplus. Your role is to analyze PRD (Product Requirements Document) issues and break them down into logical Epic-level groupings, creating properly structured GitHub issues.

Purpose

Transform a high-level PRD into actionable Epics by:

  1. Reading and understanding PRD requirements
  2. Identifying logical Epic-level groupings (typically 3-7 Epics per PRD)
  3. Creating Epic issues with proper structure and labels
  4. Linking Epics as sub-issues of the PRD
  5. Documenting reasoning for the breakdown

Input

The agent receives a PRD issue number, either:

  • Directly from user: "Create Epics for PRD #42"
  • Via orchestrator delegation with PRD context

Workflow

Step 1: Fetch PRD Content

PRD_NUMBER=$1

# Validate PRD exists and has correct label
PRD_DATA=$(gh issue view "$PRD_NUMBER" --json title,body,labels,url,state)
PRD_STATE=$(echo "$PRD_DATA" | jq -r '.state')
PRD_LABELS=$(echo "$PRD_DATA" | jq -r '.labels[].name')

if [ "$PRD_STATE" != "OPEN" ]; then
  echo "ERROR: PRD #$PRD_NUMBER is not open (state: $PRD_STATE)"
  exit 1
fi

if ! echo "$PRD_LABELS" | grep -qx "PRD"; then
  echo "WARNING: Issue #$PRD_NUMBER does not have 'PRD' label"
fi

# Extract key sections from PRD
PRD_TITLE=$(echo "$PRD_DATA" | jq -r '.title')
PRD_BODY=$(echo "$PRD_DATA" | jq -r '.body')
PRD_URL=$(echo "$PRD_DATA" | jq -r '.url')

Step 2: Analyze PRD and Determine Epics

Read the PRD content and identify:

  • Objective: What is the overall goal?
  • User Stories: What are the user-facing requirements?
  • Technical Scope: What systems/components are involved?
  • Acceptance Criteria: What defines "done"?

Group related requirements into Epics. Good Epic characteristics:

  • Cohesive: All work in an Epic is related
  • Independent: Epics can be worked on in parallel where possible
  • Valuable: Each Epic delivers identifiable value
  • Sized: Typically 3-10 Tasks per Epic

Step 3: Create Epic Issues

Read the full file on GitHub · 339 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. 4d ago First seen · 339 lines · 0 tokens per session scan A d81d8bddc750

Subscribe to this mod's changes

epic-creator-agent is an agent published in the GitHub repository el-feo/ai-context (12 stars, last pushed 1mo ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 2,222 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-08-30.

Related

Other agents, from other repositories

openwriter-enrichment-minion

Enriches openwriter documents flagged stale by openwriter's save-time drift/volume detector. Dispatch when ENRICHMENTSTATUS appears in MCP init instructions OR when a ⚠ N docs need enrichment footer fires on listdocuments / listworkspaces / getworkspacestructure. Reads each dirty doc and stamps it with a single field…

travsteward/openwriter · 94 tokens

auditor

Delegate to this subagent to audit an existing plugin directory for ecosystem conformance. Input is the plugin directory path. Checks: plugin.json required fields, subagent file presence, frontmatter completeness, SKILL.md description word count for every skill directory (a plugin may have several), the 5-part agent…

orin-dx/agent-plugins · 287 tokens

chronology-builder

Isolated worker that reads case documents iteratively and extracts sourced timeline events (date, neutral fact, mandatory document+locus provenance, undisputed/alleged/contested status, party attribution). Deduplicates and cross-references across documents and languages. Emits events.json for the legal-chronology…

fedec65/bettercallclaude · 103 tokens

extractor-items

Extract objects from document chunks (items, props, treasures, notable objects).

Sstobo/Claude-Code-Game-Master · 19 tokens

implement-taskplanner

You produce a .tasks.md implementation plan from a feature plan. Assume the implementation agents have zero codebase context and questionable taste. Document everything: exact files, complete code, test commands, expected output. Bite-sized TDD tasks. DRY. YAGNI.

BugRoger/beastmode · 0 tokens

ollama-transcribe

Use this agent to transcribe audio files (voice memos, recordings, meetings, podcasts) to text. Uses local mlx-whisper. Use whenever the user wants audio converted to text or references an .mp3, .wav, .m4a, .webm file.

PratikHotchandani22/claude-ollama-agents · 62 tokens