Skip to content

nrepo tag

Terminal window
nrepo tag <id> <tags...>
nrepo tag add <tag> --ids <ids>
nrepo tag remove <tag> --ids <ids>

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.
FlagTypeDefaultDescription
--ids <ids>string(none)Comma-separated list of idea IDs. Required for add and remove subcommands.
--jsonboolean(see auth)Output as JSON.
--humanboolean(see auth)Output as human-readable text.

Replace all tags on idea 42 with ui and frontend:

Terminal window
nrepo tag 42 ui frontend
Terminal window
nrepo tag add priority-high --ids 1,2,3
Terminal window
nrepo tag remove deprecated --ids 4,5

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 ideas