Getting Started

ReadyCheck is a cross-platform debugging and tracing platform that captures runtime execution data — screen, voice, and function traces — and makes it queryable for AI agents via JSON-RPC. It installs as a Claude Code plugin.

Quick Start

Install ReadyCheck as a Claude Code plugin:

claude plugin install readycheck@wezzard-skills

That’s it. You’re ready to go.

Your First Check

Run your app with full capture:

/check Run my app

ReadyCheck will:

  1. Detect your project type and build system
  2. Build your app (if needed)
  3. Launch it with tracing enabled
  4. Capture screen, voice, and function traces simultaneously

Interact with your app. When you quit, capture stops automatically and analysis begins.

What Gets Captured

Every session records three synchronized tracks:

TrackWhat it capturesWhy it matters
ScreenFrame-by-frame recordingSee exactly what the user saw
VoiceAudio narration + transcriptUnderstand what the user intended
TracesFunction calls with sub-μs precisionKnow what the code actually did

Next Steps