nrepo status
Synopsis
Section titled “Synopsis”nrepo status [options]Description
Section titled “Description”nrepo status displays a dashboard overview of your NeuralRepo account. It shows the total number of ideas and a breakdown of counts by status category.
Options
Section titled “Options”| Flag | Type | Default | Description |
|---|---|---|---|
--json | boolean | (see auth) | Output as JSON. |
--human | boolean | (see auth) | Output as human-readable text. |
Examples
Section titled “Examples”View dashboard
Section titled “View dashboard”nrepo statusOutput:
NeuralRepo Dashboard─────────────────────captured 12exploring 5building 3shipped 8shelved 2─────────────────────total 30
Recent captures (last 7 days) #58 Async worker queue for tasks 2 days ago #57 Mobile habit tracker redesign 3 days ago #56 API rate limiting improvements 5 days ago
Pending duplicates: 2JSON output for scripting
Section titled “JSON output for scripting”nrepo status --json{ "counts": { "captured": 12, "exploring": 5, "building": 3, "shipped": 8, "shelved": 2, "total": 30 }, "recent": [ { "id": 58, "title": "Async worker queue for tasks", "created_at": "2026-03-23T10:00:00Z" }, { "id": 57, "title": "Mobile habit tracker redesign", "created_at": "2026-03-22T14:00:00Z" } ], "pending_duplicates": 2}Use in a shell script
Section titled “Use in a shell script”BUILDING=$(nrepo status --json | jq '.building')echo "You have $BUILDING ideas in progress"Related commands
Section titled “Related commands”- nrepo log — list ideas with filters
- nrepo move — change an idea’s status
- nrepo search — find ideas by query