49 lines
946 B
Markdown
49 lines
946 B
Markdown
---
|
|
title: "Tasks"
|
|
status: "active"
|
|
folder: "07-tasks"
|
|
tags: [readme, tasks]
|
|
created: "2026-07-29"
|
|
updated: "2026-07-29"
|
|
version: "1.0.0"
|
|
---
|
|
|
|
# Tasks
|
|
|
|
Active task tracking. One file per task.
|
|
|
|
## File naming
|
|
|
|
`topic-slug.md` — short kebab-case. Not prefixed with `task-` (the `tags: [task]` makes it clear).
|
|
|
|
## Frontmatter
|
|
|
|
```yaml
|
|
---
|
|
title: "Task: <topic>"
|
|
status: "active" | "blocked" | "done" | "archived"
|
|
folder: "07-tasks"
|
|
tags: [task, <topic-tag>]
|
|
created: "2026-07-29"
|
|
updated: "2026-07-29"
|
|
version: "1.0.0"
|
|
priority: "low" | "medium" | "high" | "critical"
|
|
due: "YYYY-MM-DD" # optional
|
|
owner: "stateofshit"
|
|
---
|
|
```
|
|
|
|
## Status workflow
|
|
|
|
`active` → `blocked` → `done` → `archived`
|
|
|
|
When done, move to `03-archive/` instead of deleting.
|
|
|
|
## Template
|
|
|
|
`000-configs/templates/task.md` — copy + fill in.
|
|
|
|
## Dashboard
|
|
|
|
`000-shit_admin/dashboard.md` has Dataview queries that pull all `status: "active"` tasks from this folder.
|