{"id":42559521,"url":"https://github.com/cevr/repo","last_synced_at":"2026-02-03T01:10:33.725Z","repository":{"id":332873795,"uuid":"1130622473","full_name":"cevr/repo","owner":"cevr","description":"Multi-registry source code cache manager - fetch source from GitHub, npm, PyPI, Crates.io","archived":false,"fork":false,"pushed_at":"2026-01-26T03:28:32.000Z","size":156,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-01-26T17:56:07.567Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/cevr.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,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-01-08T19:10:05.000Z","updated_at":"2026-01-26T03:28:00.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/cevr/repo","commit_stats":null,"previous_names":["cevr/repo"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/cevr/repo","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cevr%2Frepo","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cevr%2Frepo/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cevr%2Frepo/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cevr%2Frepo/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/cevr","download_url":"https://codeload.github.com/cevr/repo/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cevr%2Frepo/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28850474,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-28T15:15:36.453Z","status":"ssl_error","status_checked_at":"2026-01-28T15:15:13.020Z","response_time":57,"last_error":"SSL_read: 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":[],"created_at":"2026-01-28T20:05:50.981Z","updated_at":"2026-01-28T20:05:51.719Z","avatar_url":"https://github.com/cevr.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# repo\n\nMulti-registry source code cache manager. Fetch and cache source code from GitHub, npm, PyPI, and Crates.io.\n\nInspired by [vercel-labs/opensrc](https://github.com/vercel-labs/opensrc).\n\n## Features\n\n- **Source-first**: Package registries (npm, PyPI, Crates) resolve to source git repos when possible, with tarball fallback\n- **Multi-registry**: GitHub, npm, PyPI, Crates.io support\n- **Shallow clones**: Default depth of 100 commits for fast fetching\n- **Auto-update**: Re-fetching updates existing git repos\n- **Global cache**: All repos cached at `~/.cache/repo/`\n\n## Installation\n\n```bash\n# Clone and build\ngit clone https://github.com/cevr/repo.git\ncd repo\nbun install\nbun run build\n\n# Link globally\nbun link\n```\n\n## Quick Start\n\n```bash\n# Fetch a GitHub repo\nrepo fetch vercel/next.js\n\n# Fetch an npm package (resolves to source repo)\nrepo fetch npm:effect@3.0.0\n\n# Get the cached path\nrepo path vercel/next.js\n\n# List all cached repos\nrepo list\n\n# Search across all cached repos\nrepo search \"createServer\"\n```\n\n## Spec Formats\n\n| Format | Example                                |\n| ------ | -------------------------------------- |\n| GitHub | `owner/repo`, `owner/repo@v1.0.0`      |\n| npm    | `npm:lodash`, `npm:@effect/cli@0.73.0` |\n| PyPI   | `pypi:requests@2.31.0`                 |\n| Crates | `crates:serde@1.0.0`                   |\n\n## Commands\n\n| Command               | Description                |\n| --------------------- | -------------------------- |\n| `repo fetch \u003cspec\u003e`   | Fetch/update repository    |\n| `repo path \u003cspec\u003e`    | Get cached path            |\n| `repo info \u003cspec\u003e`    | Show repository metadata   |\n| `repo list`           | List cached repos          |\n| `repo search \u003cquery\u003e` | Search across cached repos |\n| `repo stats`          | Cache statistics           |\n| `repo remove \u003cspec\u003e`  | Remove from cache          |\n| `repo prune`          | Remove old/large repos     |\n| `repo clean`          | Clear entire cache         |\n| `repo open \u003cspec\u003e`    | Open in editor             |\n\nSee [SKILL.md](./SKILL.md) for detailed usage.\n\n## Storage\n\n```\n~/.cache/repo/\n├── metadata.json              # Index\n├── {owner}/{repo}/            # GitHub repos\n└── {package}/{version}/       # Package registries\n```\n\n## Tech Stack\n\n- [Bun](https://bun.sh) - Runtime\n- [Effect](https://effect.website) - Functional TypeScript\n- [@effect/cli](https://github.com/Effect-TS/effect/tree/main/packages/cli) - CLI framework\n\n## Credits\n\nInspired by [vercel-labs/opensrc](https://github.com/vercel-labs/opensrc) - a tool for exploring open source projects.\n\n## License\n\nMIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcevr%2Frepo","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcevr%2Frepo","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcevr%2Frepo/lists"}