---
title: How It Works
description: An overview of the cross-cutting mechanisms that underpin NexusArchitect
seo:
  image: /ogp.png
---
This page describes the cross-cutting mechanisms that underpin NexusArchitect, as revealed through implementation.

<CardGroup cols={2}>
  <Card title="Pipeline Dependency Graph" icon="git-branch" href="/concepts/dependency-graph">
    Which skills run and in what order is defined in a file called `skill-dependencies.yaml`. This section also covers the four profiles you can choose from depending on your use case: `mvp`, `core-only`, `ux-to-spec`, and `full`.
  </Card>
  <Card title="Validation Gate" icon="shield-check" href="/concepts/validation-gate">
    A Go/No-Go decision mechanism that runs immediately after Phase 1, the first stage of the pipeline, to determine whether work should proceed.
  </Card>
  <Card title="Live Dashboard" icon="activity" href="/concepts/live-dashboard">
    A terminal screen that shows in real time which phase is currently running and the status of the validation gate decision and cost.
  </Card>
  <Card title="Shared-Context Pack" icon="package" href="/concepts/shared-context">
    A collection of team-shared knowledge that is loaded at the start of every implementation run.
  </Card>
  <Card title="Status Label State Machine" icon="workflow" href="/concepts/status-labels">
    The mechanism that advances issue labels through the sequence `todo` → `doing` → `review` → `done`. It also defines which labels each skill is permitted to change.
  </Card>
  <Card title="Three-Layer Checklist Structure" icon="check-square" href="/concepts/checklist-contract">
    Three distinct checklist types: a child task list that breaks down the work, acceptance criteria that define the definition of done, and a Delivery Status that tracks progress from implementation through merge. Each type restricts which skills are allowed to check off items.
  </Card>
  <Card title="Pause and Resume" icon="play" href="/concepts/resume">
    Progress is written to files even when a run stops mid-way. Covers how to resume from where you left off using the same command, and how to check your current position in the pipeline.
  </Card>
  <Card title="Token Cost Model" icon="coins" href="/concepts/token-cost">
    What drives cost, how to review actual spend after a run, and the command for estimating cost upfront.
  </Card>
</CardGroup>
