nrepo tag
Synopsis
Section titled “Synopsis”nrepo tag <id> <tags...>nrepo tag add <tag> --ids <ids>nrepo tag remove <tag> --ids <ids>Description
Section titled “Description”nrepo tag manages tags on your ideas. It has three forms:
- Set tags — Replace all tags on a single idea with the provided list.
- Add tag — Add a tag to one or more ideas without removing existing tags.
- Remove tag — Remove a tag from one or more ideas.
Options
Section titled “Options”| Flag | Type | Default | Description |
|---|---|---|---|
--ids <ids> | string | (none) | Comma-separated list of idea IDs. Required for add and remove subcommands. |
--json | boolean | (see auth) | Output as JSON. |
--human | boolean | (see auth) | Output as human-readable text. |
Examples
Section titled “Examples”Set tags on a single idea
Section titled “Set tags on a single idea”Replace all tags on idea 42 with ui and frontend:
nrepo tag 42 ui frontendAdd a tag to multiple ideas
Section titled “Add a tag to multiple ideas”nrepo tag add priority-high --ids 1,2,3Remove a tag from multiple ideas
Section titled “Remove a tag from multiple ideas”nrepo tag remove deprecated --ids 4,5Output
Section titled “Output”The set form prints the updated idea with its new tags. The add and remove forms print a summary of how many ideas were updated.
Added tag "priority-high" to 3 ideasRelated commands
Section titled “Related commands”- nrepo edit — modify title or body
- nrepo log — filter ideas by tag
- nrepo push — create an idea with tags
- nrepo show — view idea details including tags