nrepo status
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.
Options
Section titled “Options”| Flag | Type | Default | Description |
|---|---|---|---|
--json | boolean | false | Output as JSON. |
--human | boolean | — | Force human-readable output. Wins over --json. |
Output
Section titled “Output”NeuralRepo DashboardAlice · 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
capturedideas and 3shippedones 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.
JSON output
Section titled “JSON output”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.
BUILDING=$(nrepo status --json | jq '.counts.building')echo "You have $BUILDING ideas in progress"Next Steps
Section titled “Next Steps” nrepo log List the ideas behind the counts, filtered by status or tag.
nrepo duplicate Review and resolve the pending detections this dashboard counts.
Review Queue The web app's version of this screen, with connections and stale ideas as well.
nrepo whoami Just the account line, including your active idea count against the free cap.