feat(tasks): linear-style task/project management with comments#252
Open
feat(tasks): linear-style task/project management with comments#252
Conversation
Implement a unified Linear-like workspace for tasks and projects with the following changes: Backend: - Add new SQLite database (tasks-db.ts) for persistent task/project/comment storage - Migrate projects and tasks from JSON files to SQLite with automatic backfill - Auto-generate Linear-style IDs for tasks (e.g., SYS-1, T-5) with sequential numbering per project - Add project colors (12-color palette) and auto-generated prefixes from project names - Implement comments feature for tasks (create, read, delete) - Update task/project routes to use SQLite backend - Add comment endpoints: GET/POST /api/tasks/:id/comments, DELETE /api/comments/:id Frontend: - Replace separate /tasks and /projects pages with unified /tasks workspace - Add shadcn Sidebar component for project navigation with dropdown actions - Create project creation dialog with name and description fields - Build task detail slide-over panel with full task metadata, comments thread, and comment input - Implement board and list view toggle for tasks - Add project filtering via ?project=ID query parameter - Add Linear-style task identifiers (colored by project) on task cards and in list view - Add quick task creation inline in both board and list views API & Types: - Extend Task type with `number`, `identifier`, and computed fields - Extend Project type with `prefix` and `color` fields - Add Comment type with author, content, and timestamp Agent Skills: - Add `comment` and `comments` commands to tasks.sh for agent task commenting - Update SKILL.md documentation with comment usage examples Co-Authored-By: Claude Haiku 4.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
Implement a unified Linear-like workspace for tasks and projects with SQLite persistence, comment threads, Linear-style IDs, and improved UI using shadcn Sidebar component.
commentandcommentscommands for task commentingChanges
packages/server/src/tasks-db.ts— SQLite persistence layer with schema for projects, tasks, and commentsroutes/tasks.tsandroutes/projects.tsto use SQLite backend with new comment endpointstinyoffice/src/app/tasks/layout.tsx— shadcn Sidebar with project navigation and dropdown actionstinyoffice/src/app/tasks/page.tsx— unified board/list view with project filtering and quick creationtinyoffice/src/components/task/task-detail-panel.tsx— slide-over panel with task metadata and comments thread/projectspages to/tasksfor backward compatibilitysidebar,sheet,skeletonTesting
Checklist