- Sprint tasks in main Kanban view now sorted by updatedAt descending
- Fixes issue where Done column tasks weren't sorted properly
- Matches sorting in SprintBoard.tsx and BacklogView.tsx
New API endpoints:
- GET /api/projects/[id] - Get single project
- GET /api/sprints/[id] - Get single sprint
New CLI commands:
- project get <id> - Get specific project
- sprint get <id> - Get specific sprint
Project and Sprint CRUD now complete:
✅ list, get, create, update, delete
- New API endpoints:
- GET /api/projects - List projects
- POST /api/projects - Create project
- PATCH /api/projects - Update project
- DELETE /api/projects - Delete project
- GET /api/sprints - List sprints
- POST /api/sprints - Create sprint
- PATCH /api/sprints - Update sprint
- DELETE /api/sprints - Delete sprint
- Added CLI commands:
- project create/update/delete
- sprint create/update/delete
- Updated help text with new commands
Web UI can now do full CRUD on projects/sprints and CLI matches 1:1