feat(tasks): first-level TASKS board (workspace-wide Kanban)#209
Merged
Conversation
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
Review follow-up: drop attempts/assigneeName/subChannel*/lastProgressAt from the board payload (nothing renders them; last_progress_at stays in the query's WHERE/ ORDER only); guard bucketByStatus against a non-canonical status. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
Gemini review nit: NULL last_progress_at (brand-new todo tasks) sorted to the bottom of their column under DESC; coalesce to created_at so untouched tasks float to the top. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
- CHANGELOG: first-level TASKS board (#209) - VERSION: 0.18.1 -> 0.19.0 Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
First-level TASKS sidebar destination: a live, workspace-wide Kanban of all agent tasks by status, with a "Needs me" filter that cross-links into the Decision Inbox. Closes #208.
Design (spec:
docs/superpowers/specs/2026-05-23-tasks-sidebar-board-design.md)list_workspace_tasks(workspace_id, viewer_id)only returns tasks in channels the viewer is a member of (IDOR-safe; a workspace-only filter would leak DMs/private channels — caught in design review).GET /api/w/{id}/tasksevery ~10s (per-channel events can't drive a workspace-wide board without a new topic).tasks+ a correlateddecisionssubquery for the◆cross-link.blocked· open decision ·in_reviewwithout a reviewer. Same predicate on server (item_needs_me) and client (isNeedsMe).What's here
Store::list_workspace_tasks+GET /api/w/{id}/tasks→{ tasks, needsMeCount }./tasksroute,TasksBoardpage (5 columns, Needs-me toggle), first-level sidebar entry + badge.Review + verification
bucketByStatusagainst a non-canonical status (follow-up commit).cargo test(incl. 3 new tests: membership-scope, board+needsMeCount, membership-IDOR) ·cargo clippy -D warnings·cargo fmt --check·tsc --noEmit· vitest 141 ·vite build.🤖 Generated with Claude Code