Nine Agent Skills that close the AI agent feedback loop on Kubernetes: real env vars, real DNS, real network, real traffic, real databases, real Kafka, real preview environments, multi-service local sessions, and real failure conditions. 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.
/plugin marketplace add metalbear-co/skills
/plugin install mirrord@mirrord-skillscodex plugin marketplace add metalbear-co/skillsThen install the mirrord plugin from /plugins. All nine skills come with it.
OpenCode loads skills natively, so there's nothing to register — the skills just need to be on disk:
curl -fsSL https://raw.githubusercontent.com/metalbear-co/skills/main/install.sh | shThat writes the nine skill folders into ~/.config/opencode/skills/. Restart OpenCode and they're available. Re-run it any time to update — it replaces the mirrord-* folders and leaves your other skills alone.
The same script serves any agent that reads a skills directory:
sh install.sh --agent codex # ~/.agents/skills
sh install.sh --agent claude # ~/.claude/skills
sh install.sh --dest <dir> # anywhere elseCursor, Gemini, or any other Agent Skills-compatible agent
npx skills add metalbear-co/skillsUsing 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.
| 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. |
| mirrord-prev-env | Preview environments: deploy a built image as an isolated, traffic-filtered pod in a shared cluster — ad hoc or per-PR in CI. |
| mirrord-up | Multiple concurrent local sessions from mirrord-up.yaml — compose-style multi-service debugging. |
| mirrord-chaos | Chaos testing: inject latency or connection errors into a session's outgoing traffic via per-session rules, interactively or in CI. |
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." - "Spin up a per-PR preview environment in GitHub Actions so the team can review my change against real traffic."
- "Generate a mirrord-up.yaml so I can debug my auth and dashboard services together."
- "Make 30% of my service's calls to the payments API time out, so I can test our retry logic."
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.
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)
- mirrord for AI Agents - product page with installation guides for every supported agent
- mirrord documentation
PRs welcome. Open an issue if you'd like to see a skill added or improved.
