# Context Template

A quick-reference cheat sheet for a PRD. Keep it short and scannable.

---

```markdown
# Context: [Module/Feature Name]

> **Source:** prd-xxx | [link to PRD file](../02_prd/prd-xxx.md)
> **Last Updated:** YYYY-MM-DD

---

## What

One or two sentences: what is being built.

## Why

One or two sentences: the problem it solves.

## Who

- Target users and their key needs

## Core Requirements

| ID | Requirement | Priority |
|----|------------|----------|
| FR-001 | ... | P0 |
| FR-002 | ... | P0 |
| FR-003 | ... | P1 |

Only list the most important 5-7 requirements. Full list in PRD.

## Tech Stack

| Layer | Technology |
|-------|-----------|
| ... | ... |

## Key Decisions

- Decision 1: Why this approach was chosen
- Decision 2: ...

## Constraints & Dependencies

- External service X required
- Depends on module Y being completed first

## Implementation Plans

| Plan ID | Scope | File | Status |
|---------|-------|------|--------|
| impl-001 | Phase 1 — ... | [link](../03_implement_plan/impl-001/...) | Done / In Progress |
| impl-002 | Phase 2 — ... | [link](../03_implement_plan/impl-002/...) | Not Started |

<!-- If only one plan exists, keep as a single-row table.
     If no plans exist yet, replace table with: "No implementation plan yet." -->

## Status

| Phase | Status |
|-------|--------|
| PRD | Draft / Approved |
| Phase 1 | Not started / In Progress / Done |
| Phase 2 | Not started / In Progress / Done |

## Quick Links

- PRD: `docs/02_prd/prd-xxx.md`
- Code: `path/to/module/`
```
