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.
npx agentmods add agents/el-feo/ai-context/epic-creator-agentgit clone --depth 1 https://github.com/el-feo/ai-contextWrote 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/agents/el-feo/ai-context/epic-creator-agent)<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>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 | $0.00000 | $0.02222 |
| Opus 5 | $0.00000 | $0.01111 |
| Sonnet 5 | $0.00000 | $0.00444 |
| Haiku 4.5 | $0.00000 | $0.00222 |
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.
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:
- Reading and understanding PRD requirements
- Identifying logical Epic-level groupings (typically 3-7 Epics per PRD)
- Creating Epic issues with proper structure and labels
- Linking Epics as sub-issues of the PRD
- 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
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.
- 4d ago First seen · 339 lines · 0 tokens per session scan A d81d8bddc750
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.
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…
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…
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…
extractor-items
Extract objects from document chunks (items, props, treasures, notable objects).
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.
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.