Skip to content

nrepo rm

Terminal window
nrepo rm <id> [options]

nrepo rm archives an idea by performing a soft delete. The idea is removed from listings and search results but is not permanently destroyed. This operation can be undone by NeuralRepo support if needed.

By default, the command prompts for confirmation before archiving.

FlagTypeDefaultDescription
--forcebooleanfalseSkip the confirmation prompt.
--jsonboolean(see auth)Output as JSON.
--humanboolean(see auth)Output as human-readable text.
Terminal window
nrepo rm 42
# Archive #42 "Add dark mode to dashboard"? (y/N): y
# Archived #42
Terminal window
nrepo rm 42 --force
Terminal window
nrepo rm 42 --force --json
{
"id": 42,
"archived": true
}
  • Archived ideas are excluded from nrepo log, nrepo search, and nrepo status counts.
  • Existing links to the archived idea are preserved but will show the idea as archived.
  • This is a soft delete. The idea’s data is retained on the server.