mirrord — Summary
mirrord is a Kubernetes-native process isolation tool (binary: mirrord, Rust, MIT) that routes a local process's file system, network, DNS, and environment variable access through a target pod in a live Kubernetes cluster — without deploying. It ships as a VS Code extension, IntelliJ plugin, and CLI. For AI coding agents (Claude Code, Cursor, Codex, Copilot, Windsurf), mirrord solves the feedback-loop problem: agents write code against real cluster state (actual env vars, real service responses, live queue contents) and verify code against real cluster services in seconds instead of deploying. The companion metalbear-co/skills repo provides 6 Agent Skills for Claude Code and other agents: mirrord-quickstart, mirrord-config, mirrord-operator, mirrord-ci, mirrord-db-branching, mirrord-kafka. mirrord is not a prompt engineering framework — it is a process-level isolation mechanism that eliminates the need for mock environments when developing against Kubernetes clusters.
Differs from seeds: No seed is architecturally similar — mirrord is a process isolation tool, not a development workflow harness. All 11 seeds modify agent behavior via prompts/hooks; mirrord modifies what the agent's code execution environment can access (real cluster syscalls vs mock). The closest seed by "isolation_mechanism" is none — worktree or container isolation in seeds isolates the agent's file editing, while mirrord isolates the agent's test execution against a live remote environment. The 6 Agent Skills are the only harness-adjacent component; otherwise mirrord is infrastructure.