> ## Documentation Index
> Fetch the complete documentation index at: https://docs.pre.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# Progress Tracking

> Monitor your project's build progress in real-time.

pre.dev provides real-time visibility into your project's build progress. Track what's been completed, what's in progress, and what's remaining — all from the roadmap view.

## The Roadmap View

Your project dashboard shows a Gantt-style roadmap with hierarchical task tracking — milestones, stories, and subtasks — with progress bars and timeline bars.

```bash theme={null}
# Project Roadmap

M1: Core Foundation        8h   ████████████ 100%
  Setup project structure  8h   ████████████ 100%

M2: User Features         26h   ██.......... 20%
  Hero Section             2h   ............ 0%
  Download/Signup          4h   ............ 0%
  Feature Benefits         4h   ............ 0%
  Signup Form              8h   ............ 0%
  Password Reset           8h   ............ 0%

M3: Polish & Deploy       32h   ............ 0%

Overall: 14.29%
```

The roadmap tracks three levels of detail:

* **Milestones** (blue) — Top-level phases of delivery
* **Stories** (amber) — Feature-level requirements within each milestone
* **Subtasks** (green) — Granular implementation steps

## Task Statuses

| Status      | Symbol | Meaning                             |
| ----------- | ------ | ----------------------------------- |
| To Do       | `[ ]`  | Not yet started                     |
| In Progress | `[→]`  | Currently being built by an agent   |
| Complete    | `[✓]`  | Finished and verified               |
| Skipped     | `[⊘]`  | Intentionally skipped (with reason) |

## Real-Time Updates

When agents are building (especially in Autopilot mode), the roadmap updates live:

* Tasks move from "To Do" to "In Progress" when an agent picks them up
* Tasks move to "Complete" once acceptance verification passes and the PR is opened
* Progress percentages update immediately
* You can see which agent is working on which task

## Completion Metrics

The roadmap view shows:

* **Overall progress** — Percentage of all tasks completed
* **Per-milestone progress** — How far along each phase is
* **Estimated remaining** — Based on complexity scores of remaining tasks
* **Hours logged** — Estimated effort per milestone

## Skipping Tasks

If a task is no longer relevant, you can skip it:

* Mark it as `[⊘] Skipped` with a reason
* It won't count against your completion percentage
* Agents won't attempt to build it
* The skip reason is preserved for future reference

## Using Progress for Decision-Making

The roadmap helps you decide:

* **When to switch modes** — If early PRs look good, switch to Autopilot
* **Where to focus review** — Prioritize reviewing complex milestone PRs
* **What to adjust** — If a milestone is taking too long, simplify the spec
* **When to ship** — Once key milestones are complete, you might ship early and iterate
