{"id":51444725,"url":"https://github.com/albertoarena/llm-review-panel","last_synced_at":"2026-07-05T15:00:48.432Z","repository":{"id":368997675,"uuid":"1271993078","full_name":"albertoarena/llm-review-panel","owner":"albertoarena","description":"PHP CLI that runs the same code/plan review across multiple LLM command-line tools (Claude Code, OpenCode, Gemini, Codex, Aider, Qwen) in parallel, then synthesizes them into one balanced result.","archived":false,"fork":false,"pushed_at":"2026-07-03T05:49:58.000Z","size":211,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-07-03T06:26:53.602Z","etag":null,"topics":["ai","ai-tools","aider","claude-code","cli","code-review","codex","developer-tools","gemini","llm","llm-tools","ollama","opencode","php","symfony-console"],"latest_commit_sha":null,"homepage":"https://albertoarena.github.io/llm-review-panel/","language":"PHP","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/albertoarena.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-06-17T07:32:42.000Z","updated_at":"2026-07-03T05:50:01.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/albertoarena/llm-review-panel","commit_stats":null,"previous_names":["albertoarena/llm-review-panel"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/albertoarena/llm-review-panel","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/albertoarena%2Fllm-review-panel","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/albertoarena%2Fllm-review-panel/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/albertoarena%2Fllm-review-panel/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/albertoarena%2Fllm-review-panel/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/albertoarena","download_url":"https://codeload.github.com/albertoarena/llm-review-panel/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/albertoarena%2Fllm-review-panel/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":35158308,"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-07-05T02:00:06.290Z","response_time":100,"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":["ai","ai-tools","aider","claude-code","cli","code-review","codex","developer-tools","gemini","llm","llm-tools","ollama","opencode","php","symfony-console"],"created_at":"2026-07-05T15:00:47.575Z","updated_at":"2026-07-05T15:00:48.367Z","avatar_url":"https://github.com/albertoarena.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"# llm-review-panel\n\n[![CI](https://github.com/albertoarena/llm-review-panel/actions/workflows/ci.yml/badge.svg)](https://github.com/albertoarena/llm-review-panel/actions/workflows/ci.yml)\n[![Repo views](https://raw.githubusercontent.com/albertoarena/llm-review-panel/traffic-data/badge-views.svg)](https://github.com/albertoarena/llm-review-panel)\n[![PHP 8.3+](https://img.shields.io/badge/PHP-8.3%2B-777bb4)](https://www.php.net/)\n[![License: MIT](https://img.shields.io/badge/License-MIT-green.svg)](LICENSE)\n\nA PHP CLI that runs the same review across multiple LLM command-line tools\n(Claude Code, OpenCode, Gemini CLI, Codex, Aider, Qwen) in parallel, then\nsynthesizes their independent reviews into one consolidated result.\n\nIt exists to automate a manual workflow: ask several different LLMs to review\nthe same markdown plan, then compare viewpoints instead of trusting one model.\n\n**Documentation: https://albertoarena.github.io/llm-review-panel/**\n\n## How it works\n\n```\nplan.md ──\u003e [rubric + plan] ──\u003e N reviewers in parallel ──\u003e synthesizer ──\u003e consolidated review\n                                       │                         │\n                                  checkpoint 2              checkpoint 3\n```\n\nThree human checkpoints: confirm the prompt, review raw outputs, accept the\nsynthesis. `--yes` skips them; `--dry-run` prints the resolved commands without\nspawning anything.\n\n## What it is not\n\n- Not a framework app. Symfony Console + Symfony Process only.\n- Not an API client. Reviewers are local CLI binaries you already have\n  installed and authenticated. The tool spawns processes; it never makes HTTP\n  calls to model APIs.\n- Not per-provider code. One generic reviewer class, driven entirely by\n  `config.json`. Adding a new reviewer is a config edit.\n\n## Requirements\n\n- PHP 8.3+\n- Composer\n- At least one reviewer CLI on `PATH` (Claude Code, OpenCode, etc.). See\n  `docs/CONFIG.md` for the supported list.\n\n## Quick start\n\n```bash\ncomposer install\ncp config.example.json config.json\n# edit config.json: enable the reviewers you have installed\nbin/llm-review-panel review path/to/plan.md --dry-run   # verify config\nbin/llm-review-panel review path/to/plan.md\n```\n\n## Docs\n\n- `CLAUDE.md` — constraints and conventions (for agents working on this repo)\n- `docs/DESIGN.md` — architecture, flow, checkpoints, persistence\n- `docs/CONFIG.md` — config schema and supported reviewers\n- `docs/SCHEMA.md` — reviewer JSON output contract\n- `docs/IMPLEMENTATION.md` — phased build plan\n- `docs/CI.md` — CI and release automation\n\n## Status\n\nWorking. All build phases are implemented and tested (CI runs Pint plus Pest on\nPHP 8.3/8.4/8.5). The tool runs end-to-end against real reviewer CLIs. Early\ndays: expect rough edges and pre-1.0 changes.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Falbertoarena%2Fllm-review-panel","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Falbertoarena%2Fllm-review-panel","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Falbertoarena%2Fllm-review-panel/lists"}