Skip to content

ginko epic

Terminal window
ginko epic [options]

Creates and manages epics — large bodies of work broken down into sprints and tasks. The epic creation flow is AI-guided: ginko helps you define goals, scope, and sprint breakdown through conversation.

FlagDescription
--listList existing epics
--viewView epic details with sprint progress
--syncSync epic to graph database
Terminal window
# Create a new epic (AI-guided)
ginko epic
# List all epics
ginko epic --list
# View epic details
ginko epic --view
# Sync to graph
ginko epic --sync

Creates files following the entity naming convention (ADR-052):

FileExample
Epicdocs/epics/EPIC-005-auth-system.md
Sprintsdocs/sprints/SPRINT-e005-s01-jwt-setup.md
EntityFormatExample
Epice{NNN}e005
Sprinte{NNN}_s{NN}e005_s01
Taske{NNN}_s{NN}_t{NN}e005_s01_t01