| rad-experiment-show(1) | General Commands Manual | rad-experiment-show(1) |
NAME
rad-experiment-show - Show experiment details
SYNOPSIS
rad-experiment show [--json] [-r|--repo] [--diff] [-q|--quiet] [--pretty] [-h|--help] <ID>
DESCRIPTION
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.
OPTIONS
- --json
- Show in JSON format
- -r, --repo <REPO>
- Repository path or Radicle RID (defaults to current directory)
- --diff
- Include the code diff between base and candidate
- -q, --quiet
- Suppress non-error output to stderr
- --pretty
- Pretty-print JSON output (for human inspection; agents should omit)
- -h, --help
- Print help (see a summary with '-h')
- <ID>
- Experiment ID
EXTRA
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 |