Captured
A raw idea, just saved. No evaluation or refinement has happened yet. This is the default status for every new idea regardless of how it was captured.
Every idea in NeuralRepo has a status that represents where it is in your workflow. There are five statuses, and an idea is always in exactly one of them.
Captured
A raw idea, just saved. No evaluation or refinement has happened yet. This is the default status for every new idea regardless of how it was captured.
Exploring
You are actively researching or fleshing out this idea. It has caught your attention and you are evaluating its potential, gathering references, or sketching out requirements.
Building
Development is in progress. You have committed to this idea and are actively working on turning it into something real — writing code, designing screens, drafting content.
Shipped
Completed and launched. The idea has been realized and is live, published, or otherwise done.
Shelved
Parked for later. This is not the same as abandoned — a shelved idea is one you may come back to when the timing is right or when priorities shift.
The Board view is a drag-and-drop kanban board where each column represents a status. Drag an idea card from one column to another to change its status instantly.
The kanban board shows idea titles, tags (with custom colors), and a truncated body preview. Click any card to open the full idea detail view.
# Move a single idea to a new statusnrepo move <id> <status>
# Examplesnrepo move 42 exploringnrepo move 18 shippedcurl -X PATCH https://neuralrepo.com/api/v1/ideas/42 \ -H "Authorization: Bearer $NREPO_TOKEN" \ -H "Content-Type: application/json" \ -d '{"status": "exploring"}'Valid values: captured, exploring, building, shipped, shelved.
Move multiple ideas to the same status in a single command.
# Move ideas 1, 2, and 3 to "building"nrepo move building --ids 1,2,3In the web app, tick the checkbox on each idea in the Ideas list, then choose a status from the bulk toolbar that appears. Bulk moves are applied one idea at a time and reported per idea — a failure on one does not roll back the others — with a maximum of 50 ideas per request.
Filter your idea list to show only ideas in a particular status.
Use the status filter in the sidebar, or simply look at the relevant kanban column.
# List all ideas with a specific statusnrepo log --status exploring
# Combine with tag filternrepo log --status building --tag aiGET /api/v1/ideas?status=exploring| Status | Default for new ideas | Typical next step |
|---|---|---|
captured | Yes | exploring or shelved |
exploring | No | building or shelved |
building | No | shipped or shelved |
shipped | No | Terminal, or back to exploring |
shelved | No | exploring when revisited |
captured past your staleness threshold (default 30
days) surfaces in the Review queue and in the weekly
digest. Moving it on, or pressing Keep, resets the clock.exploring, not captured: the agent’s
synthesize_ideas and draft_document both produce worked-on ideas rather than raw ones.