{"id":47683098,"url":"https://github.com/janrito/rbtr","last_synced_at":"2026-06-09T00:01:39.389Z","repository":{"id":344498117,"uuid":"1158166782","full_name":"janrito/rbtr","owner":"janrito","description":"An agentic code review harness in the terminal.","archived":false,"fork":false,"pushed_at":"2026-06-07T22:44:57.000Z","size":4169,"stargazers_count":1,"open_issues_count":2,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-06-07T23:23:23.833Z","etag":null,"topics":["code-review","llm","pydantic-ai","vibe-coding"],"latest_commit_sha":null,"homepage":"","language":"Python","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/janrito.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":"AGENTS.md","dco":null,"cla":null}},"created_at":"2026-02-14T22:43:12.000Z","updated_at":"2026-04-07T11:41:36.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/janrito/rbtr","commit_stats":null,"previous_names":["janrito/rbtr"],"tags_count":7,"template":false,"template_full_name":null,"purl":"pkg:github/janrito/rbtr","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/janrito%2Frbtr","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/janrito%2Frbtr/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/janrito%2Frbtr/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/janrito%2Frbtr/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/janrito","download_url":"https://codeload.github.com/janrito/rbtr/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/janrito%2Frbtr/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34085321,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-08T02:00:07.615Z","response_time":111,"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":["code-review","llm","pydantic-ai","vibe-coding"],"created_at":"2026-04-02T14:10:14.235Z","updated_at":"2026-06-09T00:01:39.379Z","avatar_url":"https://github.com/janrito.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# rbtr\n\nMonorepo for rbtr.\n\n## Packages\n\n| Package                                | Language   | Description                              |\n| -------------------------------------- | ---------- | ---------------------------------------- |\n| [`rbtr`](packages/rbtr/)               | Python     | Structural code index (CLI + library)    |\n| [`pi-rbtr`](packages/pi-rbtr/)         | TypeScript | Pi extension for the code index          |\n| [`rbtr-eval`](packages/rbtr-eval/)     | Python     | Benchmark and tuning pipeline (DVC)      |\n\n## Skills\n\n| Skill                                            | Description        |\n| ------------------------------------------------ | ------------------ |\n| [`review-github-pr`](skills/review-github-pr/)   | PR review workflow |\n\n## Install\n\n```bash\nuv tool install rbtr        # the code index CLI\npi install npm:@rbtr/pi     # the pi extension\n```\n\nSee each package's README for usage:\n[`rbtr`](packages/rbtr/) and [`pi-rbtr`](packages/pi-rbtr/).\n\n## Architecture\n\nrbtr is split across three packages and one skill:\n\n- **[`rbtr`](packages/rbtr/)** — the Python CLI and daemon that\n  builds and serves the structural index.\n- **[`pi-rbtr`](packages/pi-rbtr/)** — a thin TypeScript pi\n  extension that talks to the daemon and surfaces its queries\n  as agent tools.\n- **[`review-github-pr`](skills/review-github-pr/)** — a skill\n  that drives GitHub PR reviews via `gh api graphql`.\n- **[`rbtr-eval`](packages/rbtr-eval/)** — an internal DVC\n  pipeline for search-quality benchmarking; not shipped.\n\nThe extension talks to the daemon over ZMQ: a REP socket for\nrequest/response and a PUB socket for progress, ready, and\nerror notifications. See\n[`packages/rbtr/ARCHITECTURE.md`](packages/rbtr/ARCHITECTURE.md)\nand\n[`packages/pi-rbtr/ARCHITECTURE.md`](packages/pi-rbtr/ARCHITECTURE.md)\nfor detail.\n\n## Development\n\n```bash\njust setup                  # uv sync + bun install\njust check                  # schema-check + lint + typecheck + test\njust fmt                    # auto-fix (Python, TypeScript, SQL, Markdown)\n```\n\n| Recipe              | What it does                                      |\n| ------------------- | ------------------------------------------------- |\n| `just test`         | pytest (all Python packages)                      |\n| `just test-ts`      | vitest (pi-rbtr)                                  |\n| `just typecheck`    | mypy + tsc                                        |\n| `just lint`         | ruff + biome + sqlfluff + rumdl                   |\n| `just schema-check` | regenerate `protocol.ts`, fail on drift           |\n| `just eval`         | run the rbtr-eval DVC pipeline                    |\n| `just build`        | build Python wheels + npm tarballs                |\n\n| Skill                                            | Description               |\n| ------------------------------------------------ | ------------------------- |\n| [`rbtr-data`](.agents/skills/rbtr-data/)         | Data handling conventions |\n| [`rbtr-testing`](.agents/skills/rbtr-testing/)   | Testing conventions       |\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjanrito%2Frbtr","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjanrito%2Frbtr","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjanrito%2Frbtr/lists"}