AgileFlow

/epic:list

PreviousNext

List all epics with status and progress tracking

/epic:list

Display all epics with status, progress tracking, and quick action options.

Quick Start

/agileflow:epic:list

Parameters

ParameterRequiredDefaultDescription
STATUSNo-Filter by status: active, complete, on-hold

Examples

List All Epics

/agileflow:epic:list

Shows all epics with their status and story completion percentage.

List Only Active Epics

/agileflow:epic:list STATUS=active

Filters to show only epics currently in progress.

List Only Completed Epics

/agileflow:epic:list STATUS=complete

Shows epics that have all stories completed.

Output Format

The command displays epics in a structured table:

## Epics
 
| Epic | Title | Status | Progress | Owner |
|------|-------|--------|----------|-------|
| EP-0003 | User Dashboard | active | 2/5 (40%) | AG-UI |
| EP-0002 | Authentication | active | 4/6 (67%) | AG-API |
| EP-0001 | Core Setup | complete | 3/3 (100%) | AG-DEVOPS |
 
---
**Summary**: 3 epics (2 active, 1 complete)
**Stories**: 9/14 complete (64%)

Status Definitions

StatusMeaningProgress BarAction
activeIn progress, accepting new storiesPartial fillContinue work, add stories
completeAll stories doneFull (100%)View summary, possibly reopen
on-holdPaused, not currently worked onFrozenResume or close

Progress Visualization

Progress is shown as:

  • Numerator: Completed stories
  • Denominator: Total stories in epic
  • Percentage: Overall completion

Example: 4/6 (67%) = 4 stories done, 2 remaining, 67% complete

Quick Actions

After displaying the list, you can:

View Epic Details

Select an epic to see:

  • All stories grouped by status (in_progress, ready, done)
  • Progress visualization
  • Owner and goal
  • Related research and ADRs
/agileflow:epic:view EPIC=EP-0003

Add Story to Epic

Create a new story under an existing epic:

/agileflow:story EPIC=EP-0003 ...

Create New Epic

Start a new feature epic:

/agileflow:epic TITLE="..." ...

Workflow Integration

Sprint Planning

/agileflow:epic:list STATUS=active
# See which epics are in progress
/agileflow:epic:view EPIC=EP-0003
# Review stories and their status
/agileflow:sprint
# Plan which stories to work on

Quarterly Planning

/agileflow:epic:list
# See all epics and their progress
# Identify bottlenecks (epics with less than 50% progress)
# Decide which epics to prioritize next

Completion Tracking

/agileflow:epic:list STATUS=active
# Work on remaining stories in in-progress epics
/agileflow:epic:list STATUS=complete
# Review what was shipped

On-Hold Epics

/agileflow:epic:list STATUS=on-hold
# Check if any on-hold epics can be resumed
/agileflow:epic:view EPIC=EP-0002
# Understand why it's on hold

Interpreting Results

High Progress (above 80%)

EP-0002 | Authentication | active | 5/6 (83%) | AG-API
  • Epic is nearly complete
  • Focus on finishing last story
  • Plan next epic to start
  • Don't close until 100%

Medium Progress (40-80%)

EP-0003 | User Dashboard | active | 3/7 (43%) | AG-UI
  • Epic is in mid-sprint
  • May need additional stories
  • Check if stories are blocked
  • Consider adding resources

Low Progress (below 40%)

EP-0001 | Onboarding Flow | active | 1/8 (12%) | AG-UI
  • Epic just started
  • Ramp-up in progress
  • Monitor for blockers
  • May want to add more stories