{"id":47901887,"url":"https://github.com/skydiver/claude-brain","last_synced_at":"2026-04-04T04:09:24.686Z","repository":{"id":346076068,"uuid":"1182000365","full_name":"skydiver/claude-brain","owner":"skydiver","description":"A persistent knowledge store for Claude Code — SQLite + MCP server + Tauri desktop app","archived":false,"fork":false,"pushed_at":"2026-03-22T05:01:37.000Z","size":1398,"stargazers_count":1,"open_issues_count":0,"forks_count":1,"subscribers_count":0,"default_branch":"master","last_synced_at":"2026-03-22T19:29:58.728Z","etag":null,"topics":["claude","claude-code","knowledge-base","leptos","mcp","rust","sqlite","tauri"],"latest_commit_sha":null,"homepage":"","language":"Rust","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/skydiver.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-03-14T22:53:22.000Z","updated_at":"2026-03-22T05:01:40.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/skydiver/claude-brain","commit_stats":null,"previous_names":["skydiver/claude-brain"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/skydiver/claude-brain","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/skydiver%2Fclaude-brain","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/skydiver%2Fclaude-brain/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/skydiver%2Fclaude-brain/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/skydiver%2Fclaude-brain/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/skydiver","download_url":"https://codeload.github.com/skydiver/claude-brain/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/skydiver%2Fclaude-brain/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31387139,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-04T01:22:39.193Z","status":"online","status_checked_at":"2026-04-04T02:00:07.569Z","response_time":60,"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","claude-code","knowledge-base","leptos","mcp","rust","sqlite","tauri"],"created_at":"2026-04-04T04:09:24.252Z","updated_at":"2026-04-04T04:09:24.678Z","avatar_url":"https://github.com/skydiver.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# claude-brain\n\nA persistent knowledge store for Claude Code. Store learnings, gotchas, and project context in a SQLite database — then browse them from a native desktop app or let Claude access them automatically via MCP.\n\n## Components\n\n| Component       | Description                                                                       | Docs                               |\n| --------------- | --------------------------------------------------------------------------------- | ---------------------------------- |\n| **MCP Server**  | Claude Code integration — stores and retrieves entries via Model Context Protocol | [docs/MCP.md](docs/MCP.md)         |\n| **Desktop App** | Native macOS app for browsing, searching, and reading entries                     | [docs/DESKTOP.md](docs/DESKTOP.md) |\n\n## Quick Start\n\n```bash\n# Build everything into dist/\nmake\n\n# Or build individually\nmake brain-mcp    # MCP server binary\nmake brain-app    # Desktop app (ClaudeBrain.app)\n```\n\n## Development\n\n### Prerequisites\n\n```bash\n# Rust tooling\ncargo install tauri-cli\ncargo install trunk\nrustup target add wasm32-unknown-unknown\n\n# Node dependencies (for Tailwind CSS)\ncd crates/brain-app-frontend \u0026\u0026 npm install\n```\n\n### Commands\n\n| Command      | Description                      |\n| ------------ | -------------------------------- |\n| `make`       | Build both binaries into `dist/` |\n| `make dev`   | Run desktop app with hot-reload  |\n| `make test`  | Run all workspace tests          |\n| `make clean` | Remove all build artifacts       |\n\n### Project Structure\n\n```\nclaude-brain/\n├── crates/\n│   ├── brain-core/           # Shared library: SQLite, models, FTS5\n│   ├── brain-mcp/            # MCP server binary (stdio transport)\n│   ├── brain-app/            # Tauri v2 native shell\n│   └── brain-app-frontend/   # Leptos 0.8 WASM frontend\n├── docs/\n│   ├── MCP.md                # MCP server documentation\n│   └── DESKTOP.md            # Desktop app documentation\n├── Makefile                  # Build targets\n└── dist/                     # Build output (gitignored)\n```\n\n### Database\n\nAll components share the same SQLite database at `~/.config/claude-brain/brain.db` (override with `BRAIN_DB_PATH`). WAL mode enables concurrent access — the MCP server can write while the desktop app reads.\n\n### Testing\n\n```bash\nmake test\n```\n\nRuns 45 tests across the workspace: brain-core (30), brain-app (7), brain-app-frontend (8).\n\n## License\n\n[MIT](LICENSE)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fskydiver%2Fclaude-brain","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fskydiver%2Fclaude-brain","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fskydiver%2Fclaude-brain/lists"}