v1.4.0 — Backlog Board + Dashboard Overhaul
✨ Highlights
- CLI Workflow Commands — Two-command task lifecycle (
vk begin/vk done) plus time tracking, comments, agent status, and project management from the terminal - Inspired by Boris Cherny's (Claude Code creator) "automate everything you do twice" philosophy
Added
CLI Workflow Commands (#44)
- Composite workflows — Complete task lifecycle in single commands:
vk begin <id>— Sets in-progress + starts timer + updates agent status to workingvk done <id> "summary"— Stops timer + sets done + adds comment + sets agent idlevk block <id> "reason"— Sets blocked + adds comment with reasonvk unblock <id>— Sets in-progress + restarts timer
- Time tracking CLI — Full time management from terminal:
vk time start <id>— Start time trackervk time stop <id>— Stop time trackervk time entry <id> <seconds> "description"— Add manual time entryvk time show <id>— Display time tracking summary (total, running status, entries)
- Comments CLI —
vk comment <id> "text"with optional--authorflag - Agent status CLI — Manage agent presence:
vk agent status— Show current agent statusvk agent working <id>— Set to working (auto-fetches task title)vk agent idle— Set to idlevk agent sub-agent <count>— Set sub-agent mode with count
- Project management CLI —
vk project listandvk project create "name"with--colorand--descriptionflags - All commands support
--jsonfor scripting and automation - 5 new command modules, 18 subcommands, 651 lines added
Full Changelog: v1.3.0...v1.4.0