Top AI Repos — open-source AI, indexed and scored
Top AI Repos tracks AI repositories on GitHub and answers two different questions about each one: is it moving right now, and would you bet a product on it.
Top AI Repos tracks AI repositories on GitHub and answers two different questions about each one: is it moving right now, and would you bet a product on it.
Claude Code without any telemetry - the perfect cli to combo with CCR
| Date | Stars |
|---|---|
| 2026-07-31 | 363 |
| 2026-08-06 | 364 |
Today
+1 stars today
This week
— stars this week
This month
— stars this month
Momentum
0.0
growth rate 0.00%/day
# Claude Private Edition A patched build of Claude Code CLI (v2.1.88) with **all telemetry, analytics, and phone-home behavior removed**. One binary. No telemetry. Drop-in replacement. --- ## Install Download `claude-private-2.1.88.run` from [Releases](../../releases), then: ```bash chmod +x claude-private-2.1.88.run ./claude-private-2.1.88.run ``` Pass `--prefix /custom/path` to install somewhere other than `~/.local/bin/`. The binary is self-contained (Bun executable). No dependencies. Runs on any **Linux x86_64** system. --- ## Usage ```bash claude-private # interactive session claude-private -p "explain this code" # non-interactive ``` All standard `claude` flags work (`-p`, `--model`, `--allowedTools`, `--add-dir`, etc.). ### Using with alternative backends Claude Code speaks the **Anthropic Messages API** (`POST /v1/messages`). If your backend speaks a different protocol (OpenAI, vLLM, Ollama, etc.), use [claude-code-router](https://github.com/musistudio/claude-code-router) to translate, then point at it: ```bash ANTHROPIC_BASE_URL=http://localhost:3456 claude-private ``` --- ## What Was Removed The stock Claude Code CLI contains 17+ phone-home mechanisms, many firing on background timers even when you're idle: | Mechanism | How often it fires | Destination | |---|---|---| | Datadog event logging | Every **15 seconds** | `http-intake.logs.us5.datadoghq.com` | | 1st-party event logging | Batched periodic | `api.anthropic.com/api/event_logging/batch` | | BigQuery metrics export | Every **5 minutes** | `api.anthropic.com/api/claude_code/metrics` | | GrowthBook feature flags | Periodic refresh | GrowthBook remote eval | | Remote managed settings | Every **1 hour** | `api.anthropic.com/api/claude_code/managed_settings` | | Policy limits polling | Every **1 hour** | `api.anthropic.com/api/claude_code/policy_limits` | | User settings sync | Background | `api.anthropic.com/api/claude_code/user_settings` | | Metrics opt-out check | Background (24h cache) | `api.anthropic.com/.../metrics_enabled` | | Session transcript ingress | During conversations | `api.anthropic.com/v1/session_ingress/` | | MCP registry prefetch | On startup | `api.anthropic.com/mcp-registry/` | | Bootstrap API | On startup | `api.anthropic.com/api/claude_cli/bootstrap` | | Grove API | Background | `api.anthropic.com/api/claude_code_grove` | | Referral eligibility | Background | `api.anthropic.com/.../referral/eligibility` | | Trusted device enrollment | After login | `api.anthropic.com/api/auth/trusted_devices` | | API preconnect warmup | On startup | HEAD request to API | | Plugin auto-updates | Background | Remote marketplaces | | Background housekeeping | Various timers | Magic docs, skill improvement, etc. | **All removed.** The Claude API endpoint for actual conversations (`POST /v1/messages`) is untouched. ### How it was done **Layer 1 — Binary patching.** All telemetry URLs in the compiled executable were replaced with same-length dummy strings. The Datadog client token was zeroed out. Binary size unchanged, no structural modifications. **Layer 2 — Environment overrides.** The wrapper script sets: ``` CLAUDE_CODE_DISABLE_NONESSENTIAL_TRAFFIC=1 DISABLE_TELEMETRY=1 DISABLE_AUTOUPDATER=1 CLAUDE_CODE_ENABLE_TELEMETRY=0 OTEL_METRICS_EXPORTER=none OTEL_LOGS_EXPORTER=none OTEL_TRACES_EXPORTER=none ``` Source-level patches across 19 files --- ## Rebuilding from a newer version ```bash # Patch a new binary python3 patch_binary.py /path/to/new/claude ./claude-notelemetry # Rebuild the .run installer bash make-run.sh ``` `patch_binary.py` does same-length byte replacement on 15 URL patterns. If Anthropic changes their telemetry endpoints in a future version, you may need to update the patterns. --- ## Files ``` claude-private-2.1.88.run Self-extracting installer claude-notelemetry Patched binary claude-private Wrapper script patch_binary.py Reproducible patching
Excerpt of 5,359 characters
Read on GitHubWould you bet a product on this? Bounded 0–100 and slow moving.
matched fp:d8ac9f4e1b115e9f, llm:Repository description: "Claude Code without any telemetry - the perfect cli to combo with CCR". Language: Python. Implies a CLI client for Claude (AI assistant) focused on privacy/no telemetry.
matched fp:d8ac9f4e1b115e9f, llm:Repository description: "Claude Code without any telemetry - the perfect cli to combo with CCR". Language: Python. Implies a CLI client for Claude (AI assistant) focused on privacy/no telemetry.
matched fp:d8ac9f4e1b115e9f, llm:Repository description: "Claude Code without any telemetry - the perfect cli to combo with CCR". Language: Python. Implies a CLI client for Claude (AI assistant) focused on privacy/no telemetry.