Skip to content

nrepo show

Terminal window
nrepo show <id> [options]

nrepo show retrieves and displays the complete details of an idea, including its title, body, status, tags, links, and relations.

FlagTypeDefaultDescription
--jsonboolean(see auth)Output as JSON.
--humanboolean(see auth)Output as human-readable text.
Terminal window
nrepo show 42

Output:

#42 Add dark mode to dashboard
Status: exploring
Tags: ui, frontend
Created: 2026-03-20
Switch the dashboard to support both light and dark color schemes
using CSS custom properties.
Links:
→ #18 Theme system redesign (related)
→ #7 CSS variable cleanup (inspires)
Terminal window
nrepo show 42 --json
{
"id": 42,
"title": "Add dark mode to dashboard",
"body": "Switch the dashboard to support both light and dark color schemes...",
"status": "exploring",
"tags": ["ui", "frontend"],
"links": [
{ "target_id": 18, "type": "related" },
{ "target_id": 7, "type": "inspires" }
],
"created_at": "2026-03-20T14:30:00Z",
"updated_at": "2026-03-22T09:15:00Z"
}
Terminal window
nrepo show 42 | less