[ Documentation ]
Agent Skills

Agent Skills

The bundled agent skills are markdown skill files for AI coding agents. They ship with the CLI. They are not a runtime /api/skills service.

Install them with the CLI:

terminal
rnx skill install

rnx skill show lists what is bundled, and rnx skill show <name> prints one skill’s markdown.

What the bundled agent skills cover

  • +
    rnx-debug: inspection-first debugging with describe, find, get errors, snapshots, traces, performance checks, and accessibility review
  • +
    rnx-setup: connect and pin a driveable sim
  • +
    rnx-perf: profile frame production, scroll, CPU, and memory behavior
  • +
    rnx-visual: visual review against native iOS output
  • +
    rnx-test: flow authoring, Maestro drop-in, and Detox drop-in
  • +
    contrast: generated index of Contrast and rnx commands and skills

Where they install

Each skill lands in the standard agent layout, <skill>/SKILL.md:

terminal
rnx skill install # every supported agent
rnx skill install codex # Codex only
rnx skill install --target .claude/skills rnx-debug

install with no target writes into every supported local agent home rnx can resolve: Codex ($CODEX_HOME/skills, or ~/.codex/skills) and Claude Code ($CLAUDE_CONFIG_DIR/skills, or ~/.claude/skills). It only writes into an agent home that already exists, so it does not seed a skill store on a CI runner or on a machine that does not use that agent. Use --target <dir> to name a directory yourself, such as a repo-local .claude/skills.

Restart the agent session after installing new skills.