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.
├── activities/ # Activity templates
├── snippets/ # Reusable snippets
├── standards/ # Project standards
│ ├── 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
Folder Description 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.
File Description 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.