{"id":49969958,"url":"https://github.com/hmziqrs/claude-multi","last_synced_at":"2026-05-23T21:00:56.986Z","repository":{"id":323308844,"uuid":"1087924130","full_name":"hmziqrs/claude-multi","owner":"hmziqrs","description":"A tool to have multiple claude-code instance with different configs","archived":false,"fork":false,"pushed_at":"2026-05-16T18:15:51.000Z","size":537,"stargazers_count":11,"open_issues_count":0,"forks_count":2,"subscribers_count":0,"default_branch":"master","last_synced_at":"2026-05-18T07:50:03.994Z","etag":null,"topics":["calude","claude-ai","claude-code"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/hmziqrs.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":null,"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-11-01T23:23:00.000Z","updated_at":"2026-05-16T18:15:56.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/hmziqrs/claude-multi","commit_stats":null,"previous_names":["hmziqrs/claude-multi"],"tags_count":8,"template":false,"template_full_name":null,"purl":"pkg:github/hmziqrs/claude-multi","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hmziqrs%2Fclaude-multi","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hmziqrs%2Fclaude-multi/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hmziqrs%2Fclaude-multi/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hmziqrs%2Fclaude-multi/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/hmziqrs","download_url":"https://codeload.github.com/hmziqrs/claude-multi/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hmziqrs%2Fclaude-multi/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33412082,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-23T18:09:33.147Z","status":"ssl_error","status_checked_at":"2026-05-23T18:09:31.380Z","response_time":53,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: 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":["calude","claude-ai","claude-code"],"created_at":"2026-05-18T07:33:08.727Z","updated_at":"2026-05-23T21:00:56.979Z","avatar_url":"https://github.com/hmziqrs.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cdiv align=\"center\"\u003e\n\n\u003cimg src=\"public/favicon-animated.svg\" width=\"256\" height=\"256\" alt=\"claude-multi logo\"\u003e\n\n# claude-multi\n\n\u003c/div\u003e\n\nRun multiple Claude Code instances side by side — each with its own provider, config, and `claude-\u003cname\u003e` command.\n\nSwitching providers (Anthropic, GLM, MiniMax, DeepSeek) normally means editing `settings.json` by hand. This tool gives each one its own isolated install instead.\n\n## Install\n\n```bash\nbun add -g claude-multi\n```\n\n```bash\nnpm install -g claude-multi\n```\n\n```bash\npnpm add -g claude-multi\n```\n\n```bash\ndeno install -g -A -n claude-multi npm:claude-multi\n```\n\nRequires Node 18+ (or Bun 1+) and `@anthropic-ai/claude-code` installed globally.\n\n## Usage\n\nJust run it — the interactive TUI opens by default:\n\n```bash\nclaude-multi\n```\n\nYou get a full terminal UI to add instances, manage plugins, configure MCP servers, and more. No subcommand needed.\n\n**Adding an instance** — pick it from the menu, or run directly:\n\n```bash\nclaude-multi add glm\n```\n\nNo flags = the guided wizard walks you through provider, API key, and copy options. Then use your new instance:\n\n```bash\nclaude-glm\n```\n\n## CLI (non-interactive)\n\nFor scripting and automation, all operations are available as flags:\n\n```bash\n# Instances\nclaude-multi add \u003cname\u003e --provider glm --api-key \"sk-...\"\nclaude-multi add \u003cname\u003e --config ~/path        # custom config dir\nclaude-multi add \u003cname\u003e --copy-settings        # seed from ~/.claude\nclaude-multi add \u003cname\u003e --copy-all             # copy everything + auto-sync\nclaude-multi add \u003cname\u003e --skip-prompts         # start fresh, no wizard\nclaude-multi add \u003cname\u003e --manual               # copy files instead of symlinking\nclaude-multi list\nclaude-multi info \u003cname\u003e\nclaude-multi remove \u003cname\u003e [--force]\n\n# Plugins \u0026 MCP\nclaude-multi plugins list\nclaude-multi plugins enable \u003cname\u003e \u003cplugin-id\u003e\nclaude-multi plugins disable \u003cname\u003e \u003cplugin-id\u003e\nclaude-multi plugins copy \u003cname\u003e               # copy from default ~/.claude\nclaude-multi mcp list\nclaude-multi mcp copy \u003csrc\u003e \u003cdst\u003e\n\n# Sync\nclaude-multi auto-sync \u003cname\u003e on|off           # symlink plugins/skills from ~/.claude\nclaude-multi fix-symlinks --all\n\n# Claude Code itself\nclaude-multi version\nclaude-multi update\n```\n\nSet `CLAUDE_MULTI_INK=false` to force the simpler prompts-based UI instead of the Ink TUI.\n\n## Providers\n\n| Provider | Endpoint |\n|---|---|\n| GLM (智谱AI) | `api.z.ai` |\n| MiniMax | `api.minimax.io` |\n| DeepSeek | `api.deepseek.com` |\n\nTemplates write `ANTHROPIC_BASE_URL`, `ANTHROPIC_MODEL`, and related env vars to `~/.claude-\u003cname\u003e/settings.json`. Edit that file to customize.\n\n## How it works\n\nEach instance gets a config dir at `~/.claude-\u003cname\u003e/` and a wrapper script at `~/.local/bin/claude-\u003cname\u003e`. The wrapper sets `CLAUDE_CONFIG_DIR` before launching the unmodified `claude` binary — no forking, no patching.\n\n```js\n#!/usr/bin/env bun\nprocess.env.CLAUDE_CONFIG_DIR = \"/Users/you/.claude-glm\"\nspawn(\"claude\", process.argv.slice(2), { stdio: \"inherit\", env: process.env })\n```\n\nInstance metadata lives in `~/.claude-multi/config.json`. With auto-sync on, `plugins/` and `skills/` are symlinked from `~/.claude/`, so installing a plugin once makes it available everywhere.\n\n## License\n\nMIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhmziqrs%2Fclaude-multi","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhmziqrs%2Fclaude-multi","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhmziqrs%2Fclaude-multi/lists"}