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.

Deletes a secret from your tenant. The secret is removed immediately — agents spawned after deletion no longer receive it as an environment variable. See profiles and secrets for how secrets are delivered to agents.
Deletion is permanent and takes effect immediately. There is no confirmation prompt and no undo. Running agents that were spawned before the deletion retain the secret for the remainder of their session.

Synopsis

murmur secret rm <NAME>

Arguments

NameTypeRequiredDescription
NAMEstringyesThe name of the secret to delete.

Examples

Delete a secret

murmur secret rm NPM_TOKEN
Deleted secret "NPM_TOKEN"

Errors

CodeMeaningWhat to do
NOT_FOUNDNo secret with that name exists.Check the name spelling. Use murmur secret ls to see configured secrets.
INVALID_ARGUMENTsecret name "GH_TOKEN" is reserved and cannot be deletedGH_TOKEN is provided automatically and cannot be deleted.
UNAUTHENTICATEDIdentity token is missing or expired.Run murmur auth or check your murmur.local.yaml configuration.