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
--jsonbooleanfalseOutput as JSON.
--humanbooleantrueOutput as human-readable text (default).
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
{
"user": {
"id": "usr_abc123",
"email": "alice@example.com",
"display_name": "Alice",
"plan": "pro"
},
"total": 30,
"counts": {
"captured": 12,
"exploring": 5,
"building": 3,
"shipped": 8,
"shelved": 2
},
"pending_duplicates": 2
}
Terminal window
BUILDING=$(nrepo status --json | jq '.counts.building')
echo "You have $BUILDING ideas in progress"