Files
clide/TODO.md
T
Jeroen SchweitzerandClaude Opus 4.5 8b1a84e7e2 docs: update documentation and fix lint issues for v1.0.0
Documentation:
- Rewrite README.md with current features and git operations
- Rewrite docs/ARCHITECTURE.md with layered architecture details
- Rewrite docs/tui-ide-spec.md with Alt-key shortcuts
- Add docs/code-organization.md for component architecture
- Add docs/user-manual.md for end users
- Update TODO.md to mark completed items

Code fixes:
- Fix undefined 'event' variable in diff_pane.py (was _event)
- Use ternary operator in editor.py save_file method
- Clean up imports in claude_events.py and syntax_service.py
- Auto-fix import sorting across multiple files

Config:
- Add snapshot report path to pyproject.toml pytest options
- Exclude clide/vendor from ruff linting
- Ignore TCH002/TCH003 type-checking import rules

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-02-01 22:02:00 +01:00

118 lines
3.1 KiB
Markdown

# TODO
<!--
Clide Integration: This file is parsed by Clide's TODO panel.
Format:
- Use ## for sections and ### for subsections
- Use markdown checkboxes: - [ ] for open items, - [x] for completed
- Items appear in the TODOs panel grouped by section
- Click an item in Clide to jump to this file at that line
For AI agents: Add new items under the appropriate section using the
checkbox format. Mark items as done with [x] when completed.
-->
Long-term open items for Clide development.
## Core Features
### Claude Integration
- [ ] Streaming markdown responses in Claude panel
- [ ] Visual distinction between Claude responses, tool calls, and user input
- [ ] Claude history browser (past conversations)
- [ ] Claude diff flow (propose changes → diff tab → accept/reject)
### Editor
- [ ] Multi-file tab support with state preservation
- [ ] Cursor position and scroll position persistence
- [ ] Undo/redo history preservation when hiding panel
- [ ] Find in file (`Ctrl+F`)
- [ ] Go to line (`Ctrl+G`)
### Diff Panel
- [ ] Side-by-side diff view
- [ ] Unified diff view toggle
- [ ] Accept/Reject buttons for Claude-proposed changes
- [ ] Syntax highlighting in diff content
### Terminal
- [ ] Full PTY integration for terminal emulation
- [ ] Command history preservation
- [ ] Output buffer retention when hiding
### Git Integration
- [ ] Stage/unstage files from Git tab
- [ ] Discard changes context menu
- [x] Git graph visualization (Tree tab)
- [x] Branch popout with checkout/new branch actions
## Context Panel (Right Sidebar)
### Problems View
- [ ] Linter integration (ruff, eslint, etc.)
- [x] Click to navigate to file:line
- [x] Reactive problem count badge
### TODOs View
- [x] Scan for TODO/FIXME/HACK/XXX comments
- [x] Click to navigate to file:line
- [x] Reactive count badge
### Jira View
- [x] Render Jira CLI markdown output
- [ ] Auto-refresh on panel focus
- [ ] Configurable refresh interval
## UI/UX
### Responsiveness
- [ ] CSS breakpoints for different terminal widths
- [ ] Auto-hide sidebars on narrow terminals (<100 cols)
- [x] Compact mode toggle (`Alt+C`)
### Fullscreen Mode
- [ ] Any panel can go fullscreen (`F11`)
- [ ] Exit fullscreen with `Escape`
### Command Palette
- [ ] Implement command palette (`Alt+P`)
- [ ] Quick open file (`Alt+O`)
## State Management
### Session Persistence
- [ ] Remember open files across sessions
- [ ] Persist panel sizes and layout
- [ ] Save last git state
- [ ] Remember expanded/collapsed sections
### Multiple Projects
- [ ] Workspace switcher
- [ ] Recent projects list
## Plugin System
- [ ] User-defined panels via pluggy
- [x] Custom integrations support (hookspecs defined)
- [ ] Extension API documentation
## Testing
- [x] Snapshot tests for all panels
- [x] Integration tests for panel communication
- [x] Unit tests for controllers
- [x] Unit tests for services
## Documentation
- [ ] User guide
- [ ] Plugin development guide
- [ ] Architecture documentation updates
## Build & Distribution
- [ ] PyInstaller builds for macOS
- [ ] PyInstaller builds for Linux
- [ ] CI/CD pipeline with Gitea Actions