197 Commits

Author SHA1 Message Date
yushen
3b4ab35b32 chore: bump version to 0.1.3
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
desktop-v0.1.3 v0.1.3
2026-01-17 19:08:56 +08:00
Jiayuan
9403856707 Merge pull request #59 from multica-ai/forrestchang/fix-chinese-font
fix: replace Geist Sans with Inter and add Chinese font support
2026-01-17 11:44:49 +08:00
Jiayuan
48f5d7e66b docs: add format:check to pre-commit checks in CLAUDE.md
Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
2026-01-17 11:43:36 +08:00
Jiayuan
b7d5c78d5d style: fix formatting in index.css
Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
2026-01-17 11:42:28 +08:00
Jiayuan
dcd3acbfa4 fix: replace Geist Sans with Inter font and add Chinese font support
Changed default font from Geist Sans to Inter for better rendering of full-width Chinese punctuation. Added Chinese font fallbacks (PingFang SC, Microsoft YaHei, Noto Sans SC) to properly display Chinese characters and punctuation marks.

Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
2026-01-17 11:32:36 +08:00
Jiayuan
90b68e8911 Merge pull request #58 from multica-ai/forrestchang/format-code
style: format code with Prettier
2026-01-16 22:46:18 +08:00
Jiayuan
4ed992c299 style: format code with Prettier
Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
2026-01-16 22:44:34 +08:00
Jiayuan
aad1d8724b Merge pull request #57 from potapotato/fix/windows-path-separator
fix: correct PATH separator for Windows in agent detection
2026-01-16 22:27:32 +08:00
DANGO
65a809c138 fix: correct PATH separator for Windows in agent detection
- Fix getEnhancedPath() to use ';' instead of ':' on Windows
- Fix Settings.tsx agent status check to handle undefined agent results
- This resolves opencode detection failure on Windows systems
- Platform-aware separator selection ensures cross-platform compatibility
- UI now properly displays agent installation status

Fixes multica-ai/multica issue where opencode showed as not installed despite being properly installed and available in PATH.
2026-01-16 21:50:51 +08:00
Naiyuan Qing
a16c2a361f Merge pull request #56 from multica-ai/fix/handle-missing-directory
Fix/handle missing directory
2026-01-16 18:05:13 +08:00
Naiyuan Qing
dad7006ce7 merge: resolve conflicts with origin/main
Keep both features:
- App focus event (HEAD)
- Auto-update functionality (origin/main)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-16 18:03:18 +08:00
Naiyuan Qing
780dc7389b style: update Tooltip to modern popover style
- Remove arrow for cleaner popover aesthetic
- Add backdrop blur and subtle shadow for depth
- Use rounded-lg for rounder corners
- Default to top positioning with 4px offset
- Disable tooltip on active sidebar items
- Update shrink-0 class names (linter auto-fix)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-16 17:59:55 +08:00
Naiyuan Qing
6b3a397495 fix: enable scroll for RightPanel FileTree overflow
Add flex flex-col to RightPanel inner div so RightPanelContent's
flex-1 overflow-auto can work properly, allowing FileTree to scroll
when content exceeds panel height.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-16 17:50:39 +08:00
Naiyuan Qing
3fcbaf3825 fix: handle missing directory - show warning and allow delete only
- Add directoryExists runtime check for sessions
- Show warning banner when directory not found
- Disable input and only allow session deletion
- Add withDirectoryExists helper to reduce code duplication
- Validate directory on app focus to detect deleted folders

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-16 17:46:02 +08:00
yushen
e7ff4977c8 chore: bump version to 0.1.2
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
desktop-v0.1.2 v0.1.2
2026-01-16 17:07:53 +08:00
Jiang Bohan
7380f3afdd style: fix prettier formatting in UpdateNotification 2026-01-16 16:34:46 +08:00
Jiang Bohan
21e3e1dd86 Merge remote main with auto-update feature 2026-01-16 16:25:10 +08:00
Jiang Bohan
8a13429c36 Merge feat/auto-update: add auto-update functionality 2026-01-16 16:23:59 +08:00
Jiang Bohan
cd792f6110 fix: show error state in update notification instead of hiding 2026-01-16 16:18:13 +08:00
yushen
9b99881cf7 chore: add arch suffix to mac zip artifact name
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-16 16:02:55 +08:00
yushen
fe9536860f chore: bump version to 0.1.1
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
v0.1.1 desktop-v0.1.1
2026-01-16 15:51:10 +08:00
Naiyuan Qing
cdcf4e4e0d Merge pull request #55 from multica-ai/fix/collapsible-summary-style
fix: use Collapsible component for summary row styling
2026-01-16 15:44:10 +08:00
Naiyuan Qing
a2f18c62e8 fix: use Collapsible component for summary row styling
Refactors CollapsibleAssistantMessage to use shadcn Collapsible
component pattern, making the entire summary row clickable with
hover background effect - consistent with ToolCallItem styling.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-16 15:41:36 +08:00
LinYushen
593fd7476a Merge pull request #54 from multica-ai/fix/macos-gui-path-fix
fix: resolve PATH issue for macOS GUI apps
2026-01-16 15:31:11 +08:00
yushen
b8e3884e74 fix: resolve PATH issue for macOS GUI apps
GUI apps on macOS don't inherit PATH from shell dotfiles (.zshrc, .bashrc, etc.).
This causes agent commands to fail when launched from Finder/Dock.

- Add fix-path dependency to correct PATH on app start
- Configure electron-vite to bundle ESM-only dependencies (fix-path, shell-path, strip-ansi)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-16 15:25:02 +08:00
Jiang Bohan
eb6f34bd1d feat: add dev mode support for auto-update testing 2026-01-16 15:07:12 +08:00
Jiang Bohan
b397e52cab feat: add auto-update functionality
- Add electron-updater for automatic updates from GitHub releases
- Configure electron-builder to publish to GitHub
- Create AutoUpdater module in main process
- Add UpdateNotification component in bottom-right corner
- Support check, download, and install update flow
- Only check for updates in production mode

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-16 14:42:17 +08:00
Jiang Bohan
b29b8b77d0 test: update Conductor tests for lazy agent start 2026-01-16 14:23:58 +08:00
Jiang Bohan
567d2eb146 style: fix prettier formatting in useApp.ts 2026-01-16 14:20:53 +08:00
Jiang Bohan
699da814ee feat: decouple session creation from agent startup
- Lazy agent initialization: agent now starts on first prompt instead of session creation
- Show auth errors inline in chat with structured UI (badges, steps, command button)
- Add one-click terminal command execution for authentication
- Users can enter chat immediately after selecting folder

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-16 14:17:44 +08:00
Jiayuan
5f1a0cff56 Merge pull request #53 from multica-ai/forrestchang/add-product-image
Add product screenshot to README
2026-01-16 14:03:30 +08:00
Jiayuan
073ae46d77 Add product screenshot to README 2026-01-16 14:02:00 +08:00
LinYushen
cf74853712 Merge pull request #52 from multica-ai/docs/update-supported-agents
docs: update Supported Agents list in README files
2026-01-16 14:00:58 +08:00
yushen
e895e9dde9 docs: update Supported Agents list in README files
Replace Gemini CLI with Claude Code in all README files:
- Update agent list text to mention Claude Code, Codex CLI, OpenCode
- Replace Gemini CLI row with Claude Code in Supported Agents table
- Add claude-code-acp install command

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-16 13:59:16 +08:00
Naiyuan Qing
b04d4397db Merge pull request #51 from multica-ai/NevilleQingNY/optimize-file-tree-menu-logic
fix: improve file tree refresh for multi-agent compatibility
2026-01-16 13:24:08 +08:00
Naiyuan Qing
aa5bbb065d fix: improve file tree refresh for multi-agent compatibility
- Add toolCallId -> kind mapping to handle Codex and other agents
- tool_call_update events don't include kind field, so we store it
  from tool_call events and look it up later
- Add 'execute' to FILE_MODIFYING_KINDS for Codex bash commands
- Clear mapping on session change to avoid stale data
- Support both 'completed' and 'failed' status for refresh trigger

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-16 13:21:40 +08:00
LinYushen
b587d70556 Merge pull request #50 from multica-ai/feature/auto-install-agent-logic
Fix polling detection to check all agent components
2026-01-16 13:17:36 +08:00
yushen
ea959e577b Fix polling detection to check all agent components
- Change `installed` check from primary command only to all required commands
- Agents with multiple components (e.g., claude-code requiring both CLI and ACP)
  are now only marked as installed when all components are present
- This fixes the issue where polling would stop prematurely when only the
  primary command (e.g., `claude`) was detected but `claude-code-acp` was not
- Also includes related changes for terminal-based installation flow

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-16 13:15:55 +08:00
LinYushen
c158ac15dd Merge pull request #48 from multica-ai/chore/update-build-config
Update build config and add zod dependency
2026-01-16 12:46:42 +08:00
Naiyuan Qing
c158c87d43 Merge pull request #49 from multica-ai/fix/acp-error-handling
Fix ACP error handling to use event-driven pattern
2026-01-16 12:44:03 +08:00
Naiyuan Qing
ec7d7f4580 Fix ACP error handling to use event-driven pattern
Change error handling in sendPrompt from throwing exceptions to emitting
session update events. This ensures errors appear inline in the chat
instead of triggering IPC failures and toast notifications.

- Emit error as agent_message_chunk instead of throwing
- Return 'error' stopReason for caller awareness
- Add parseAcpError helper for user-friendly messages

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-16 12:42:18 +08:00
yushen
7b68874977 Update build config and add zod dependency
- Add .env to .gitignore
- Enable macOS notarization in electron-builder
- Update dmg artifact naming to include arch
- Add zod dependency for schema validation
- Reorganize devDependencies in package.json

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-16 12:38:46 +08:00
LinYushen
a404575fc5 Merge pull request #47 from multica-ai/revert-46-fix/agent-install-permission
Revert "Fix npm global install permission error by using user-level prefix"
2026-01-16 12:36:43 +08:00
LinYushen
ddad9ef21d Revert "Fix npm global install permission error by using user-level prefix" 2026-01-16 12:36:25 +08:00
LinYushen
384be3e39d Merge pull request #46 from multica-ai/fix/agent-install-permission
Fix npm global install permission error by using user-level prefix
2026-01-16 12:25:40 +08:00
yushen
7d37bbc172 Fix npm global install permission error by using user-level prefix
- Add ~/.npm-global/bin to enhanced PATH in path.ts
- Add getNpmUserPrefix() function for user-level npm directory
- Modify installClaudeCodeACP, installCodexCLI, installCodexACP to use
  --prefix ~/.npm-global for installation without sudo
- Update formatInstallError to provide actionable fix for permission errors
- Add unit tests for agent-install module

This fixes EACCES permission errors when installing agents via npm install -g
by redirecting installations to the user's home directory.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-16 11:54:19 +08:00
Naiyuan Qing
a53dfac07f Merge pull request #45 from multica-ai/fix/toast-neutral-style
Refactor toast notifications to use neutral background with colored i…
2026-01-16 11:04:44 +08:00
Naiyuan Qing
3a46030f7b Refactor toast notifications to use neutral background with colored icons
- Move toast position from top-center to bottom-right
- Remove richColors and use neutral popover background for all toast types
- Add colored icons: green (success), red (error), amber (warning), blue (info)
- Improve switch agent success message

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-16 11:01:34 +08:00
Jiayuan
523a312882 Merge pull request #44 from multica-ai/NevilleQingNY/optimize-file-tree-menu-logic
Improve file tree refresh detection logic
2026-01-16 10:56:42 +08:00
Naiyuan Qing
c1ece1646b Improve file tree refresh detection logic
- Check both ACP kind and toolName from _meta.claudeCode for better compatibility
- Move file-modifying tool constants to module scope to avoid recreation on every render
- Remove debug console.log statements

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-16 10:47:31 +08:00