PR-008: Interactive TUI (Tasks MVP) - #9
Draft
raychrisgdp wants to merge 12 commits into
Draft
Conversation
- Create Textual-based TUI app with task list/detail/form screens - Implement async API client with retry logic and error handling - Add command palette (`/`) with fuzzy search for commands and tasks - Implement collapsible AI sidebar with chat interface (stub for agent integration) - Add toast notifications with queuing and auto-dismissal - Global keybindings: / (command), q (quit), ? (help), n (new), a (toggle AI), Esc (back) - Filter tasks by status (All, Pending, In Progress, Completed) - Error handling with API-down states and user-friendly messages - 187 tests passing (100%) - All acceptance criteria met See PR-008-TEST-RESULTS.md for detailed test results
raychrisgdp
marked this pull request as draft
January 4, 2026 11:24
- Fix Textual severity value: 'info' -> 'information' in ai_sidebar - Add explicit type casts for Select.value (NoSelection handling) - Rename TaskDetailScreen.task to _task_data to avoid Textual conflict - Remove redundant cast() calls in task_list - Remove REVIEW_COLLABORATIVE.md from git tracking
- Add a method to set task status filters in TaskListScreen. - Update error handling in task loading to include specific httpx exceptions. - Modify AISidebar to reflect upcoming service statuses. - Adjust mounting order in TaskListWidget for better clarity. - Expand integration tests for keybindings and error handling scenarios.
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
Build a first-class interactive TUI using Textual with task list, detail views, create/edit flows, command palette, and collapsible AI sidebar. Primary workflow before integrations and RAG.
Changes
Test Results
Acceptance Criteria
See test results for details.
Related