Use a rig
Inspect before installing
rig inspect — read the manifest of an artifact without extracting it.
rig inspect <source>The source can be anything that rig use accepts:
rig inspect hub:maria/market-researcher
rig inspect github:acme/agents-research@v0.4.1
rig inspect ./dist/foo-0.1.0.rig.tgz
rig inspect registry:maria/market-researcherWhat it shows
- The manifest, section by section (identity, what gets shared, env, tools, MCP, plugins, permissions, install hooks, run instructions, collab).
- The file list inside the tarball.
- The artifact SHA-256 (when available from the source).
- Warnings — if the artifact contains anything that looks like a secret, large binaries, or other surprises.
Why you'd use it
- Before installing a stranger's rig. Read the manifest first; check the install hooks; check the permissions.
- Before publishing your own.
rig pack && rig inspect ./dist/...is the last sanity check beforerig hub publish. - Auditing the supply chain. Inspect a pinned version and compare to a later version.
Flags
| Flag | What |
|---|---|
--json | Machine-readable output. The Hub UI uses the same shape. |
--plain | Suppress colors. |
Related
rig pack— how artifacts are produced.- Safety checks — what the inspector warns about.