Overview
Cycles are time-boxed periods for organizing work. They help teams plan capacity, track velocity, and maintain a sustainable development pace.Endpoints
All cycle endpoints are available via tRPC atapi.cycles.*
List Cycles
Get Cycle
Get Current Cycle
Create Cycle
Update Cycle
Get Cycle Progress
Get Cycle Issues
Add Issue to Cycle
Remove Issue from Cycle
Get Velocity Metrics
Types
Cycle
Cycle Status
Cycle status is derived from dates:| Status | Condition |
|---|---|
upcoming | now < startDate |
active | startDate <= now <= endDate |
completed | now > endDate |
CLI Usage
Webhooks
Cycle-related events are emitted:| Event | Description |
|---|---|
cycle.created | New cycle created |
cycle.updated | Cycle modified |
cycle.completed | Cycle end date passed |
cycle.issue_added | Issue added to cycle |
cycle.issue_removed | Issue removed from cycle |
See Also
- wit cycle - CLI documentation
- Projects API - Goal-based projects
- Cycles and Projects - Feature overview