{"id":47597721,"url":"https://github.com/maxigimenez/parallax-cli","last_synced_at":"2026-04-01T18:27:45.635Z","repository":{"id":345357822,"uuid":"1170883484","full_name":"maxigimenez/parallax-cli","owner":"maxigimenez","description":"Parallax is a local AI orchestration runtime for software tasks.","archived":false,"fork":false,"pushed_at":"2026-03-18T19:01:10.000Z","size":710,"stargazers_count":6,"open_issues_count":2,"forks_count":1,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-03-19T08:08:13.709Z","etag":null,"topics":["ai","automation","claude-code","cli","codex","coding-agent","developer-tools","gemini","github","linear","orchestrator","parallax","pull-request"],"latest_commit_sha":null,"homepage":"https://parallax.maxigimenez.xyz/","language":"TypeScript","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/maxigimenez.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":".github/FUNDING.yml","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},"funding":{"buy_me_a_coffee":"wabfkjrdn"}},"created_at":"2026-03-02T16:22:17.000Z","updated_at":"2026-03-18T19:01:13.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/maxigimenez/parallax-cli","commit_stats":null,"previous_names":["maxigimenez/parallax-cli"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/maxigimenez/parallax-cli","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maxigimenez%2Fparallax-cli","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maxigimenez%2Fparallax-cli/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maxigimenez%2Fparallax-cli/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maxigimenez%2Fparallax-cli/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/maxigimenez","download_url":"https://codeload.github.com/maxigimenez/parallax-cli/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maxigimenez%2Fparallax-cli/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31290858,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-01T13:12:26.723Z","status":"ssl_error","status_checked_at":"2026-04-01T13:12:25.102Z","response_time":53,"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":["ai","automation","claude-code","cli","codex","coding-agent","developer-tools","gemini","github","linear","orchestrator","parallax","pull-request"],"created_at":"2026-04-01T18:27:44.930Z","updated_at":"2026-04-01T18:27:45.626Z","avatar_url":"https://github.com/maxigimenez.png","language":"TypeScript","readme":"# parallax-cli\n\n\u003e WARNING: Parallax is currently in alpha. Expect rough edges, missing polish, and occasional breaking changes.\n\nParallax is a local AI orchestration runtime for software tasks.\nIt pulls work from Linear or GitHub, creates isolated worktrees, runs an agent in two phases (`plan` then `execute`), and requires explicit approval before implementation.\n\n![](./dashboard.png)\n\n## First version scope\n\n- Plan-first task lifecycle with explicit approval/rejection.\n- Issue intake from Linear and GitHub.\n- Global runtime state under `~/.parallax`.\n- CLI control plane plus dashboard UI.\n- Codex, Gemini, and Claude Code adapters (configurable per project).\n\n## Requirements\n\n- Node.js `\u003e= 23.7.0`\n- `pnpm` `10.x`\n- `git`\n- `gh`\n- at least one supported agent CLI (`codex`, `gemini`, or `claude`)\n- Provider credentials in your shell environment (optional per-project `.env` via `parallax register --env-file`)\n\n## Local development setup\n\n```bash\npnpm install\npnpm parallax preflight\npnpm test\npnpm build\n```\n\n## Install global CLI\n\n```bash\nnpm i -g parallax-cli\nparallax preflight\n```\n\n## Configuration (`parallax.yml`)\n\nRepository config is stored per repo, then registered into the global Parallax runtime:\n\n```bash\npnpm parallax start --server-api-port 3000 --server-ui-port 8080 --concurrency 2\npnpm parallax register ./parallax.yml --env-file ./.env\n```\n\n`parallax.yml` is a YAML array of project entries:\n\n```yaml\n- id: example-repo\n  workspaceDir: /absolute/path/to/your/repo\n  pullFrom:\n    provider: github\n    filters:\n      owner: your-github-org-or-user\n      repo: your-repo\n      state: open\n      labels: [ai-ready]\n  agent:\n    provider: codex\n    model: gpt-5.4\n```\n\n## CLI\n\n```bash\npnpm parallax --version\npnpm parallax start --server-api-port 3000 --server-ui-port 8080 --concurrency 2\npnpm parallax register ./parallax.yml --env-file ./.env\npnpm parallax unregister ./parallax.yml\npnpm parallax stop\npnpm parallax preflight\npnpm parallax status\npnpm parallax pending\npnpm parallax pr-review \u003ctask-id\u003e\npnpm parallax retry \u003ctask-id\u003e\npnpm parallax cancel \u003ctask-id\u003e\npnpm parallax logs --task \u003ctask-id\u003e\n```\n\nCommands:\n\n- `parallax start [--server-api-port \u003cport\u003e] [--server-ui-port \u003cport\u003e] [--concurrency \u003ccount\u003e]`\n- `parallax register \u003cconfig-file\u003e [--env-file \u003cpath\u003e]`\n- `parallax unregister \u003cconfig-file\u003e`\n- `parallax stop`\n- `parallax preflight`\n- `parallax status`\n- `parallax pending [--approve \u003cid\u003e] [--reject \u003cid\u003e]`\n- `parallax pr-review \u003ctask-id\u003e` (experimental)\n- `parallax retry \u003ctask-id\u003e`\n- `parallax cancel \u003ctask-id\u003e`\n- `parallax logs [--task \u003cid\u003e]`\n\n## Runtime behavior\n\n1. Pull eligible tasks from provider filters.\n2. Generate plan text and persist it.\n3. Wait for explicit plan approval from UI or CLI.\n4. Execute only approved plan steps.\n5. Open/update PR and move task lifecycle state.\n\n## Dashboard behavior\n\n- Pending plans are editable in a textarea and can be approved/rejected in-place.\n- Task logs stream in real time.\n- File changes are shown as clickable entries with side-panel diff view.\n\n## Development\n\nSee [CONTRIBUTING.md](CONTRIBUTING.md).\n\n## Documentation\n\nFor full user guides, see [docs/README.md](docs/README.md).\n\n## Publish Global CLI (`parallax-cli`)\n\nParallax is published as a single global CLI package:\n\n```bash\nnpm i -g parallax-cli\n```\n\nReleases are published through the manual GitHub Actions workflow:\n\n- open the `Release parallax-cli` workflow in GitHub Actions\n- trigger it with `Run workflow`\n- the workflow publishes the exact version already set in [`packages/cli/package.json`](packages/cli/package.json)\n\nRepository requirement:\n\n- configure npm trusted publishing for this repository/package in npm\n\nBefore triggering the release, update the version in:\n\n```bash\npackages/cli/package.json\n```\n\nThen on Raspberry Pi / any machine:\n\n```bash\nnpm i -g parallax-cli\nparallax preflight\nparallax start --server-api-port 3000 --server-ui-port 8080 --concurrency 2\nparallax status\nparallax register ./parallax.yml\n```\n\nDefault runtime locations and ports:\n\n- runtime state: `~/.parallax`\n- API: `http://localhost:3000`\n- dashboard: `http://localhost:8080`\n\n## License\n\nMIT. See [LICENSE](LICENSE).\n","funding_links":["https://buymeacoffee.com/wabfkjrdn"],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmaxigimenez%2Fparallax-cli","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmaxigimenez%2Fparallax-cli","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmaxigimenez%2Fparallax-cli/lists"}