production-safety

production-safety is a skill for Claude Code, Codex from Kevin-Liu-01/Agent-Machines. It costs 36 tokens per session (554 once invoked), scanned A, original, MIT.

A safety rule set that prevents direct changes to production databases, infrastructure, or configuration parameters and routes them through a migration process.

In plain words
What is it for?
Use it whenever a task could touch production systems, to refuse unsafe operations and require reviewed, deployable migrations instead.
Why use it?
It reduces the risk of outages and mismatched application state caused by quick manual changes in the live environment.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it whenever a task could touch production systems, to refuse unsafe operations and require reviewed, deployable migrations instead.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/kevin-liu-01/agent-machines/production-safety
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add Kevin-Liu-01/Agent-Machines --skill production-safety
Clone the repo
git clone --depth 1 https://github.com/Kevin-Liu-01/Agent-Machines

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for production-safety

README.md
[![agentmods](https://agentmods.dev/badge/skills/kevin-liu-01/agent-machines/production-safety/github.svg)](https://agentmods.dev/skills/kevin-liu-01/agent-machines/production-safety)
Your own site
<a href="https://agentmods.dev/skills/kevin-liu-01/agent-machines/production-safety"><img src="https://agentmods.dev/badge/skills/kevin-liu-01/agent-machines/production-safety/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for production-safety

Your own site · 80×15
<a href="https://agentmods.dev/skills/kevin-liu-01/agent-machines/production-safety"><img src="https://agentmods.dev/badge/skills/kevin-liu-01/agent-machines/production-safety.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 36 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 554 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00036 $0.00554
Opus 5 $0.00018 $0.00277
Sonnet 5 $0.00007 $0.00111
Haiku 4.5 $0.00004 $0.00055

Measured 9d ago against content hash 011d02873448, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

production-safety scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 9d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

knowledge/skills/production-safety/SKILL.md · 42 lines

How it starts

The opening of the file, as written. The whole thing — 42 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Production Safety

Never modify production databases, infrastructure, or SSM parameters directly. Zero exceptions.

A "quick fix" to prod that bypasses the pipeline creates invisible state drift and has caused outages. This came from a real incident: a unique constraint was dropped in production while running code still referenced it in an ON CONFLICT clause, bricking all MCP credential provisioning with 42P10: there is no unique or exclusion constraint matching the ON CONFLICT specification.

Hard prohibitions

  • No DROP INDEX, ALTER TABLE, or any DDL against prod Supabase. Not via MCP, not via SQL editor, not via the dashboard.
  • No aws ssm put-parameter or terraform apply targeting prod resources.
  • No manual ECS task definition updates in prod.

The rules

Migrations and code ship together. Never apply a migration to an environment where the code that depends on it has not been deployed. If adding a column, the code that reads it ships in the same deploy. If dropping a constraint, the code that uses the new constraint ships first.

Never run DDL against prod manually. Not from a REPL, not from Supabase MCP, not from the dashboard SQL editor. If it needs to happen, it goes through a migration file in version control, reviewed and deployed through the pipeline.

Fix-forward, not patch-prod. If a migration breaks prod, the fix is a new migration plus code change deployed through the pipeline. Manually patching prod creates invisible state that drifts from what the migration history says should exist.

Dev and preview are for breaking. Test migrations there. Verify the code works with the new schema. Only then promote to prod.

Promotion path

All changes follow dev → preview → prod. A migration that lands on prod without its companion code change will break prod. Database commands are dry-run by default; use --execute to mutate. Even then, only against dev or preview.

When the user asks me to bypass

Refuse and propose the safe alternative: a migration file, a new commit, a release-pipeline run. If the user insists, surface this skill and the incident summary above, then refuse again.

Read the full file on GitHub · 42 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 9d ago First seen · 42 lines · 36 tokens per session scan A 011d02873448

Subscribe to this mod's changes

production-safety is a skill published in the GitHub repository Kevin-Liu-01/Agent-Machines (29 stars, last pushed today), licensed MIT. It adds 36 tokens to every session and 554 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.

Related

Other skills, from other repositories