Sandbox
@metalbear-co/mirrord

CLI and editor tool for running processes in Kubernetes pods

mirrord runs your local process through a live Kubernetes pod so it uses real environment variables, DNS, network paths, and file access from the cluster. It ships as a CLI, VS Code extension, and IntelliJ plugin, and it works with AI coding agents as well as human builders.

5,324 stars215 forksRustUpdated 6d ago
Who it's for

Builders who want to test and debug code against real Kubernetes services from their editor or terminal.

What it delivers

You can verify changes against live cluster behavior in seconds without deploying your app first.

What it does

Run a local process through a pod

Starts your process locally but routes its network and environment through a selected pod in the cluster.

Mirror cluster traffic

Copies incoming traffic from the pod to your local process and sends outgoing traffic back through the pod.

Use real cluster context

Reads real env vars, DNS, service responses, and file access so your code sees the cluster as it is.

CLI and editor support

Works from `mirrord exec` in the terminal and from VS Code and IntelliJ integrations.

AI agent workflows

Designed to work with Claude Code, Cursor, Codex CLI, Gemini CLI, Copilot, and Windsurf.

Configurable Linux capabilities

Lets you disable selected capabilities like `CAP_NET_RAW` or `CAP_SYS_PTRACE` when needed.

How to get it

  1. 1You can use either
    brew install metalbear-co/mirrord/mirrord
  2. 2or
    curl -fsSL https://raw.githubusercontent.com/metalbear-co/mirrord/main/scripts/install.sh | bash
  3. 3or using Nix (not official, community maintained)
    # Using nix-env (legacy)
    nix-env -iA nixpkgs.mirrord
    
    # Using nix profile (recommended)
    nix profile install nixpkgs#mirrord
  4. 4or on Windows using Chocolatey
    choco install --pre mirrord
  5. 5Run
    mirrord exec <process command> --target <target-path>
  6. 6e.g.
    mirrord exec node app.js --target pod/my-pod

README

mirrord logo

Community Slack Github CI License GitHub release (latest SemVer) X Follow

mirrord runs your local process inside a live Kubernetes cluster. It works the same way for developers and for AI coding agents (Claude Code, Cursor, Codex, Copilot, Windsurf): your code runs on your machine, but mirrord routes its traffic, files, and environment variables through a target pod in the cluster.

That covers both halves of the software development loop. Read live cluster context while writing the code (real env vars, real service responses, real queue contents) so the change is grounded in what's actually deployed. Then run the code against those same services and data to confirm it works end-to-end.

You get the feedback of a deploy in seconds, without the deploy, and without disrupting the cluster for anyone else. mirrord ships as a VS Code extension, IntelliJ plugin, and CLI tool. Read more.

Adopted by: monday.com, SurveyMonkey, Cadence, CoLab, Daylight Security, Zooplus, and others.

Contents


Getting Started

mirrord uses your machine's default kubeconfig for access to the Kubernetes API.


VS Code Extension

Installation

Get the extension here.

How To Use

  • Click "Enable mirrord" on the status bar
  • Start debugging your project
  • Choose pod to impersonate
  • The debugged process will be plugged into the selected pod by mirrord

demo of mirrord VSCode extension


IntelliJ Plugin

Installation

Get the plugin here.

How To Use

  • Click the mirrord icon in the Navigation Toolbar
  • Start debugging your project
  • Choose a namespace and pod to impersonate
  • The debugged process will be plugged into the selected pod by mirrord

demo of mirrord IntelliJ plugin


CLI Tool

Installation

You can use either

brew install metalbear-co/mirrord/mirrord

or

curl -fsSL https://raw.githubusercontent.com/metalbear-co/mirrord/main/scripts/install.sh | bash

or using Nix (not official, community maintained):

# Using nix-env (legacy)
nix-env -iA nixpkgs.mirrord

# Using nix profile (recommended)
nix profile install nixpkgs#mirrord

or on Windows using Chocolatey:

choco install --pre mirrord

How To Use

mirrord exec <process command> --target <target-path>

e.g.

mirrord exec node app.js --target pod/my-pod

How It Works

When you select a pod to impersonate, mirrord launches a pod on the same node as the pod you selected. The new pod is then used to connect your local process and the impersonated pod: it mirrors incoming traffic from the pod to your process, routes outgoing traffic from your process through the pod, and does the same for file reads, file writes, and environment variables. You can read more about it here.

Additional capabilities

Container run inside the pod launched by mirrord requires additional Linux capabilities:

  • CAP_NET_ADMIN and CAP_NET_RAW - for modifying routing tables
  • CAP_SYS_PTRACE - for reading target pod environment
  • CAP_SYS_ADMIN - for joining target pod network namespace

However, you can disable any subset of those in the configuration. This will possibly limit mirrord functionalities or even make it unusable in some setups.

MIRRORD_AGENT_DISABLED_CAPABILITIES=CAP_NET_RAW,CAP_SYS_PTRACE mirrord exec node app.js --target pod/my-pod

How It Works

Using mirrord with AI coding agents

mirrord works first-class with Claude Code, Cursor, Codex CLI, Gemini CLI, and other AI coding agents, letting them run and verify generated code against real cluster services without deploying.

For setup guides and ready-made workflow skills, see metalbear-co/skills or the mirrord for AI Agents page.

FAQ

Our FAQ is available here. If you have a question that's not on there, feel free to ask in our Discussions or on Slack.

Contributing

Contributions are very welcome. Start by checking out our open issues, and by going through our contributing guide. We're available on Slack for any questions.

Help and Community

Join our Slack for questions, support and fun.

We always appreciate hearing how mirrord has made a difference for our users.
Check out our ADOPTERS.md to see how others are using mirrord —
and open a pull request to add your organization if you’d like to share how mirrord has been useful to you.

Code of Conduct

We take our community seriously and we are dedicated to providing a safe and welcoming environment for everyone. Please take a few minutes to review our Code of Conduct.

License

MIT

CI Runners

CI powered by Blacksmith

Files in the repo

Repository payload50 top-level entries
  • .cargo
  • .config
  • .devcontainer
  • .github
  • .greptile
  • .vale
  • .vscode
  • changelog.d
  • ci
  • images
  • medschool
  • mirrord
  • packages
  • sample
  • scripts
  • test-utils
  • tests
  • xtask
  • .dockerignore
  • .gitignore
  • .markdownlint.json
  • .prettierrc.json
  • .vale.ini
  • ADOPTERS.md
  • AGENTS.md
  • Cargo.lock
  • Cargo.toml
  • CHANGELOG.md
  • CLAUDE.md
  • CODE_OF_CONDUCT.md
  • CODE_REVIEW.md
  • CONTRIBUTING.md
  • Cross.toml
  • deny.toml
  • flake.lock
  • flake.nix
  • LICENSE
  • mirrord-schema.json
  • package.json
  • pnpm-lock.yaml
  • pnpm-workspace.yaml
  • README.md
  • rust-toolchain.toml
  • rustfmt.toml
  • SECURITY.md
  • STYLE.md
  • TECHNICAL.md
  • TELEMETRY.md
  • towncrier.toml
  • typos.toml

Discussion (0)

Ask about usage, or say what you built with it

Sign in to join the discussion.

No comments yet. Be the first to say what this is good for.

More tools

JuliusBrussee/
caveman

🪨 why use many token when few token do trick — Claude Code skill that cuts 65% of tokens by talking like caveman

105k
1 add
MemPalace/
mempalace

The best-benchmarked open-source AI memory system. And it's free.

59k
stablyai/
orca

Orca is the ADE for working with a fleet of parallel agents. Run any coding agent with your own subscription. Available on desktop, mobile and remote runtime.

66k

A cross-platform desktop All-in-One assistant for Claude Code, Codex, OpenCode, OpenClaw, Grok Build & Hermes Agent. Only official website: ccswitch.io

132k

Never stop coding. Free MIT AI gateway: one endpoint, 352 providers (150+ free), 1200+ models Kimi, Claude, GPT, Gemini, GLM, DeepSeek, MiniMax. Works with Claude Code, Codex, Cursor, OpenCode, Cline & Copilot. Quota-aware auto-fallback, RTK+Caveman compression saves 15-95% tokens, MCP/A2A, Desktop/PWA. Built by 550+ contributors

64k
headroomlabs-ai/
headroom

Compress tool outputs, logs, files, and RAG chunks before they reach the LLM. 20% fewer tokens for coding agents, 60-95% fewer tokens for JSON, same answers. Library, proxy, MCP server.

71k