eve-job-lifecycle
Compare original and translation side by side
🇺🇸
Original
English🇨🇳
Translation
ChineseEve Job Lifecycle
Eve 任务生命周期
Use jobs as the unit of work and keep phases explicit.
将job作为工作单元,同时明确划分各个phase。
Phases
阶段
- idea -> backlog -> ready -> active -> review -> done or cancelled
- Jobs default to and can be scheduled immediately.
ready
- idea -> backlog -> ready -> active -> review -> done or cancelled
- Job默认处于状态,可立即调度。
ready
Create jobs
创建Job
eve job create --description "..."- Add details with ,
--project,--priority,--phase,--labels.--review - Create sub-jobs with .
eve job create --parent <job-id> --description "..."
eve job create --description "..."- 使用、
--project、--priority、--phase、--labels添加详细信息。--review - 使用创建子任务。
eve job create --parent <job-id> --description "..."
Update and complete
更新与完成
eve job update <id> --phase <phase>eve job submit <id> --summary "..."- or
eve job approve <id>eve job reject <id> --reason "..." eve job close <id> --reason "..."eve job cancel <id> --reason "..."
eve job update <id> --phase <phase>eve job submit <id> --summary "..."- 或
eve job approve <id>eve job reject <id> --reason "..." eve job close <id> --reason "..."eve job cancel <id> --reason "..."
Dependencies
依赖关系
eve job dep add <job> <blocking-job>- Use dependencies only for true blockers.
- Inspect with .
eve job dep list <id>
eve job dep add <job> <blocking-job>- 仅在存在真正阻塞项时使用依赖关系。
- 使用查看依赖。
eve job dep list <id>
Agent control signals
Agent 控制信号
- Emit a fenced block with
json-resultaseve.status,waiting, orsuccess.failed - Return only after dependencies exist.
waiting
- 输出一个带围栏的块,其中
json-result设为eve.status、waiting或success。failed - 仅当存在依赖关系时返回状态。
waiting
Recursive skill distillation
递归技能提炼
- Add new lifecycle patterns and edge cases as they appear.
- Split review or dependency workflows into new skills if they grow.
- Update the eve-skillpacks README and ARCHITECTURE listings after changes.
- 随着新的生命周期模式和边缘案例出现,及时添加相关内容。
- 若审核或依赖工作流变得复杂,将其拆分为新的技能。
- 变更后更新eve-skillpacks的README和ARCHITECTURE列表。