ticket
Compare original and translation side by side
🇺🇸
Original
English🇨🇳
Translation
ChineseTicket — Artifact Creation
工单——工件创建
All skill output that needs to persist goes into a ticket. No custom directories.
所有需要持久化的Skill输出都要存入工单中,禁止使用自定义目录。
Tag Taxonomy
标签分类体系
Every artifact ticket MUST use the appropriate tags:
| Artifact type | Tags | Example title |
|---|---|---|
| Oracle research | | "Oracle: Why API latency spiked" |
| Delphi investigation (epic) | | "Delphi: Database migration strategy" |
| Delphi synthesis | | "Delphi synthesis: Database migration strategy" |
| Implementation plan | | "Plan: Refactor auth middleware" |
| Architecture decision | | "ADR: Use Zustand for state management" |
| Postmortem | | "Postmortem: Agent skipped codebase exploration" |
| Code review | | "Review: PR #42 auth changes" |
| Design spec | | "Design spec: Dashboard redesign" |
每个工件工单必须使用对应的标签:
| 工件类型 | 标签 | 示例标题 |
|---|---|---|
| Oracle研究 | | "Oracle:API延迟突增原因" |
| Delphi调查(史诗工单) | | "Delphi:数据库迁移策略" |
| Delphi综合分析 | | "Delphi综合分析:数据库迁移策略" |
| 实施计划 | | "Plan:重构认证中间件" |
| 架构决策 | | "ADR:使用Zustand进行状态管理" |
| 事后分析 | | "Postmortem:Agent跳过代码库探索事件" |
| 代码评审 | | "Review:PR #42 认证变更" |
| 设计规范 | | "Design spec:仪表盘重设计" |
Creating Artifact Tickets
创建工件工单
Use (via or tool):
tktodos_oneshottodostodos_oneshot(
title: "Oracle: <topic>",
description: "<full findings>",
tags: "research,oracle",
type: "task"
)使用(通过或工具):
tktodos_oneshottodostodos_oneshot(
title: "Oracle: <topic>",
description: "<full findings>",
tags: "research,oracle",
type: "task"
)Epics with Subtasks
包含子任务的史诗工单
For multi-part artifacts (e.g. Delphi = N oracles + synthesis):
- Create the epic ticket first
- Create subtask tickets linked to it
- Use to run subtasks in parallel
teams delegate - Update the epic with synthesized results
undefined对于多部分工件(例如Delphi = N个Oracle研究 + 综合分析):
- 首先创建史诗工单
- 创建关联到它的子任务工单
- 使用并行运行子任务
teams delegate - 将综合结果更新到史诗工单中
undefined1. Epic
1. 史诗工单
todos_oneshot(title: "Delphi: <topic>", tags: "research,delphi", type: "epic")
todos_oneshot(title: "Delphi: <topic>", tags: "research,delphi", type: "epic")
2. Subtasks (one per oracle)
2. 子任务(每个Oracle对应一个)
todos_oneshot(title: "Oracle 1: <topic>", tags: "research,oracle", type: "task")
todos_oneshot(title: "Oracle 2: <topic>", tags: "research,oracle", type: "task")
todos_oneshot(title: "Oracle 3: <topic>", tags: "research,oracle", type: "task")
todos_oneshot(title: "Oracle 1: <topic>", tags: "research,oracle", type: "task")
todos_oneshot(title: "Oracle 2: <topic>", tags: "research,oracle", type: "task")
todos_oneshot(title: "Oracle 3: <topic>", tags: "research,oracle", type: "task")
3. teams delegate to run in parallel
3. 使用teams delegate并行运行
4. Synthesize into epic
4. 将结果综合到史诗工单
undefinedundefinedRules
规则
- No custom output directories. No ,
.oracle/,.plans/,.design-specs/,docs/postmortems/.docs/research/ - Tags are mandatory. Every artifact ticket uses tags from the taxonomy above.
- Titles are descriptive. Prefix with artifact type (Oracle:, Plan:, ADR:, etc.).
- Full content in the ticket. The ticket body IS the artifact — not a pointer to a file elsewhere.
- Link related tickets. Subtasks link to epics. Plans link to implementation tickets. Postmortems link to the incident tickets.
- 禁止使用自定义输出目录。不得创建.oracle/、.plans/、.design-specs/、docs/postmortems/、docs/research/等目录。
- 标签为必填项。每个工件工单必须使用上述分类体系中的标签。
- 标题需具有描述性。前缀需包含工件类型(Oracle:、Plan:、ADR:等)。
- 完整内容存入工单。工单正文即为工件本身——不得指向其他位置的文件。
- 关联相关工单。子工单需关联到史诗工单。计划需关联到实施工单。事后分析需关联到事件工单。