# Production Readiness Check

> Check whether CodexDB Agent is safe to run in production with live database connections, signing, audit replay, drivers, and complete skill metadata.

- Skill: `rweisssieker-xp/production-readiness-check` (Agent Skill)
- Install (CLI): `npx skillmds@latest add rweisssieker-xp/production-readiness-check`
- Raw SKILL.md: https://api.skillmd.com/api/skills/rweisssieker-xp/production-readiness-check/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: AI & ML
- Author: rweisssieker-xp (https://skillmd.com/u/rweisssieker-xp)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/rweisssieker-xp/production-readiness-check

---


# Production Readiness Check

Use this skill before enabling CodexDB Agent against production SQL Server or PostgreSQL.

Run:

```bash
node runtime/runTool.js production_readiness_check '{"environment":"production","engine":"postgres"}'
```

The tool returns:

- `ready`: true only when no production blockers remain.
- `blockingIssues`: hard deployment blockers.
- `warnings`: non-blocking operational risks.
- `checks`: individual readiness checks for manifests, skill docs, live mode, drivers, migration signing, and audit replay.

Production should set:

- `CODEXDB_REQUIRE_LIVE_CONNECTION=true`
- `CODEXDB_MIGRATION_SIGNING_KEY`
- engine-specific connection variables such as `CODEXDB_POSTGRES_CONNECTION_STRING` or `CODEXDB_SQLSERVER_SERVER`.

