專案管理生命週期
Notion從構想到交付的產品開發完整流程。
5 個節點 · 5 條連接notion templates
notiontemplate
視覺化
產品構想human
↓sequential→ 撰寫規格文件
撰寫規格文件human
↓sequential→ 開發實作
開發實作agent
↓sequential→ 程式碼審查
程式碼審查human
↓sequential→ 部署至正式環境
↓fallback→ 開發實作
部署至正式環境cicd
ex-project-management.osop.yaml
osop_version: "1.0"
id: "project-management"
name:"專案管理生命週期"
description:"從構想到交付的產品開發完整流程。"
tags: [notion, template]
nodes:
- id: "idea"
type: "human"
name: "產品構想"
- id: "spec"
type: "human"
name: "撰寫規格文件"
- id: "dev"
type: "agent"
name: "開發實作"
- id: "review"
type: "human"
name: "程式碼審查"
- id: "ship"
type: "cicd"
name: "部署至正式環境"
edges:
- from: "idea"
to: "spec"
mode: "sequential"
- from: "spec"
to: "dev"
mode: "sequential"
- from: "dev"
to: "review"
mode: "sequential"
- from: "review"
to: "ship"
mode: "sequential"
- from: "review"
to: "dev"
mode: "fallback"
label: "Needs revision"