# WDStatus Command

Check the status of all sites in the registry, grouped by batch and status.

## Usage

```bash
tools/check/check_registry.sh
```

## Output

Reports all sites grouped by:
1. **Batch number** (e.g., Batch 001, Batch 002) - includes total site count per batch.
2. **Status** within each batch - includes site count per status.

Each site entry displays the domain and optionally the title (if different from the domain).

Sites with status **Q (Finished)** are excluded from the report.

## Status Codes

| Code | Phase | Meaning |
|------|-------|---------|
| `-` | - | Registered but not in design batch |
| `B` | Design | Design Backlog |
| `d` | Design | Designing |
| `D` | Design | Design Done |
| `O` | Implement | Implement Backlog |
| `i` | Implement | Implementing |
| `I` | Implement | Implement Done |
| `Q` | Complete | Finished (excluded from report) |

## Example Output

```
# Site Status Report

Generated: 2025-12-14T19:30:00

## Batch 001 (1 sites)

### B (Design Backlog) [1]
  - def.com (My Cool Site)

## Batch 002 (1 sites)

### B (Design Backlog) [1]
  - a6c.xyz

---
Total active sites: 2
```