# Platform Readiness

> Thin dispatch-only shim for the platform readiness gate. Routes to node_platform_readiness in omnimarket, which aggregates 7 verification dimensions (contract completeness, golden chain, data flow, runtime wiring, dashboard, cost, CI) into a tri-state PASS/WARN/FAIL report. No inline probe aggregation.

- Skill: `omninode-ai/platform-readiness` (Agent Skill, multi-file: 2 files)
- Install (CLI): `npx skillmds@latest add omninode-ai/platform-readiness`
- Raw SKILL.md: https://api.skillmd.com/api/skills/omninode-ai/platform-readiness/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Docs & Writing
- Author: OmniNode-ai (https://skillmd.com/u/omninode-ai)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/omninode-ai/platform-readiness

---


# /onex:platform_readiness — one command, one typed result

**Skill ID**: `onex:platform_readiness` · **Command**: `uv run onex skill platform_readiness` (omnibase_infra) · **Backing node**: `node_platform_readiness` (omnimarket)

A dispatch skill IS one CLI call. Payload construction, node dispatch, and
result extraction all live in the `onex skill` entrypoint (declarative
`skill_mapping.yaml` registry) — there is no procedure to learn here. The
command prints exactly one typed `ModelSkillResult[ModelPlatformReadinessResult]` JSON to
stdout carrying the FULL handler result; RuntimeLocal logs and intermediate
context go to a capture file + the artifact store, never to you.

See `prompt.md` for the one command and how to present the typed result.

## Routing Contract

The `uv run onex skill platform_readiness` entrypoint publishes to `onex.cmd.omnimarket.platform-readiness.v1`
through receipt-mode dispatch. If routing fails, surface `SkillRoutingError` directly; do not produce prose.

## What this skill does NOT do

- Construct a payload file, `cd` anywhere, or `cat` a workflow_result.json (all internal to `onex skill`)
- Run any inline scan, probe, or orchestration — the backing node owns all logic
- Contain executable logic in this directory — markdown only

## Related

- **CLI entrypoint**: `omnibase_infra/src/omnibase_infra/cli/cli_skill.py`
- **Skill→node mapping**: `omnibase_infra/src/omnibase_infra/cli/skill_mapping.yaml`
- **Result model**: `omnimarket.nodes.node_platform_readiness.handlers.handler_platform_readiness.ModelPlatformReadinessResult`

