production-readiness

production-readiness is a command for Claude Code from navraj007in/architecture-cowork-plugin. It costs 19 tokens per session (5,159 once invoked), scanned A, original, Apache-2.0.

A source-code review that checks whether a project is ready to launch. It examines the code and produces a score, a list of gaps, and a go/no-go decision.

In plain words
What is it for?
Use it as a final review before putting a project into production, either across the whole project or for one component. It checks areas such as routes, authentication, data schemas, migrations, configuration, tests, and monitoring.
Why use it?
It finds launch-blocking problems that a quick check for missing files cannot detect. This helps teams fix important issues before users depend on the project.

Command for Claude Code

Written for Claude Code: shipped in a Claude Code plugin. Also seen: mentions CLAUDE.md; positional $N argument.

Part of the architect plugin — 48 skills, 63 commands, 19 agents, 7 MCP servers shipped together

Good fit Use it as a final review before putting a project into production, either across the whole project or for one component. It checks areas such as routes, authentication, data schemas, migrations, configuration, tests, and monitoring.

Compare 6 commands from other repositories ↓
Install with agentmods
npx agentmods add commands/navraj007in/architecture-cowork-plugin/production-readiness
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.

Clone the repo
git clone --depth 1 https://github.com/navraj007in/architecture-cowork-plugin

Made for: Claude Code.

Or install architect, the plugin that ships this one along with the rest of its 48 skills, 63 commands, 19 agents, 7 MCP servers.

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

README.md
[![agentmods](https://agentmods.dev/badge/commands/navraj007in/architecture-cowork-plugin/production-readiness/github.svg)](https://agentmods.dev/commands/navraj007in/architecture-cowork-plugin/production-readiness)
Your own site
<a href="https://agentmods.dev/commands/navraj007in/architecture-cowork-plugin/production-readiness"><img src="https://agentmods.dev/badge/commands/navraj007in/architecture-cowork-plugin/production-readiness/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-readiness

Your own site · 80×15
<a href="https://agentmods.dev/commands/navraj007in/architecture-cowork-plugin/production-readiness"><img src="https://agentmods.dev/badge/commands/navraj007in/architecture-cowork-plugin/production-readiness.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 19 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 5,159 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.05159
Opus 5 $0.00010 $0.02580
Sonnet 5 $0.00004 $0.01032
Haiku 4.5 $0.00002 $0.00516

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

Security

Grade A, and why

production-readiness 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 12d 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.

- Grep source files for outbound HTTP call patterns: `axios.get`, `fetch(`, `httpx.get`, `http.Get`
commands/production-readiness.md · 452 lines

How it starts

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

/architect:production-readiness

Trigger

/architect:production-readiness
/architect:production-readiness --component <name>   # scope to a single component

Purpose

Analyses actual source code across all components to determine whether the project is safe to launch. Reads route files, middleware, schema, migrations, environment config, test files, and SDL to score 8 categories. Produces a prioritised gap list (P0 blockers / P1 required / P2 recommended) and a single go/no-go verdict.

Distinct from /architect:launch-check — that command is a 30-second file-presence scan suitable for CI gates. This command reads and analyses source code content. Run it as the final sign-off before going to production.

Does not re-run other commands. If security-scan.md, _state.json.test_suite, or monitoring config already exist, this command reads their outputs rather than repeating the analysis.

Workflow

Step 1: Load project context

Follow the Context Loading Pattern:

  1. Read architecture-output/_state.json in full. Extract:

    • project.name, project.type, project.stage
    • tech_stack — framework, ORM, auth provider, integrations
    • components[] — names, types, ports
    • test_suite — coverage target, frameworks (if generate-tests was run)
    • monitoring — providers configured (if setup-monitoring was run)
    • compliance — frameworks, critical gaps (if compliance was run)
  2. Read solution.sdl.yaml (or sdl/ module files). Grep for:

    • slos:slos.services[].availability — used to enforce observability threshold
    • compliance: → frameworks in scope
    • testing: → e2eFramework, coverageTarget
    • contracts:contracts.apis[] — used to verify API contract shape
    • features: → features with status done — used to verify critical paths are tested
  3. If --component <name> was passed, scope all subsequent steps to that component's directory only.

  4. Collect the component directory list:

    • From _state.json.components[] — use name field to find directories
    • Fall back to Glob for directories containing package.json, pyproject.toml, go.mod, or *.csproj

Read the full file on GitHub · 452 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. 12d ago First seen · 452 lines · 19 tokens per session scan A 2be7cfe121eb

Subscribe to this mod's changes

production-readiness is a command published in the GitHub repository navraj007in/architecture-cowork-plugin (2 stars, last pushed 2mo ago), licensed Apache-2.0. It adds 19 tokens to every session and 5,159 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.