{"id":15043820,"url":"https://github.com/bob6664569/claude-sync","last_synced_at":"2026-03-13T13:32:59.788Z","repository":{"id":253252567,"uuid":"842380474","full_name":"bob6664569/claude-sync","owner":"bob6664569","description":"Keep your files in sync with your Claude Projects","archived":false,"fork":false,"pushed_at":"2025-04-28T10:35:59.000Z","size":1073,"stargazers_count":8,"open_issues_count":1,"forks_count":2,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-28T11:31:38.517Z","etag":null,"topics":["claude","electron","file-synchronization","ia","javascript","nodejs"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"wtfpl","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/bob6664569.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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}},"created_at":"2024-08-14T08:29:09.000Z","updated_at":"2025-04-28T10:15:34.000Z","dependencies_parsed_at":"2024-08-15T14:49:47.901Z","dependency_job_id":"5da84362-715b-49f5-94e0-28f8f8c133e7","html_url":"https://github.com/bob6664569/claude-sync","commit_stats":null,"previous_names":["bob6664569/claude-sync"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/bob6664569/claude-sync","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bob6664569%2Fclaude-sync","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bob6664569%2Fclaude-sync/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bob6664569%2Fclaude-sync/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bob6664569%2Fclaude-sync/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/bob6664569","download_url":"https://codeload.github.com/bob6664569/claude-sync/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bob6664569%2Fclaude-sync/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30467802,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-13T11:00:43.441Z","status":"ssl_error","status_checked_at":"2026-03-13T11:00:23.173Z","response_time":60,"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":["claude","electron","file-synchronization","ia","javascript","nodejs"],"created_at":"2024-09-24T20:49:38.543Z","updated_at":"2026-03-13T13:32:59.742Z","avatar_url":"https://github.com/bob6664569.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Claude Sync\n\n![GitHub](https://img.shields.io/github/license/bob6664569/claude-sync)\n\n![assets/capture.png](assets/capture.png)\n\nClaude Sync is a desktop application developed with Electron for synchronizing files with Claude's \"Projects\" feature. It provides an intuitive user interface for selecting and syncing files and folders with your Claude projects.\n\n## Features\n\n- Using Claude authentication with the default magic link system\n- Selection of files and folders to synchronize with Claude Projects\n- Intuitive user interface with file tree visualization\n- Real-time console for tracking file modifications\n- Dark mode support\n\n## Prerequisites\n\n- Node.js (version 18.0.0 or higher)\n- npm (usually installed with Node.js)\n\n## Installation\n \n1. Clone this repository:\n   ```\n   git clone git@github.com:bob6664569/claude-sync.git\n   ```\n\n2. Navigate to the project folder:\n   ```\n   cd claude-sync\n   ```\n\n3. Install dependencies:\n   ```\n   npm install\n   ```\n\n## Configuration\n\nJust create a `.env` file in the root of the project and add the necessary environment variables:\n```\nAPI_BASE_URL=https://api.claude.ai/api/\nRECAPTCHA_SITE_KEY=s1t3k3y\n```\n\n## Usage\n\n1. To launch the application in development mode:\n   ```\n   npm start\n   ```\n\n2. To build the application for production:\n   ```\n   npm run build\n   ```\n\n## Project Structure\n\n```\nclaude-sync/\n├── src/\n│   ├── main/\n│   │   ├── index.js\n│   │   ├── api-client.js\n│   │   ├── ipc-handlers.js\n│   │   ├── menu.js\n│   │   ├── store.js\n│   │   └── windows.js\n│   ├── renderer/\n│   │   ├── login.html\n│   │   ├── login.js\n│   │   ├── main.html\n│   │   ├── main.js\n│   │   ├── project-selection.html\n│   │   ├── project-selection.js\n│   │   └── styles.css\n│   └── utils/\n│       ├── config.js\n│       ├── file-utils.js\n│       └── logger.js\n├── package.json\n├── README.md\n└── .gitignore\n```\n\n```mermaid\ngraph TD\n    A[Main Process] --\u003e B[IPC Handlers]\n    A --\u003e C[Windows Management]\n    A --\u003e D[Store]\n    A --\u003e E[API Client]\n    \n    B --\u003e F[Renderer Process: Login]\n    B --\u003e G[Renderer Process: Main]\n    B --\u003e H[Renderer Process: Project Selection]\n    \n    G --\u003e I[File Watcher]\n    G --\u003e J[Sync Queue]\n    \n    E --\u003e K[Claude API]\n    \n    D --\u003e L[Electron Store]\n    \n    subgraph Utils\n        M[Config]\n        N[File Utils]\n        O[Logger]\n    end\n    \n    G --\u003e Utils\n    B --\u003e Utils\n    E --\u003e Utils\n```\n\n## Contributing\n\nContributions are welcome! To contribute:\n\n1. Fork the project\n2. Create your feature branch (`git checkout -b feature/AmazingFeature`)\n3. Commit your changes (`git commit -m 'Add some AmazingFeature'`)\n4. Push to the branch (`git push origin feature/AmazingFeature`)\n5. Open a Pull Request\n\n## License\n\nThis project is licensed under the WTFPL (Do What The F*ck You Want To Public License). For more information, see the [LICENSE](LICENSE) file in this repository or visit [http://www.wtfpl.net/](http://www.wtfpl.net/).\n\n## Contact\n\n[@bob6664569](https://twitter.com/bob6664569) - johan@trilogik.net\n\nProject Link: [https://github.com/bob6664569/claude-sync](https://github.com/bob6664569/claude-sync)","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbob6664569%2Fclaude-sync","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbob6664569%2Fclaude-sync","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbob6664569%2Fclaude-sync/lists"}