{name, color} label you attach to agents for grouping and filtering. The name is the tag’s identifier; agents reference it by name. The color lives only on the tag, so every viewer sees the same chip and recoloring a tag is a single edit — no per-agent rewrite.
Attach tags at spawn time with murmur spawn --tag or the spawn tool’s tags parameter, and filter by them in the dashboard sidebar. A tag named at spawn time that does not yet exist is created automatically with a default color.
Fields
| Name | Type | Required | Description |
|---|---|---|---|
name | string | yes | The tag’s identifier and catalog name. A DNS-label slug matching [a-z0-9][a-z0-9-]{0,62} (e.g. release-blocker). Immutable. |
color | enum | no | Chip color from the shared palette. Values: NOTE_COLOR_RED, NOTE_COLOR_YELLOW, NOTE_COLOR_GREEN, NOTE_COLOR_BLUE, NOTE_COLOR_GRAY. Unset (NOTE_COLOR_UNSPECIFIED) renders the neutral chip. |
archived | bool | no | When true, the tag is archived: hidden from the filter list and not attachable to new agents, but still rendered on agents that already carry it. Default: false. |
Tagging an agent
Tags attach to an agent by name, in three ways:- At spawn, with
murmur spawn --tag <name>(repeatable) or thespawntool’stagsarray. - On an existing agent, by editing the agent record’s
tags. - From the dashboard, via the agent’s context menu.
Examples
Creating a tag
Listing tags
Recoloring a tag
release-blocker updates to the new color — the color lives only on the tag.
Archiving a tag
Spawning with tags
Errors
| Code | Meaning | What to do |
|---|---|---|
INVALID_ARGUMENT | tag name must be a DNS-label slug matching ^[a-z0-9][a-z0-9-]{0,62}$ | Use a lowercase name that starts with a letter or digit and contains only letters, digits, and hyphens. |
INVALID_ARGUMENT | tag color <n> is not a valid color | Set color to one of the palette values, or leave it unset. |
FAILED_PRECONDITION | tag "<name>" is attached to <n> live agent(s); archive it instead, or detach it from those agents first | Archive the tag (archived: true) rather than deleting it, or remove it from the listed agents first. |
Related
murmur spawn --tag— attach tags when spawning an agentspawn— the MCP tool’stagsparameter- agent — the runtime record whose
tagsfield carries attached tag names - Dashboard — filter the sidebar by tag
murmur set,murmur patch,murmur rm— manage catalog resources