{"id":31581002,"url":"https://github.com/cdzombak/aclaude","last_synced_at":"2025-10-05T21:52:05.679Z","repository":{"id":316285412,"uuid":"1062580694","full_name":"cdzombak/aclaude","owner":"cdzombak","description":"Claude Code launcher for alternate models/endpoints","archived":false,"fork":false,"pushed_at":"2025-09-26T12:54:05.000Z","size":43,"stargazers_count":1,"open_issues_count":0,"forks_count":1,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-10-02T20:45:40.464Z","etag":null,"topics":["claude-code"],"latest_commit_sha":null,"homepage":"","language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/cdzombak.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":"2025-09-23T12:54:45.000Z","updated_at":"2025-09-26T12:54:09.000Z","dependencies_parsed_at":"2025-09-25T21:33:26.167Z","dependency_job_id":null,"html_url":"https://github.com/cdzombak/aclaude","commit_stats":null,"previous_names":["cdzombak/aclaude"],"tags_count":10,"template":false,"template_full_name":null,"purl":"pkg:github/cdzombak/aclaude","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cdzombak%2Faclaude","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cdzombak%2Faclaude/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cdzombak%2Faclaude/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cdzombak%2Faclaude/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/cdzombak","download_url":"https://codeload.github.com/cdzombak/aclaude/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cdzombak%2Faclaude/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":278526242,"owners_count":26001325,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-05T02:00:06.059Z","response_time":54,"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":["claude-code"],"created_at":"2025-10-05T21:52:00.754Z","updated_at":"2025-10-05T21:52:05.672Z","avatar_url":"https://github.com/cdzombak.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# aclaude\n\nClaude Code launcher for alternate models. `aclaude` is a script to run Claude Code with custom endpoint and model selection, supporting both simple model selection and extended mode for configuring Opus/Sonnet/Haiku/Subagent models.\n\n## Requirements\n\n- `bash`\n- `curl`\n- `jq`\n- `fzf`\n- `claude` (Claude Code CLI)\n- **Anthropic + OpenAPI compatible endpoint** as provided by e.g. [LiteLLM](https://litelm.com)\n  - Anthropic endpoint supports Claude Code\n  - OpenAPI endpoint allows listing available models\n\n## Usage\n\n```text\naclaude [OPTIONS] [-- CLAUDE_ARGS...]\n```\n\n### Options\n\n- `-x`: Extended mode (select models for Opus/Sonnet/Haiku/Subagent)\n- `-h`, `--help`: Show help message\n- `-v`, `--version`: Show version information\n\n### Arguments\n\n```\n- `-- CLAUDE_ARGS`: Pass remaining arguments to claude (after --)\n```\n\n### Examples\n\n```shell\n# Basic usage - select model interactively\naclaude\n\n# Extended mode - configure all model types interactively\naclaude -x\n\n# Pass complex arguments to claude\naclaude -- --dangerously-skip-permissions --verbose\naclaude -x -- --continue\n```\n\n## Configuration\n\nCreate `~/.config/aclaude` with `ENDPOINT` and `KEY` variables:\n\n```shell\nENDPOINT=https://your-api-endpoint.com\nKEY=your-api-key\n```\n\n## Installation\n\n### macOS via Homebrew\n\n```shell\nbrew install cdzombak/oss/aclaude\n```\n\n### Debian via apt repository\n\nInstall my Debian repository if you haven't already:\n\n```shell\nsudo apt-get install ca-certificates curl gnupg\nsudo install -m 0755 -d /etc/apt/keyrings\ncurl -fsSL https://dist.cdzombak.net/deb.key | sudo gpg --dearmor -o /etc/apt/keyrings/dist-cdzombak-net.gpg\nsudo chmod 0644 /etc/apt/keyrings/dist-cdzombak-net.gpg\necho -e \"deb [signed-by=/etc/apt/keyrings/dist-cdzombak-net.gpg] https://dist.cdzombak.net/deb/oss any oss\\n\" | sudo tee -a /etc/apt/sources.list.d/dist-cdzombak-net.list \u003e /dev/null\nsudo apt-get update\n```\n\nThen install `aclaude` via `apt-get`:\n\n```shell\nsudo apt-get install aclaude\n```\n\n### Manual installation from build artifacts\n\nPre-built binaries are downloadable from each [GitHub Release](https://github.com/cdzombak/aclaude/releases). Debian packages for each release are available as well.\n\n### Build and install locally\n\n```shell\ngit clone https://github.com/cdzombak/aclaude.git\ncd aclaude\nmake build\n\ncp out/aclaude-[VERSION]-all $INSTALL_DIR/aclaude\n```\n\n## Author\n\nChris Dzombak\n\n- [dzombak.com](https://www.dzombak.com)\n- [GitHub @cdzombak](https://www.github.com/cdzombak)\n\n## License\n\nGPLv3; see [LICENSE](LICENSE) in this repository.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcdzombak%2Faclaude","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcdzombak%2Faclaude","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcdzombak%2Faclaude/lists"}