content-forge-vault/content-pipeline-v2.md
2026-03-03 02:00:01 +08:00

102 lines
1.3 KiB
Markdown

---
title: Content Pipeline (Dataview Kanban)
kanban-plugin: basic
---
## 灵感/素材 (∞)
```dataview
LIST
FROM "00-inbox"
WHERE status = "inbox" OR status = null
SORT file.ctime DESC
```
## 选题 (WIP: 3)
```dataview
LIST
FROM "01-topics"
WHERE status = "topic"
SORT file.ctime DESC
```
## 写作 (WIP: 3)
```dataview
LIST
FROM "02-drafts"
WHERE status = "draft"
SORT file.ctime DESC
```
## 配图/格式化 (WIP: 2)
```dataview
LIST
FROM "02-drafts" OR "05-assets"
WHERE status = "formatting" OR status = "visual"
SORT file.ctime DESC
```
## 审核 (WIP: 2)
```dataview
LIST
FROM "03-review"
WHERE status = "review"
SORT file.ctime DESC
```
## 发布 (WIP: 2)
```dataview
LIST
FROM "03-review"
WHERE status = "publishing"
SORT file.ctime DESC
```
## 已完成
```dataview
LIST
FROM "04-published"
WHERE status = "published"
SORT published_at DESC
```
---
## 阻塞/等待
```dataview
LIST
FROM ""
WHERE status = "blocked"
SORT file.ctime DESC
```
## 修订中
```dataview
LIST
FROM ""
WHERE status = "revision"
SORT file.ctime DESC
```
---
> [!info] 状态枚举
> `inbox` → `topic` → `draft` → `formatting` → `review` → `publishing` → `published`
>
> 特殊状态: `revision` `blocked` `archived`
>
> 废弃目录: `06-archived/`
%% kanban:settings
```
{"kanban-plugin":"basic","lane-width":280,"show-checkboxes":false}
```
%%