← CLI reference

rad-experiment-show(1) General Commands Manual rad-experiment-show(1)

rad-experiment-show - Show experiment details

rad-experiment show [--json] [-r|--repo] [--diff] [-q|--quiet] [--pretty] [-h|--help] <ID>

Prints full details for a single experiment, including all reproductions.

The <ID> argument can be a full 40-char hex string, a 7-char prefix, or any git revparse expression that resolves to the COB OID. In --json mode the output is the raw serialized Experiment struct plus an "id" field, pretty-printed for readability.

Show in JSON format
Repository path or Radicle RID (defaults to current directory)
Include the code diff between base and candidate
Suppress non-error output to stderr
Pretty-print JSON output (for human inspection; agents should omit)
Print help (see a summary with '-h')
<ID>
Experiment ID

EXAMPLES:

Human-readable:

rad-experiment show 5574144

Full structured form:

rad-experiment show 5574144 --json | jq .

Just pull the reproduction count:

rad-experiment show 5574144 --json | jq '.reproductions | length'

show