Planoda/templates
GitHub: Planoda/templates
一套包含十个纯 JSON 格式的即插即用项目管理模板,覆盖敏捷开发、产品规划、招聘等场景,支持一键导入 Planoda 或复制到任意主流任务追踪工具。
Stars: 0 | Forks: 0
# @planoda/templates
10 个现实、带主观见解、即插即用的纯 JSON 模板 —— Sprint
看板、Bug Triage、OKR、Incident Response 等。将你需要的字段复制
到任何支持 issue/workflow state/label/view 的工具中(Linear、
Jira、ClickUp、Plane 或你自己的 tracker),或者一键导入
Planoda workspace。
无构建步骤,无依赖,无锁定:它只是数据。
## 模板
| 模板 | Slug | 分类 | 导入 |
| --- | --- | --- | --- |
| 🏃 Sprint Board | `sprint-board` | Engineering / Agile | [导入 →](https://planoda.com/templates/sprint-board?utm_source=templates&utm_medium=github) |
| 🐛 Bug Triage & Support Queue | `bug-triage` | Support / QA | [导入 →](https://planoda.com/templates/bug-triage?utm_source=templates&utm_medium=github) |
| 🗺️ Product Roadmap | `product-roadmap` | Product | [导入 →](https://planoda.com/templates/product-roadmap?utm_source=templates&utm_medium=github) |
| 🎯 OKR / Goals Tracker | `okr-goals` | Strategy / Leadership | [导入 →](https://planoda.com/templates/okr-goals?utm_source=templates&utm_medium=github) |
| 💬 Customer Feedback Intake | `customer-feedback` | Product / Customer Success | [导入 →](https://planoda.com/templates/customer-feedback?utm_source=templates&utm_medium=github) |
| 🤖 AI Agent Governance (Propose / Approve) | `agent-governance` | AI / Operations | [导入 →](https://planoda.com/templates/agent-governance?utm_source=templates&utm_medium=github) |
| 🚨 Incident Response | `incident-response` | Engineering / SRE | [导入 →](https://planoda.com/templates/incident-response?utm_source=templates&utm_medium=github) |
| 📅 Content Calendar | `content-calendar` | Marketing | [导入 →](https://planoda.com/templates/content-calendar?utm_source=templates&utm_medium=github) |
| 🧑💼 Hiring Pipeline | `hiring-pipeline` | People / Recruiting | [导入 →](https://planoda.com/templates/hiring-pipeline?utm_source=templates&utm_medium=github) |
| 🚀 Launch Checklist | `launch-checklist` | Product / Go-to-Market | [导入 →](https://planoda.com/templates/launch-checklist?utm_source=templates&utm_medium=github) |
每个导入链接都会打开 `https://planoda.com/templates/`,它会深度链接
到 Planoda 应用:登录(或在不到一分钟内创建一个免费的 workspace),
该模板的 team、workflow state、label、issue 和 view 就会
为你生成 —— 无需手动设置。
正在寻找内置了这些 workflow 的 **Linear 替代品**、**ClickUp 替代品** 或 **Jira
替代品**?这是体验它们的最快方式。
## 按你的方式使用
### 1. 一键导入 Planoda
点击上方的任意“导入 →”链接,或者自己构建:
```
https://planoda.com/templates/?utm_source=templates&utm_medium=github
```
### 2. 复制/粘贴到任何工具
每个模板都是 [`templates/`](./templates) 下的一个独立 JSON 文件。
打开你需要的文件,并手动将
`workflowStates`、`labels` 和 `issueTemplates` 转换为你选择的工具 —— 它们的结构故意设计得与 Linear/Jira/ClickUp/Plane 建模相同概念的方式非常接近,因此映射通常是 1:1 的。
### 3. 作为 package 安装
```
npm i @planoda/templates
# 或
pnpm add @planoda/templates
```
```
import sprintBoard from "@planoda/templates/templates/sprint-board.json" with { type: "json" };
console.log(sprintBoard.name); // "Sprint Board"
console.log(sprintBoard.issueTemplates.length);
```
(或者在任何语言中直接从磁盘读取 `node_modules/@planoda/templates/templates/*.json` 文件 —— 它是纯 JSON。)
## Template JSON 结构
[`templates/`](./templates) 中的每个文件都遵循以下结构:
```
{
"slug": "sprint-board", // unique id, used in the import URL
"name": "Sprint Board",
"description": "…",
"category": "Engineering / Agile",
"icon": "🏃", // a single emoji
"teams": [
{
"key": "ENG", // short team key (issues are numbered ENG-123)
"name": "Engineering",
"description": "…",
"icon": "💻",
"color": "#6366f1", // hex
// optional, agile-flavored templates only:
"estimateScale": "points",
"estimatePoints": [0, 1, 2, 3, 5, 8, 13],
"cycleEnabled": true,
"cycleDurationDays": 14,
"cycleStartDay": 1
}
],
"workflowStates": [
{
"name": "In Progress",
// one of: backlog | unstarted | started | completed | canceled | triage
"type": "started",
"color": "#3b82f6",
"position": 2,
"description": "…"
}
],
"labels": [
{ "name": "bug", "color": "#ef4444", "emoji": "🐞", "description": "…" }
],
"issueTemplates": [
{
"ref": "sprint-goal", // optional local id, for parent/child links
"parent": null, // optional — the `ref` of a parent item, for
// epics/objectives/requisitions with children
"team": "ENG", // which team key this issue belongs to
"issueType": "Bug", // free-text work-item type label
"title": "…",
"descriptionMd": "…", // markdown body
"priority": 2, // 0 none · 1 urgent · 2 high · 3 medium · 4 low
"estimate": 3, // optional, points/hours per the team's scale
"workflowState": "Todo", // must match a `name` in this template's `workflowStates`
"labels": ["bug"], // must match `name`s in this template's `labels`
"dueDateOffsetDays": 5 // optional — days from the import date, for
// date-sensitive templates (content calendars,
// launch checklists); omit for date-agnostic work
}
],
"views": [
{
"name": "Sprint Board",
// one of: board | list | table | timeline | calendar | roadmap | dashboard | map | gallery | form
"layout": "board",
"description": "…",
"scope": "team", // team | workspace | private
"groupBy": "status", // convenience hint for the primary grouping
"filter": [{ "field": "cycle", "op": "in", "values": ["current"] }],
"display": { "swimlaneBy": "priority" }
}
]
}
```
这些字段名称刻意映射了 Planoda 自身的 `teams` / `workflow_states` /
`labels` / `issues` / `views` 表(参见主仓库中的
[`src/db/schema/`](https://github.com/idimetrix/team-task-manager/tree/main/src/db/schema)
),因此导入时几乎可以 1:1 映射到真实的行中 —— 但该格式
没有任何 Planoda 特定的依赖,是任何 tracker 都可以使用的
普通的、可移植的 JSON。
## 为什么是这 10 个
选择它们是为了覆盖真实团队实际运行的 workflow,而不是通行的繁杂工作:
- **Sprint Board** — 日常工程,Fibonacci 故事点,2 周周期。
- **Bug Triage & Support Queue** — 严重性驱动的 intake,带有 SLA 形状的漏斗。
- **Product Roadmap** — Now/Next/Later 优先级排序,带有 timeline view。
- **OKR / Goals Tracker** — Objective 作为 epic,Key Result 作为关联的子项。
- **Customer Feedback Intake** — 一个用于请求/bug/赞扬的队列,在发布时形成闭环。
- **AI Agent Governance** — 将 agent 视为队友的 propose/approve 模式,安全可靠。
- **Incident Response** — 检测 → 缓解 → postmortem,并将 action item 作为后续跟进进行追踪。
- **Content Calendar** — 跨越博客/视频/社交媒体/时事通讯的编辑 pipeline。
- **Hiring Pipeline** — 招聘需求作为 epic,候选人作为关联的子项。
- **Launch Checklist** — 一个涵盖 engineering + marketing + support 的跨职能 checklist。
## License
MIT © Planoda — 参见 [`LICENSE`](./LICENSE)。
⚡ Powered by [Planoda](https://planoda.com) — AI 原生的 Linear、
ClickUp、Monday 和 Trello 替代品。性能提升 100 倍,功能丰富 100 倍,100%
由 AI 驱动。
标签:Homebrew安装, JSON数据, Linux 内核安全, 团队协作, 工作流, 敏捷开发, 暗色界面, 模板, 项目管理