feat(web): tasks board — org tasks as kanban/list with prompt-first create#3865
Open
rafavalls wants to merge 2 commits into
Open
feat(web): tasks board — org tasks as kanban/list with prompt-first create#3865rafavalls wants to merge 2 commits into
rafavalls wants to merge 2 commits into
Conversation
…reate Adds /$org/tasks: the org's tasks (threads) on a board whose columns are the real thread statuses (in progress, needs review, done, failed). Dragging a card to another column persists the status through the thread store; data comes from the same useThreads() store the sidebar uses, so rows stay live as runs progress. Linear-style filters narrow by agent and by origin (manual vs automation-triggered), with a list layout toggle. New task is a prompt-first dialog: the prompt is handed to a freshly created thread via the autosend channel (same handoff the chat uses), so the chosen agent starts working immediately. Sidebar gets a Tasks entry between Home and Library. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
The board rendered bare on the sidebar background; every routed page sits in the rounded card shell (see Library). Wrap the page in the same chrome. Co-Authored-By: Claude Fable 5 <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.
Summary
Adds a Tasks board at
/$org/tasksshowing the org's tasks (threads) as a kanban or list, driven entirely by real data — no mocks.expiredstatus buckets into failed but is never written back). Status icons/colors reuselib/task-status.tsso the board speaks the same language as the tasks panel.ThreadManager.setStatus(optimistic + server).useThreads()store the sidebar uses, so cards update as runs progress; "Load more" pages through history.Testing
bun run check,bun run lint,bun run fmtall pass (the 2 lint warnings are pre-existing on main inpackages/sandbox/daemon/org-fs).🤖 Generated with Claude Code
Summary by cubic
Adds a Tasks board at /$org/tasks to view and manage org tasks as a kanban or list. Supports live updates, drag-and-drop status changes, filters, and a prompt-first flow to create and start tasks immediately.
New Features
expiredshows under failed but isn’t persisted).useThreads()with “Load more” pagination.Bug Fixes
Written for commit 852279a. Summary will update on new commits.