{"id":49353383,"url":"https://github.com/from68/obsidian-cc-launcher","last_synced_at":"2026-04-27T11:02:23.528Z","repository":{"id":338098097,"uuid":"1156550269","full_name":"from68/obsidian-cc-launcher","owner":"from68","description":"Launch Claude Code from the right context in the Obsidian Vault","archived":false,"fork":false,"pushed_at":"2026-03-09T10:47:21.000Z","size":148,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-03-14T16:49:58.514Z","etag":null,"topics":["claude-code","obsidian","obsidian-plugin"],"latest_commit_sha":null,"homepage":"","language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/from68.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"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":"2026-02-12T19:22:29.000Z","updated_at":"2026-03-09T10:47:25.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/from68/obsidian-cc-launcher","commit_stats":null,"previous_names":["rockockoronkorock/obsidian-cc-launcher","from68/obsidian-cc-launcher"],"tags_count":5,"template":false,"template_full_name":null,"purl":"pkg:github/from68/obsidian-cc-launcher","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/from68%2Fobsidian-cc-launcher","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/from68%2Fobsidian-cc-launcher/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/from68%2Fobsidian-cc-launcher/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/from68%2Fobsidian-cc-launcher/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/from68","download_url":"https://codeload.github.com/from68/obsidian-cc-launcher/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/from68%2Fobsidian-cc-launcher/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32333199,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-26T23:26:28.701Z","status":"online","status_checked_at":"2026-04-27T02:00:06.769Z","response_time":128,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["claude-code","obsidian","obsidian-plugin"],"created_at":"2026-04-27T11:02:22.157Z","updated_at":"2026-04-27T11:02:23.521Z","avatar_url":"https://github.com/from68.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Claude Code Launcher for Obsidian\n\nLaunch Claude Code CLI sessions directly from CLAUDE.md files in your Obsidian vault.\n\n## Features\n\n- 🚀 **Right-click to launch**: Context menu on CLAUDE.md files (both file explorer and editor tabs)\n- ⚙️ **Configurable**: Customize terminal application and Claude Code command\n- 🖥️ **Cross-platform**: Works on macOS, Windows, and Linux with platform-specific defaults\n- 📁 **Automatic directory**: Claude Code launches in the correct working directory\n\n## Installation\n\n### Manual Installation\n\n1. Download the latest release from GitHub\n2. Extract the files into your vault's `.obsidian/plugins/obsidian-cc-launch/` directory\n3. Reload Obsidian\n4. Enable the plugin in Settings → Community plugins\n\n### Prerequisites\n\n- **Claude Code CLI** must be installed and accessible in your PATH\n- **Desktop version** of Obsidian (this plugin does not work on mobile)\n- A terminal application (Terminal.app, cmd.exe, gnome-terminal, etc.)\n\n## Usage\n\n### Basic Usage\n\n1. Create or open a CLAUDE.md file anywhere in your vault\n2. Right-click on the file in the file explorer **OR** right-click on the editor tab\n3. Select \"Launch Claude Code\" from the context menu\n4. A terminal window opens with Claude Code running in that file's directory\n\n### Configuration\n\nGo to **Settings → Claude Code Launcher** to customize:\n\n#### Terminal Command\n- The command used to launch your terminal application\n- Uses placeholders: `{DIR}` for directory, `{CMD}` for command\n- Platform-specific defaults are provided\n\n**macOS Examples:**\n```\nosascript -e 'tell application \"Terminal\" to do script \"cd {DIR} \u0026\u0026 {CMD}\"'\nosascript -e 'tell application \"iTerm2\" to create window with default profile command \"cd {DIR} \u0026\u0026 {CMD}\"'\n```\n\n**Windows Examples:**\n```\nstart cmd /K \"cd /D {DIR} \u0026\u0026 {CMD}\"\nwt.exe -w -1 new-tab -d \"{DIR}\" cmd /K {CMD}\nstart pwsh -NoExit -Command \"Set-Location '{DIR}'; {CMD}\"\n```\n\n**Linux Examples:**\n```\ngnome-terminal --working-directory=\"{DIR}\" -- bash -c \"{CMD}; exec bash\"\nkonsole --workdir \"{DIR}\" --noclose -e {CMD}\nxterm -e \"cd {DIR} \u0026\u0026 {CMD}; exec bash\"\n```\n\n#### Claude Code Command\n- Default: `claude-code`\n- Can be changed to `npx claude-code` or a full path if needed\n\n#### Additional Arguments\n- Optional arguments passed to Claude Code\n- Example: `--verbose`, `--model sonnet`\n\n### Reset to Defaults\n\nClick the \"Reset\" button in settings to restore platform-specific defaults.\n\n## Troubleshooting\n\n### \"Claude Code not found\" error\n\n**Solution:**\n- Ensure Claude Code is installed: `npm install -g @anthropic-ai/claude-code`\n- Verify it's in your PATH: `which claude-code` (macOS/Linux) or `where claude-code` (Windows)\n- Try using the full path in settings: `/usr/local/bin/claude-code`\n\n### \"Permission denied\" error\n\n**Solution:**\n- On **macOS**: Grant Automation permissions to Obsidian in System Preferences → Security \u0026 Privacy → Privacy → Automation\n- On **Linux**: Ensure your terminal application is executable: `chmod +x /usr/bin/gnome-terminal`\n- On **Windows**: Run Obsidian as administrator if needed\n\n### Context menu item doesn't appear\n\n**Solution:**\n- Ensure the file is named exactly **CLAUDE.md** (case-insensitive)\n- The file must be a file, not a folder\n- Reload Obsidian (Ctrl/Cmd + R)\n\n### Wrong working directory\n\n**Solution:**\n- Verify the terminal command contains `{DIR}` placeholder\n- Check that your terminal application supports working directory specification\n- Try using the \"Reset to defaults\" button in settings\n\n### Terminal doesn't open\n\n**Solution:**\n- Test the terminal command manually in your system terminal\n- Ensure the terminal application is installed and accessible\n- Check Obsidian's Developer Console (Ctrl/Cmd + Shift + I) for error messages\n\n## Platform-Specific Notes\n\n### macOS\n- Default terminal: **Terminal.app**\n- Alternative: **iTerm2** (recommended for better customization)\n- First launch may prompt for Automation permissions\n\n### Windows\n- Default terminal: **cmd.exe**\n- Alternatives: **Windows Terminal**, **PowerShell**\n- Paths with spaces are automatically handled\n\n### Linux\n- Default terminal: **gnome-terminal** (GNOME)\n- Alternatives: **konsole** (KDE), **xfce4-terminal** (XFCE), **xterm** (universal)\n- Terminal detection is automatic based on desktop environment\n\n## Development\n\n### Building from Source\n\n```bash\nnpm install\nnpm run build\n```\n\n### Development Mode\n\n```bash\nnpm run dev\n```\n\nThis starts esbuild in watch mode for automatic rebuilding.\n\n## License\n\nMIT License - See [LICENSE](LICENSE) file for details\n\n## Support\n\n- **Issues**: [GitHub Issues](https://github.com/yourusername/obsidian-cc-launch/issues)\n- **Feature Requests**: [GitHub Discussions](https://github.com/yourusername/obsidian-cc-launch/discussions)\n\n## Credits\n\nCreated with ❤️ for the Obsidian and Claude Code communities.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffrom68%2Fobsidian-cc-launcher","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffrom68%2Fobsidian-cc-launcher","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffrom68%2Fobsidian-cc-launcher/lists"}