Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.murmur.dev/llms.txt

Use this file to discover all available pages before exploring further.

Reads a single catalog resource and prints it as YAML. When the name is omitted, lists all resource names of the given kind.

Synopsis

murmur get <kind> [name]

Arguments

NameTypeRequiredDescription
kindstringyesThe catalog resource kind (e.g. workspace, environment, placement). Run murmur describe to list available kinds.
namestringnoThe resource name. When omitted, lists all resources of the kind.

Output

Single resource

When a name is provided, the command prints the resource as YAML to stdout.

List mode

When the name is omitted, the command prints one resource name per line. For agent-persona resources, the output includes a [platform] marker for built-in personas and a description column.

Examples

Get a single workspace

murmur get workspace default
name: default
image_ref: murmur-base-a1b2c3d4e5f67890
environment_ref: default
placement: murmur-gcp-us-central1
repos:
  - clone_url: https://github.com/acme/backend

List all environments

murmur get environment
default
gpu
ml-large

List agent personas

murmur get agent-persona
programmer              Default coding agent
architect   [platform]  Plans multi-agent work and delegates to specialists
reviewer    [platform]  Reviews pull requests for correctness and style

Pipe a resource into another command

murmur get environment staging | yq '.machine_type_ref'
murmur-n2-standard-16

Errors

CodeMeaningWhat to do
NOT_FOUNDNo resource with that kind and name exists.Check the name spelling. Run murmur get <kind> without a name to list available resources.
UNAUTHENTICATEDIdentity token is missing or expired.Run murmur auth or check your murmur.local.yaml configuration.
INVALID_ARGUMENTThe kind is not recognized.Run murmur describe to list valid kinds.