- New directory: docs/tasks-index/ with individual task markdown files - Each task = separate file with frontmatter (priority, status, blocker flag) - Sample tasks created: #26, #87, #94, #99 - README explains structure and relationship to full task docs Benefits for Trinity: - Decap CMS shows clean task list at firefrostgaming.com/admin - Click any task → edit just that task - Blockers auto-sort to top - Mobile-friendly individual entries - Replaces monolithic BLOCKERS.md + BACKLOG.md files in UI Next: Update Decap CMS config to point at tasks-index folder
61 lines
1.6 KiB
Markdown
61 lines
1.6 KiB
Markdown
# Tasks Index — Decap CMS Task Management
|
|
|
|
**Purpose:** Individual task files for Decap CMS UI at firefrostgaming.com/admin
|
|
|
|
## Structure
|
|
|
|
Each task is a separate markdown file with frontmatter:
|
|
|
|
```markdown
|
|
---
|
|
task_number: 26
|
|
title: Modpack Version Checker
|
|
status: In Progress | Planned | Complete | Blocked
|
|
priority: P0-Blocker | P1-High | P2-Medium | P3-Low | P4-Personal
|
|
is_blocker: true | false
|
|
tags:
|
|
- category1
|
|
- category2
|
|
owner: Michael | Meg | Holly | Trinity
|
|
estimated_hours: X
|
|
---
|
|
|
|
# Task #26: Title
|
|
|
|
Brief description and notes...
|
|
```
|
|
|
|
## Priority Levels
|
|
|
|
- **P0-Blocker** — Launch critical, blocks soft launch
|
|
- **P1-High** — Direct revenue impact or major force multiplier
|
|
- **P2-Medium** — Operational improvements, infrastructure hardening
|
|
- **P3-Low** — Nice-to-have, backlog
|
|
- **P4-Personal** — Trinity member personal projects
|
|
|
|
## Status Values
|
|
|
|
- **Planned** — Spec exists, not started
|
|
- **In Progress** — Currently being worked on
|
|
- **Blocked** — Waiting on external dependency
|
|
- **Complete** — Done and deployed
|
|
|
|
## Relationship to Full Task Docs
|
|
|
|
- **This directory:** High-level task cards for Decap CMS UI
|
|
- **docs/tasks/:** Full implementation specs, code, guides
|
|
|
|
Each task in this directory links to its full documentation in `docs/tasks/` for detailed implementation guidance.
|
|
|
|
## Decap CMS Display
|
|
|
|
Tasks appear in the 🔥 TASKS collection at firefrostgaming.com/admin:
|
|
- Sorted by priority (blockers first)
|
|
- Click to edit individual task
|
|
- Update status, add notes, change priority
|
|
- All changes commit to Git automatically
|
|
|
|
---
|
|
|
|
**Fire + Frost + Foundation = Where Love Builds Legacy** 💙🔥❄️
|