{"id":38467552,"url":"https://github.com/benodiwal/medusa","last_synced_at":"2026-01-17T05:03:36.888Z","repository":{"id":332346508,"uuid":"1073589349","full_name":"benodiwal/medusa","owner":"benodiwal","description":"A desktop app for reviewing Claude Code plans before execution.","archived":false,"fork":false,"pushed_at":"2026-01-13T13:32:30.000Z","size":4005,"stargazers_count":10,"open_issues_count":1,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2026-01-13T15:40:46.199Z","etag":null,"topics":["ai","claude-code","developer-tools","obsidian","plans"],"latest_commit_sha":null,"homepage":"https://heymedusa.net","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/benodiwal.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-10-10T10:28:08.000Z","updated_at":"2026-01-13T13:26:26.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/benodiwal/medusa","commit_stats":null,"previous_names":["benodiwal/medusa"],"tags_count":6,"template":false,"template_full_name":null,"purl":"pkg:github/benodiwal/medusa","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/benodiwal%2Fmedusa","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/benodiwal%2Fmedusa/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/benodiwal%2Fmedusa/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/benodiwal%2Fmedusa/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/benodiwal","download_url":"https://codeload.github.com/benodiwal/medusa/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/benodiwal%2Fmedusa/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28497995,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-17T04:31:57.058Z","status":"ssl_error","status_checked_at":"2026-01-17T04:31:45.816Z","response_time":85,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["ai","claude-code","developer-tools","obsidian","plans"],"created_at":"2026-01-17T05:03:35.248Z","updated_at":"2026-01-17T05:03:36.845Z","avatar_url":"https://github.com/benodiwal.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Medusa\n\nYour control center for AI-powered development with Claude Code.\n\n![Medusa](medusa/public/medusa-logo.png)\n\n**Website:** [heymedusa.net](https://heymedusa.net) | **Documentation:** [heymedusa.net/docs](https://heymedusa.net/docs)\n\n## What is Medusa?\n\nMedusa is a desktop app that gives you human oversight over Claude Code through two integrated workflows:\n\n### Plans\nWhen Claude Code enters plan mode, Medusa intercepts the plan and lets you review it before execution:\n- Review plans in a kanban board\n- Add inline annotations (comments, deletions, suggested changes)\n- Approve or request changes with structured feedback\n- View diffs between plan revisions\n\n### Tasks\nCreate tasks and let Claude Code work autonomously on isolated git branches:\n- Run multiple agents in parallel (each on its own git worktree)\n- Monitor progress in real-time\n- Review code changes before merging\n- One-click merge when ready\n\nBoth workflows live in a single unified board—see plans awaiting review alongside running agents and completed tasks.\n\n## Installation\n\n### Download (Recommended)\n\nDownload the latest `.dmg` from [Releases](https://github.com/benodiwal/medusa/releases).\n\n**macOS users:** The app is not code-signed yet. After installing:\n\n1. Open the `.dmg` and drag Medusa to Applications\n2. **Right-click** (or Control-click) on Medusa.app and select **Open**\n3. Click **Open** in the dialog that appears\n\nIf that doesn't work, run this in Terminal:\n```bash\nxattr -cr /Applications/medusa.app\n```\n\n### Build from Source\n\n```bash\ncd medusa\nnpm install\nnpm run tauri build\n```\n\nThe app will be at `src-tauri/target/release/bundle/macos/medusa.app`\n\n## Quick Start\n\n### Using Tasks (No Setup Required)\n\n1. Open Medusa\n2. Click **New Task**\n3. Enter a title, description, and select your project folder\n4. Click **Start Agent** to begin\n\nThe agent runs on an isolated git branch. When it's done, review the changes and merge.\n\n### Using Plans (Auto-Configured)\n\nMedusa automatically configures the Claude Code hook on first launch. Just:\n\n1. Open Medusa\n2. Start Claude Code and enter plan mode\n3. Plans will appear in Medusa for review\n\n**Manual Setup (if auto-setup fails):**\n\nIf you see a setup warning banner, you can configure manually:\n\n1. Copy the hook script:\n```bash\ncurl -o ~/.claude/hooks/medusa-plan-review.sh https://raw.githubusercontent.com/benodiwal/medusa/main/hooks/medusa-plan-review.sh\nchmod +x ~/.claude/hooks/medusa-plan-review.sh\n```\n\n2. Add to `~/.claude/settings.json`:\n```json\n{\n  \"hooks\": {\n    \"PreToolUse\": [\n      {\n        \"matcher\": \"ExitPlanMode\",\n        \"hooks\": [\n          {\n            \"type\": \"command\",\n            \"command\": \"~/.claude/hooks/medusa-plan-review.sh\",\n            \"timeout\": 86400\n          }\n        ]\n      }\n    ]\n  }\n}\n```\n\n**Note:** The `timeout` of `86400` (24 hours) gives you time to review. If timeout is reached, Claude proceeds without approval.\n\n## Workflow\n\n### Task Lifecycle\n\n```\nBacklog → In Progress → Review → Done\n   │           │           │\n   │     Agent runs    Review diffs\n   │     on worktree   Edit commits\n   │                   Merge to main\n   └── Click \"Start Agent\"\n```\n\n### Plan Lifecycle\n\n```\nPending → In Review → Approved/Changes Requested\n   │          │              │\n   │     Add annotations     │\n   │     Review content      └── Claude revises\n   │                              (back to Pending)\n   └── Claude sends plan\n```\n\n### Unified Board\n\nBoth plans and tasks appear in the same kanban:\n- **Backlog**: Tasks waiting to start\n- **In Progress**: Running agents + Plans being revised\n- **Review**: Task diffs ready for review + Plans awaiting approval\n- **Done**: Merged tasks + Approved plans\n\n## Features\n\n| Feature | Plans | Tasks |\n|---------|-------|-------|\n| Kanban board | ✓ | ✓ |\n| Rich annotations | ✓ | — |\n| Revision diffs | ✓ | — |\n| Code diffs | — | ✓ |\n| Parallel execution | — | ✓ |\n| Git worktrees | — | ✓ |\n| One-click merge | — | ✓ |\n| Obsidian export | ✓ | — |\n| Plan sharing | ✓ | — |\n\n## Keyboard Shortcuts\n\n| Shortcut | Action |\n|----------|--------|\n| `⌘K` | Focus search |\n| `⌘↵` | Approve plan |\n| `⌘⇧↵` | Request changes |\n| `Esc` | Close modal |\n\n## Data Storage\n\n- `~/.medusa/medusa.db` - SQLite database (plans, tasks, history)\n- `~/.medusa/sessions/` - Agent session files\n- `~/.medusa/pending/` - Incoming plans from hook\n- `.medusa-worktrees/` - Git worktrees for tasks (in each project)\n\n## Stack\n\n- Tauri 2\n- React + TypeScript\n- Tailwind CSS\n- Rust\n\n## Contributing\n\nFound a bug or have a feature request? [Open an issue](https://github.com/benodiwal/medusa/issues).\n\n## Please Consider Giving the Repo a Star\n\n\u003ca href=\"https://github.com/benodiwal/medusa\"\u003e\n  \u003cpicture\u003e\n    \u003csource media=\"(prefers-color-scheme: dark)\" srcset=\"https://api.star-history.com/svg?repos=benodiwal/medusa\u0026type=Timeline\u0026theme=dark\" /\u003e\n    \u003csource media=\"(prefers-color-scheme: light)\" srcset=\"https://api.star-history.com/svg?repos=benodiwal/medusa\u0026type=Timeline\" /\u003e\n    \u003cimg alt=\"Star History Chart\" src=\"https://api.star-history.com/svg?repos=benodiwal/medusa\u0026type=Timeline\" /\u003e\n  \u003c/picture\u003e\n\u003c/a\u003e\n\n## License\n\nApache 2.0\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbenodiwal%2Fmedusa","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbenodiwal%2Fmedusa","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbenodiwal%2Fmedusa/lists"}