Skip to content

File Structure

Neova stores all project data in a .neova/ folder inside your project directory. Everything is plain files — JSON and Markdown — that you can inspect, edit, and version control.

.neova/
├── activities/ # Activity templates
├── snippets/ # Reusable snippets
├── standards/ # Project standards
├── tasks/
│ ├── archive/ # Archived tasks
│ └── *.json # Active tasks
├── stages.json # Stage configuration
├── tag-colors.json # Tag color mappings
├── quickactions.json # Quick actions
├── project.md # Project description
└── agent-quickstart.md # Agent instructions
FolderDescription
activities/Activity template files. Each .json file defines a reusable prompt template with placeholders.
snippets/Reusable text snippets that can be inserted into tasks or templates.
standards/Project standards as Markdown files. Referenced by agents to follow project conventions.
tasks/Active task files. Each task is stored as a separate .json file.
tasks/archive/Archived or completed tasks moved out of the active board.
FileDescription
stages.jsonDefines workflow stages, their order, and which activities are assigned to each stage.
tag-colors.jsonMaps tag names to colors for visual organization on the board.
quickactions.jsonConfigures quick action buttons available in the UI.
project.mdProject description shown on the dashboard. Editable in Settings.
agent-quickstart.mdInstructions provided to agents when they connect via MCP.