Skip to content
NeuralRepo
Get Support

nrepo status

Terminal window
nrepo status [options]

A one-screen overview: who you are signed in as, how your ideas split across the five statuses, your five most recent captures, and any pending duplicate detections.

FlagTypeDefaultDescription
--jsonbooleanfalseOutput as JSON.
--humanbooleanForce human-readable output. Wins over --json.
NeuralRepo Dashboard
Alice · pro
Status breakdown
captured ████████████ 12
exploring █████ 5
building ███ 3
shipped ████████ 8
shelved ██ 2
total 30
Recent captures
#58 captured ⬡ Async worker queue for tasks
#57 captured ◎ Mobile habit tracker redesign
#56 captured ◉ API rate limiting improvements
Pending duplicates (2)
#101 Auth flow redesign ≈ #42 Rewrite auth flow 91%
#103 Dark mode support ≈ #40 Add dark mode to dashboard 85%

Reading the sections:

  • Status breakdown — one bar character per idea, capped at 40 characters. A repo with 500 captured ideas and 3 shipped ones shows a 40-character bar next to a 3-character one, so compare the numbers rather than the bars once you are past 40.
  • Recent captures — up to five ideas still in captured, in list order. It is not a last-7-days window: an idea captured a year ago and never moved still appears here.
  • Pending duplicates — up to five unresolved detections, with the similarity score. The section is omitted entirely when there are none.
Terminal window
nrepo status --json
{
"user": { "email": "alice@example.com", "plan": "pro" },
"counts": { "captured": 12, "exploring": 5, "building": 3, "shipped": 8, "shelved": 2 },
"total": 30,
"pending_duplicates": 2
}

The JSON form is a summary only — it carries neither the recent captures nor the duplicate pairs. Use nrepo log --limit 5 --json and nrepo duplicate list --json for those.

Terminal window
BUILDING=$(nrepo status --json | jq '.counts.building')
echo "You have $BUILDING ideas in progress"