Your code, conducted.
A KDE-native AI agent orchestrator. Run multiple Claude Code agents in parallel across isolated git worktrees, review diffs, and manage the full PR/merge lifecycle — all from a single desktop app.
Inspired by Conductor for macOS.
Agent orchestration
- Spawn multiple Claude Code agents per workspace, each working in an isolated git worktree
- Stream agent output in real-time with markdown rendering
- Collapsible thinking blocks and grouped tool actions
- Per-agent model selection (Opus, Sonnet, Haiku)
- Multi-turn conversations with
--continuesession support - Agent sessions and output persist across app restarts
Diff & code review
- Built-in diff viewer powered by libgit2
- Three modes: All changes, Committed only, Pending (uncommitted)
- Color-coded unified diff with line numbers and hunk headers
- Toggle between agent view and diff view with Ctrl+D
PR & merge workflow
- Push branches to remote
- One-click PR creation (GitHub via
gh, Gitea/others via browser) - Auto-generated PR title and description from commit history using Claude Haiku
- Live PR status tracking with colored status indicator
- Auto-detect when PR is merged remotely and pull the source branch
- Prompt to archive workspace after PR is merged
- Local merge with auto-commit of uncommitted worktree changes
- Workspace archival with worktree cleanup
- Forge auto-detection (GitHub, Gitea, GitLab)
KDE integration
- System tray with live agent count and window toggle
- KDE notifications on agent completion and errors
- Settings page (default model, max agents, tray, notifications)
- Native Kirigami UI with Breeze theme
Workspace management
- Sidebar with repos and nested workspaces (Conductor-style)
- Repo overview page with stats
- Add repos without creating workspaces
- Per-repo workspace creation with branch selection
- Qt 6.6+
- KDE Frameworks 6 (Kirigami, KI18n, KCoreAddons, KConfig, KDBusAddons, KNotifications, KStatusNotifierItem, KCrash, KWindowSystem, KIconThemes)
- kirigami-addons
- libgit2
- Extra CMake Modules (ECM)
- Claude Code CLI (
claudein PATH or~/.local/bin) ghCLI (optional, for GitHub PR creation)
cmake -B build/ --install-prefix ~/.local
cmake --build build/
cmake --install build/kductorOr launch from your KDE application menu.
- Add a repository — Click "Add repository" in the sidebar and select a local git repo
- Create a workspace — Click the + button next to a repo to create an isolated worktree
- Add an agent — Click "Agent" in the workspace toolbar, then type a prompt
- Review changes — Toggle the diff viewer with Ctrl+D or the "Diff" button
- Push & merge — Push to remote, create a PR, or merge locally
src/
├── core/
│ ├── gitmanager.cpp # libgit2 wrapper (repos, worktrees, diffs)
│ ├── worktreemanager.cpp # Workspace lifecycle, push/PR/merge ops
│ ├── agentprocess.cpp # QProcess wrapper, Claude stream-json parser
│ ├── agentmanager.cpp # Multi-agent pool, settings, persistence
│ ├── agentoutputmodel.cpp # Ring-buffered output model
│ ├── workspace.cpp # Data model + JSON persistence
│ └── workspacemodel.cpp # QAbstractListModel for QML
├── ui/
│ ├── Main.qml # App shell, sidebar, content loader
│ ├── WorkspacePage.qml # Agent tabs, toolbar, diff toggle
│ ├── AgentPanel.qml # Streaming output, command bar, model picker
│ ├── DiffViewerPage.qml # Diff viewer with mode switcher
│ ├── RepoOverviewPage.qml # Repo stats and workspace list
│ ├── SettingsPage.qml # FormCard settings
│ └── components/ # StatusBadge, StreamingTextArea, CommandBar
└── main.cpp # Entry point, tray, notifications
K (KDE) + Conductor — a conductor orchestrates musicians, Kductor orchestrates AI agents. Also a nod to Conductor, the macOS app that inspired it.
MIT License. See LICENSE.