A Git client with Claude AI built-in. Think GitKraken meets Claude Code.
GitClawd is a visual Git client where you can ask Claude questions about your repository. Select a commit, ask "what does this change do?", and get an actual explanation. Browse your commit history, view diffs, and have Claude help you understand complex code changes.
- Visual commit graph - See your branch history with colored lanes for different branches
- Claude AI assistant - Ask questions about commits, diffs, branches, and your codebase
- File tree view - Browse changed files per commit with syntax-highlighted diffs
- Persistent chat sessions - Conversations are saved per repository
- Native desktop app - Electron-based, works on macOS, Windows, and Linux
- Node.js 20+
- An Anthropic API key (set as
ANTHROPIC_API_KEYenvironment variable)
# Clone the repo
git clone https://github.com/joshualedbetter/gitclawd.git
cd gitclawd
# Install dependencies
cd web && npm install
cd ../app && npm install
# Start the server (terminal 1)
cd web && node server.js
# Start the app (terminal 2)
cd app && npm run electroncd app
npm run dist:mac # macOS .dmg
npm run dist:win # Windows installer
npm run dist:linux # Linux AppImageβββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
β GitClawd (Electron) β
βββββββββββββββ¬ββββββββββββββββββββββββββ¬ββββββββββββββββββββββ€
β Commit β Diff Viewer β Claude Panel β
β Graph β β β
β β + import { foo } β Q: What changed? β
β β commit1 β - import { bar } β β
β β β β A: This commit β
β β commit2 β function test() { β refactors the β
β β β // ... β imports to use... β
β β commit3 β } β β
β β β β
βββββββββββββββ΄ββββββββββββββββββββββββββ΄ββββββββββββββββββββββ
β
βΌ
βββββββββββββββββββββββββββ
β Express Server + SDK β
β - Git operations β
β - Claude Agent SDK β
β - MCP Tools β
βββββββββββββββββββββββββββ
Claude has access to custom MCP tools for interacting with your repository:
| Tool | Description |
|---|---|
GetGitLog |
Fetch commit history with messages, authors, dates |
GetGitStatus |
Get current branch and working tree status |
GetFileDiff |
Get the diff for any commit or working changes |
GetSelectedCommit |
See which commit you've selected in the UI |
GetBranches |
List all local and remote branches |
Plus standard tools: Read, Glob, Grep for exploring your codebase.
- "What does this commit do?"
- "Summarize the changes in the last week"
- "Which files change the most in this repo?"
- "Explain the difference between main and this branch"
- "What's the history of changes to
auth.js?" - "Are there any potential bugs in this diff?"
gitclawd/
βββ app/ # Electron + React frontend
β βββ electron/ # Main process (window, IPC)
β βββ src/ # React components
β β βββ components/ # UI (CommitGraph, DiffViewer, ClaudePanel)
β β βββ lib/ # Utilities (chat storage)
β βββ package.json # Build config + electron-builder
βββ web/ # Backend server
β βββ server.js # Express API + Claude Agent SDK
βββ spikes/ # Early prototypes
βββ design/ # Design explorations
- Visual commit graph
- Diff viewer with syntax highlighting
- Claude chat with persistence
- Write operations (stage, commit)
- Branch operations (create, switch, merge)
- GitHub/GitLab PR integration
- Conflict resolution assistance
- Smaller binary via Tauri
Claude + Claw = Clawd. π¦
MIT
Issues and PRs welcome!
