production-awareness

production-awareness is a skill for Claude Code, Codex from varunk130/ai-workflow-playbooks. It costs 19 tokens per session (1,082 once invoked), scanned A, original, MIT.

A development practice that considers how software behaves after release, under real traffic, data, failures, and resource limits.

In plain words
What is it for?
Use it while designing or changing code to examine scaling, dependency failures, unexpected input, memory and disk limits, and deployment behavior.
Why use it?
It exposes problems that may not appear during local development, such as overloaded services, failed network calls, malformed input, or full storage.

Skill for Claude CodeCodex

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

Good fit Use it while designing or changing code to examine scaling, dependency failures, unexpected input, memory and disk limits, and deployment behavior.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/varunk130/ai-workflow-playbooks/production-awareness
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 varunk130/ai-workflow-playbooks --skill production-awareness
Clone the repo
git clone --depth 1 https://github.com/varunk130/ai-workflow-playbooks

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-awareness

README.md
[![agentmods](https://agentmods.dev/badge/skills/varunk130/ai-workflow-playbooks/production-awareness/github.svg)](https://agentmods.dev/skills/varunk130/ai-workflow-playbooks/production-awareness)
Your own site
<a href="https://agentmods.dev/skills/varunk130/ai-workflow-playbooks/production-awareness"><img src="https://agentmods.dev/badge/skills/varunk130/ai-workflow-playbooks/production-awareness/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-awareness

Your own site · 80×15
<a href="https://agentmods.dev/skills/varunk130/ai-workflow-playbooks/production-awareness"><img src="https://agentmods.dev/badge/skills/varunk130/ai-workflow-playbooks/production-awareness.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 19 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,082 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. A grade says what 26 rules found in the file — not that it is safe.
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.00019 $0.01082
Opus 5 $0.00010 $0.00541
Sonnet 5 $0.00004 $0.00216
Haiku 4.5 $0.00002 $0.00108

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

Security

Grade A, and why

production-awareness scanned grade A with 1 finding 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 11d 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.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

GOOD: fetch(url, { signal: AbortSignal.timeout(5000) })
skills/production-awareness/SKILL.md · 95 lines

How it starts

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

Production Awareness

What This Skill Enables

An agent that considers how code will behave in production - under real load, with real data, facing real failures - while writing it, not after shipping it. Without this skill, agents write code that works in development but fails under production conditions: high concurrency, network failures, malformed data, resource exhaustion, and hostile input.

Core Competencies

1. Production Mental Model

While writing any code, ask these questions:

Question Why It Matters
What happens at 100x current load? Linear algorithms become bottlenecks; database connections exhaust
What happens when this external call fails? Network timeouts, retries, and circuit breakers become essential
What happens with unexpected input? User-generated content includes Unicode, injection attempts, and extreme lengths
What happens when disk/memory fills up? Unbounded logs, caches, and queues cause cascading failures
What happens during a deploy? In-flight requests, database migrations, and cache invalidation need handling

2. Failure Mode Awareness

Every external dependency will eventually fail. Design for it:

Network calls: Always have a timeout, retry policy, and fallback behavior

GOOD: fetch(url, { signal: AbortSignal.timeout(5000) })
       .catch(err => fallbackResponse)

BAD:  fetch(url)  // hangs forever if the server doesn't respond

Database queries: Handle connection pool exhaustion, slow queries, and deadlocks

  • Set query timeouts
  • Use connection pool limits with appropriate max/min
  • Log slow queries above a threshold

File system: Handle disk full, permission denied, and race conditions

  • Check available space before large writes
  • Use atomic write patterns (write to temp, rename)
  • Handle ENOENT and EACCES explicitly

3. Data Safety

Treat production data with care at every level:

  • Never log sensitive data: passwords, tokens, PII, credit card numbers
  • Never trust input size: enforce limits on request bodies, file uploads, query parameters
  • Never expose internals: stack traces, database schemas, internal paths in error responses
  • Always validate at boundaries: data from users, APIs, message queues, and even your own database (data can be corrupted)

Read the full file on GitHub · 95 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. 11d ago First seen · 95 lines · 19 tokens per session scan A c2df2c7d53b4

Subscribe to this mod's changes

production-awareness is a skill published in the GitHub repository varunk130/ai-workflow-playbooks (2 stars, last pushed 1mo ago), licensed MIT. It adds 19 tokens to every session and 1,082 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

prd-taskmaster

Zero-config goal-to-tasks engine (the Atlas engine). Takes any goal (software, pentest, business, learning), runs adaptive discovery via brainstorming, generates a validated spec, parses into TaskMaster tasks, and hands off to execution. Use when user says "PRD", "product requirements", "I want to build", invokes…

anombyte93/prd-taskmaster · 80 tokens

generate

Phase 2 of the prd-taskmaster pipeline: spec generation and task parsing. Loads a template (comprehensive|minimal), fills it with DISCOVER-phase constraints and answers, validates the spec (placeholdersfound, grade thresholds), parses the PRD into tasks via task-master, runs TaskMaster's native complexity analysis…

anombyte93/prd-taskmaster · 91 tokens

discover

Phase 1 of the prd-taskmaster pipeline: brainstorm-driven discovery. Delegates to superpowers:brainstorming in Interactive Mode (one adaptive question at a time), or self-brainstorms in Autonomous Mode when no user is present. Intercepts before the brainstorming chain hands off to writing-plans — this skill owns the…

anombyte93/prd-taskmaster · 92 tokens

ai-shaped-readiness-advisor

Assess whether your product work is AI-first or AI-shaped. Use when evaluating AI maturity and choosing the next team capability to build.

deanpeters/Product-Manager-Skills · 33 tokens

agent-orchestration-advisor

Design multi-agent AI workflows with clear boundaries, handoffs, and monitoring. Use when a complex PM task should run as parallel specialized agents instead of one linear process.

deanpeters/Product-Manager-Skills · 40 tokens

company-intel

Research a company, industry, or competitor set using web search and seven analytical lenses. Use when you need structured intel that feeds downstream PM skills.

deanpeters/Product-Manager-Skills · 33 tokens