| Commit message (Collapse) | Author | Age | Files | Lines |
| | |
|
| | |
|
| | |
|
| |
|
|
|
|
|
|
|
| |
- Store session artifacts in ~/.claude-flow/projects/{projectId}/sessions/{sessionId}/
- Artifacts no longer live in project directory - can't be accidentally committed
- Remove .claude-flow/ from .gitignore (not needed anymore)
- Update all IPC handlers and renderer to use projectId instead of projectPath
- Update prompts to remove worktree references
- Update README with new storage location
|
| | |
|
| |
|
|
|
| |
Session-scoped artifacts already solve the concurrent session problem.
No need for worktrees or branches. Simpler is better.
|
| | |
|
| | |
|
| |
|
|
|
|
|
|
| |
- Research phase: reference .claude-flow/sessions/{sessionId}/research.md
- Plan phase: reference .claude-flow/sessions/{sessionId}/plan.md
- Implementation phase: explain worktree isolation and review process
- All phases: mention CLAUDE.md at project root for shared context
- All phases: mention git worktree location .claude-flow/worktrees/{sessionId}/
|
| |
|
|
|
|
|
|
|
|
|
| |
- Store artifacts in .claude-flow/sessions/{sessionId}/
- Each session now has isolated research.md and plan.md
- Concurrent sessions no longer conflict
- Add CLAUDE.md support for shared codebase documentation
- Add git worktree creation on session start
- Add git commit/status IPC handlers
- Update all artifact APIs to be session-specific
- Remove artifact clearing on new session (no longer needed)
|
| |
|
|
| |
Remove accidentally committed build artifacts and working files.
|
| |
|
|
|
| |
Each new session now starts with empty research.md and plan.md files,
preventing stale content from previous sessions appearing.
|
| |
|
|
|
| |
These are transient artifacts (research.md, plan.md) generated
during sessions, not source code worth tracking.
|
| |
|
|
|
|
|
|
|
|
|
| |
- Add light/dark theme toggle with localStorage persistence
- Add 'Claude Flow' wordmark in header
- Switch to monospace font (SF Mono, Cascadia Code, etc.)
- Update accent colors (lighter blue)
- Add theme-aware CodeMirror styling (oneDark vs defaultHighlightStyle)
- Update window title to 'Claude Flow'
- Refine spacing and visual polish throughout
- Add .claude-flow/ artifacts from self-restyling session
|
| |
|
|
|
|
|
| |
- Add EditorView.lineWrapping for soft word wrap
- Fix container CSS to prevent horizontal overflow
- Add min-width: 0 to document-pane for proper flex shrinking
- Add overflow: hidden to contain the editor
|
| |
|
|
|
|
|
|
|
|
|
|
|
| |
- Install CodeMirror 6 with markdown language support
- Add MarkdownEditor component with:
- Syntax highlighting for markdown
- Line numbers
- Active line highlighting
- History (undo/redo)
- One Dark theme
- Code block language highlighting
- Keep react-markdown for preview mode
- Add CSS for CodeMirror integration
|
| |
|
|
|
|
|
|
| |
- Add react-markdown and remark-gfm dependencies
- Remove hacky regex-based renderMarkdown function
- Full GFM support: tables, task lists, strikethrough, autolinks
- Update CSS for react-markdown output (task lists, blockquotes, hr)
- Cleaner, more maintainable code
|
| |
|
|
|
|
|
| |
- Add renderTable() function to parse markdown tables
- Process tables before other markdown transformations
- Handle header row, separator row, and body rows
- Add table CSS styling (borders, alternating row colors, padding)
|
| |
|
|
|
|
|
|
|
| |
- Add delete buttons (🗑️) next to project/session dropdowns
- Add confirmation dialogs before deletion
- Add onDeleteProject and onDeleteSession props to Header
- Implement delete handlers in App.tsx with error handling
- Clear selection and related state after deletion
- Add CSS styling for delete button with hover effect
|
| |
|
|
|
|
|
|
|
| |
- Show welcome view when no project is selected
- Explain the Research → Plan → Implement workflow
- Include ANTHROPIC_API_KEY setup instructions
- List getting started steps (add project, create session, describe work)
- Explain iteration workflow with Review/Submit buttons
- Add CSS styling for onboarding content
|
| | |
|
| | |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
- Fix systemPrompt option (was incorrectly using extraArgs)
- Rewrite research phase prompt:
- Emphasize writing to research.md as PRIMARY output
- Explicitly forbid asking about phase transitions
- Add document format template
- Clarify that chat is for questions only
- Rewrite plan phase prompt:
- Same emphasis on plan.md as primary output
- Include code snippet format examples
- Forbid implementation attempts
- Change research/plan permissionMode to acceptEdits (was 'plan')
- 'plan' mode may have been blocking file writes
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
| |
- Add error handling with auto-dismissing error bar
- Add keyboard shortcuts:
- Escape to interrupt Claude
- Cmd/Ctrl+Enter to submit
- Fix unused import warning
- Update README.md with project documentation
- Concept and workflow explanation
- UI layout diagram
- Installation and development instructions
- Project structure overview
- Keyboard shortcuts reference
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
- Add renderer/src/types.ts with Project, Session, Message, Phase types
- Add renderer/src/styles/globals.css with full styling
- Dark theme with accent colors
- Header, document pane, chat pane, action bar layouts
- Phase indicator, token usage bar, buttons
- Add renderer/src/components/Header.tsx
- Project/session dropdowns with create buttons
- Phase indicator showing current workflow state
- Add renderer/src/components/DocumentPane.tsx
- Markdown viewer/editor with toggle
- Syntax highlighting for review comments
- Task checkbox rendering
- Add renderer/src/components/ChatPane.tsx
- Message list with auto-scroll
- Input field with Enter to send
- Loading state indicator
- Add renderer/src/components/ActionBar.tsx
- Token usage bar with color coding
- Review/Submit buttons for workflow
- Permission mode toggle for implement phase
- Add renderer/src/App.tsx
- Full state management for projects, sessions, messages
- Claude message subscription
- Workflow handlers (review, submit, phase advance)
- Update renderer/src/main.tsx to render App
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
- Implement src/main/preload.ts with typed API bridge
- Projects, sessions, messages CRUD
- Chat send/interrupt
- Workflow review/advance/permissions
- Artifact read/write
- Directory picker dialog
- Claude message event subscription
- Implement src/main/ipc/handlers.ts
- All IPC handlers with proper error handling
- Message forwarding to renderer
- Assistant message storage
- Update src/main/index.ts
- Initialize database on startup
- Register IPC handlers
- Clean database close on exit
|
| |
|
|
|
|
|
|
|
|
| |
- Add @anthropic-ai/claude-agent-sdk dependency
- Implement src/main/claude/phases.ts with phase configs (research/plan/implement)
- Implement src/main/claude/index.ts with SDK wrapper
- query() integration with session management
- Session resume support
- Artifact read/write utilities
- Phase advancement logic
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| |
|