{"id":47597073,"url":"https://github.com/legionio/homebrew-tap","last_synced_at":"2026-05-16T03:01:06.221Z","repository":{"id":344259553,"uuid":"1181066562","full_name":"LegionIO/homebrew-tap","owner":"LegionIO","description":"Homebrew formulae for LegionIO tools","archived":false,"fork":false,"pushed_at":"2026-04-01T22:49:56.000Z","size":319,"stargazers_count":1,"open_issues_count":4,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-04-02T08:41:33.624Z","etag":null,"topics":["homebrew","homebrew-tap","legion","legionio","ruby"],"latest_commit_sha":null,"homepage":null,"language":"Ruby","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/LegionIO.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":".github/CODEOWNERS","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-03-13T18:00:04.000Z","updated_at":"2026-04-01T22:50:07.000Z","dependencies_parsed_at":"2026-04-07T03:00:36.356Z","dependency_job_id":null,"html_url":"https://github.com/LegionIO/homebrew-tap","commit_stats":null,"previous_names":["legionio/homebrew-tap"],"tags_count":236,"template":false,"template_full_name":null,"purl":"pkg:github/LegionIO/homebrew-tap","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LegionIO%2Fhomebrew-tap","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LegionIO%2Fhomebrew-tap/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LegionIO%2Fhomebrew-tap/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LegionIO%2Fhomebrew-tap/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/LegionIO","download_url":"https://codeload.github.com/LegionIO/homebrew-tap/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LegionIO%2Fhomebrew-tap/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31498070,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-06T17:22:55.647Z","status":"online","status_checked_at":"2026-04-07T02:00:07.164Z","response_time":105,"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":["homebrew","homebrew-tap","legion","legionio","ruby"],"created_at":"2026-04-01T18:18:30.605Z","updated_at":"2026-04-07T03:00:42.028Z","avatar_url":"https://github.com/LegionIO.png","language":"Ruby","funding_links":[],"categories":[],"sub_categories":[],"readme":"# LegionIO Homebrew Tap\n\nHomebrew formulae for [LegionIO](https://github.com/LegionIO/LegionIO), an extensible async job engine and agentic AI framework for Ruby.\n\n## Installation\n\n```bash\nbrew tap legionio/tap\nbrew install legion-tty\n```\n\nThis installs `legionio` (daemon) and `legionio-ruby` (bundled Ruby runtime) automatically.\n\nFor local development with all services:\n\n```bash\nbrew install legion-dev\n```\n\n## Casks\n\n| Cask | Description |\n|------|-------------|\n| `legion-interlink` | Desktop AI assistant (Electron, arm64) |\n\n```bash\nbrew install --cask legionio/tap/legion-interlink\n```\n\n## Available Formulae\n\n| Formula | Description | Size |\n|---------|-------------|------|\n| `legionio-ruby` | Bundled Ruby 3.4.x with YJIT + native extensions (sqlite3, pg, mysql2, oj, puma, snappy) | ~50MB |\n| `legionio` | LegionIO daemon, core libraries, and agentic extensions | ~10MB |\n| `legion-tty` | Interactive terminal shell and AI chat (`legion` binary) | ~4MB |\n| `legion-dev` | Full development stack (meta-package: all services) | -- |\n\n### Dependency Chain\n\n```\nlegionio-ruby  (Ruby + native extensions)\n└── legionio   (daemon + core + agentic gems)\n    └── legion-tty  (interactive shell)\n```\n\n### Why 3 formulas?\n\nGem updates happen several times per week. The Ruby runtime changes rarely. By splitting them, `brew upgrade legion-tty` downloads a ~4MB tarball instead of a ~54MB full Ruby bundle. Upgrades complete in seconds.\n\n## CLI Usage\n\n```bash\n# Interactive shell (from legion-tty)\nlegion                           # rich terminal UI with onboarding\nlegion chat                      # AI REPL\n\n# Operational daemon (from legionio)\nlegionio start                   # start the daemon\nlegionio config scaffold         # generate config files\nlegionio lex list                # list extensions\nlegionio --help                  # all commands\n```\n\n## Services\n\n```bash\nbrew services start legionio         # start daemon in background\nbrew services start redis            # required for tracing\nbrew services start rabbitmq         # job engine messaging (optional)\nbrew services start postgresql@17    # persistence (optional)\nbrew services start vault            # secrets (optional)\nollama serve                         # local LLM (optional)\n```\n\n## Updating\n\n```bash\nbrew update\nbrew upgrade legion-tty              # fast: ~4MB download\nbrew upgrade legionio                # medium: ~10MB download\nbrew services restart legionio       # pick up new version\n```\n\n## Migrating from the legacy `legion` formula\n\nThe monolithic `legion` formula is deprecated (replaced by the 3-formula split in 2026-03-20). To migrate:\n\n```bash\nbrew uninstall legion\nbrew install legion-tty\n```\n\nThe `legion-tty` install automatically pulls in `legionio` and `legionio-ruby`.\n\n## Troubleshooting\n\n```bash\nlegion doctor                    # diagnose config, services, permissions\nbrew services info legionio      # check service status\nbrew doctor                      # general Homebrew health check\n```\n\nReport issues at https://github.com/LegionIO/homebrew-tap/issues\n\n## Related\n\n- Main framework: https://github.com/LegionIO/LegionIO\n- GitHub org: https://github.com/LegionIO\n- Install via RubyGems instead: `gem install legionio`\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flegionio%2Fhomebrew-tap","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flegionio%2Fhomebrew-tap","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flegionio%2Fhomebrew-tap/lists"}