mirrord Agent Skills
May 11, 2026 ยท View on GitHub

mirrord Agent Skills
Six Agent Skills that close the AI agent feedback loop on Kubernetes: real env vars, real DNS, real network, real traffic, real databases, real Kafka. Built by MetalBear to be used with mirrord.
AI coding agents work from what's in their context window. Your Kubernetes cluster is full of state that isn't. These skills teach your agent how and when to use mirrord so the code it writes against your live infrastructure stops being informed guessing.
Installation
Claude Code
/plugin marketplace add metalbear-co/skills
Cursor, Codex, Gemini, or any Agent Skills-compatible agent
npx skills add metalbear-co/skills
Using an agent that doesn't consume Agent Skills yet? The same content can be ported to .cursorrules, agents.md, Cline rules, and similar. Open an issue with the target you'd like next.
The six skills
| Skill | What it does |
|---|---|
| mirrord-quickstart | Zero-to-first-session: install mirrord, find a target, run the first session. |
| mirrord-config | Generate and validate mirrord.json for any workflow (steal, mirror, env injection, file system hooks). |
| mirrord-operator | Install and configure the mirrord Operator for team-scale concurrent shared-cluster use. |
| mirrord-ci | Wire mirrord into CI pipelines so integration tests hit real cluster services. |
| mirrord-db-branching | Per-developer copy-on-write database branches off your staging DB. |
| mirrord-kafka | Kafka queue splitting so each developer consumes a private slice of a real topic. |
Example prompts
Once installed, your agent activates the right skill based on the prompt:
- "I'm new to mirrord, help me run my Node app against my staging cluster."
- "Steal traffic from
pod/api-server, but only requests carrying my baggage header so I don't break anyone else's session." - "Install the operator on our EKS cluster and configure RBAC so only the
devgroup can use it." - "Set up GitHub Actions to run our integration tests with mirrord against the staging cluster."
- "Give me an isolated DB branch off the staging Postgres for this feature."
- "Set up queue splitting on the
orders.createdtopic for my local consumer."
Trusted by
mirrord runs across teams like monday.com (350+ engineers on a single shared staging cluster), SurveyMonkey, CoLab, Cadence, Daylight Security, and Zooplus. Daylight's team cut their edit-test cycle from 5โ8 minutes to about 5 seconds after pairing Cursor with mirrord.
Skill structure
Each skill is a folder following the Agent Skills format:
SKILL.md- Instructions the agent loads on demandscripts/- Helper scripts for automation (optional)references/- Supporting documentation (optional)
Learn more
- mirrord for AI Agents - product page with installation guides for every supported agent
- mirrord documentation
Contributing
PRs welcome. Open an issue if you'd like to see a skill added or improved.