Add epic closure management commands (fixes #62)

- Add 'bd epic status' to show epic completion with child progress
- Add 'bd epic close-eligible' to bulk-close completed epics
- Add GetEpicsEligibleForClosure() storage method
- Update 'bd stats' to show count of epics ready to close
- Add EpicStatus type for tracking epic/child relationships
- Support --eligible-only, --dry-run, and --json flags
- Fix golangci-lint config version requirement

Addresses GitHub issue #62 - epics now have visibility and
management tools for closure when all children are complete.

Amp-Thread-ID: https://ampcode.com/threads/T-e8ac3f48-f0cf-4858-8e8f-aace2481c30d
Co-authored-by: Amp <amp@ampcode.com>
This commit is contained in:
Steve Yegge
2025-10-17 13:50:20 -07:00
parent e6a69401c9
commit 14c744861c
8 changed files with 345 additions and 16 deletions

View File

@@ -165,5 +165,35 @@ func (s *SQLiteStorage) GetStatistics(ctx context.Context) (*types.Statistics, e
stats.AverageLeadTime = avgLeadTime.Float64
}
// Get epics eligible for closure count
err = s.db.QueryRowContext(ctx, `
WITH epic_children AS (
SELECT
d.depends_on_id AS epic_id,
i.status AS child_status
FROM dependencies d
JOIN issues i ON i.id = d.issue_id
WHERE d.type = 'parent-child'
),
epic_stats AS (
SELECT
epic_id,
COUNT(*) AS total_children,
SUM(CASE WHEN child_status = 'closed' THEN 1 ELSE 0 END) AS closed_children
FROM epic_children
GROUP BY epic_id
)
SELECT COUNT(*)
FROM issues i
JOIN epic_stats es ON es.epic_id = i.id
WHERE i.issue_type = 'epic'
AND i.status != 'closed'
AND es.total_children > 0
AND es.closed_children = es.total_children
`).Scan(&stats.EpicsEligibleForClosure)
if err != nil {
return nil, fmt.Errorf("failed to get eligible epics count: %w", err)
}
return &stats, nil
}