Project Management Lifecycle
NotionProduct development from idea to shipping.
5 nodes · 5 edgesnotion templates
notiontemplate
Visual
Product Ideahuman
↓sequential→ Write Spec
Write Spechuman
↓sequential→ Development
Developmentagent
↓sequential→ Code Review
Code Reviewhuman
↓sequential→ Ship to Production
↓fallback→ Development
Ship to Productioncicd
ex-project-management.osop.yaml
osop_version: "1.0"
id: "project-management"
name: "Project Management Lifecycle"
description: "Product development from idea to shipping."
tags: [notion, template]
nodes:
- id: "idea"
type: "human"
name: "Product Idea"
- id: "spec"
type: "human"
name: "Write Spec"
- id: "dev"
type: "agent"
name: "Development"
- id: "review"
type: "human"
name: "Code Review"
- id: "ship"
type: "cicd"
name: "Ship to Production"
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"