Skip to main content

crewship runtimes

Lists the runtime/tool entries that mise can install in a crew container. mise (formerly rtx) reads a mise.json block in the crew’s devcontainer_config and installs each (tool, version) pair during provisioning.
Backed by GET /api/v1/runtimes/catalog. Requires authentication.

Subcommands

list

Flags: Example:
Columns: TOOL (the mise tool ID — what you put in mise.json), NAME (display label), CATEGORY, VERSIONS (available versions), DEFAULT (the version Crewship picks when the crew config doesn’t pin one).

info

Example:
The info view echoes whatever the catalog row carries. Backends lists the mise install backends mise can use for this tool (asdf, cargo, npm, pipx, github); when empty the catalog leaves it to mise’s default.

Notes

  • --search is server-side (one round-trip with ?search=), --category is applied client-side after the fetch. Combining the two is fine — the search narrows what’s fetched, then category narrows the local result set.
  • The default version is the one mise reports for the catalog; pin a specific version in devcontainer_config.mise if you need reproducibility across upstream catalog updates.
  • Output respects the global --format flag (table, json, yaml).