Each doc also has a new **Doc:** frontmatter field with its sequence number.
This creates a linear, auditable spec history — like Django migrations for documentation.
## Docs Renamed to Django-Migration-Style Numbering
All four backend spec docs have been renamed to follow the `NNN_feature_name.md` convention:
| Old Name | New Name | Issue |
|----------|----------|-------|
| `trello-auth-spec.md` | `001_trello_auth_spec.md` | #1 |
| `manage-boards-spec.md` | `002_manage_boards_spec.md` | #2 |
| `manage-lists-spec.md` | `003_manage_lists_spec.md` | #3 |
| `manage-cards-spec.md` | `004_manage_cards_spec.md` | #4 |
Each doc also has a new `**Doc:**` frontmatter field with its sequence number.
This creates a linear, auditable spec history — like Django migrations for documentation.
Rename docs/backend/*.md to Django-migration-style naming:
trello-auth-spec.md → 001_trello_auth_spec.md (Issue #1)
manage-boards-spec.md → 002_manage_boards_spec.md (Issue #2)
manage-lists-spec.md → 003_manage_lists_spec.md (Issue #3)
manage-cards-spec.md → 004_manage_cards_spec.md (Issue #4)
Each doc now includes a **Doc:** field with its sequence number.
crisleo94
approved these changes 2026-05-27 04:27:58 +00:00
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.
Docs Renamed to Django-Migration-Style Numbering
All four backend spec docs have been renamed to follow the
NNN_feature_name.mdconvention:trello-auth-spec.md001_trello_auth_spec.mdmanage-boards-spec.md002_manage_boards_spec.mdmanage-lists-spec.md003_manage_lists_spec.mdmanage-cards-spec.md004_manage_cards_spec.mdEach doc also has a new
**Doc:**frontmatter field with its sequence number.This creates a linear, auditable spec history — like Django migrations for documentation.