Skip to content

nrepo status

Terminal window
nrepo status [options]

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.

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

Output:

NeuralRepo Dashboard
─────────────────────
captured 12
exploring 5
building 3
shipped 8
shelved 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: 2
Terminal window
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
}
Terminal window
BUILDING=$(nrepo status --json | jq '.building')
echo "You have $BUILDING ideas in progress"