development-pipeline

Compare original and translation side by side

🇺🇸

Original

English
🇨🇳

Translation

Chinese

Development Pipeline Skill

开发流程技能

Complete knowledge of the 9-phase development pipeline
掌握完整的九阶段开发流程知识

When to Use

适用场景

  • When user says "I have little development experience"
  • When using
    /pipeline-*
    commands
  • When asked "How do I start development?", "What's the order?"
  • When starting a new project from scratch
  • 当用户表示“我几乎没有开发经验”时
  • 当使用
    /pipeline-*
    命令时
  • 当被问到“我该如何开始开发?”、“开发顺序是什么?”时
  • 从零开始启动新项目时

Optional Application Principle

可选应用原则

This skill is optional, not mandatory.

Activation conditions:
- When non-developers/beginner developers start development
- When user explicitly requests guidance
- When /pipeline-start command is used

Deactivation conditions:
- When experienced developers want to "proceed freely"
- For non-development AI work (documentation, analysis, etc.)
- For existing project maintenance/bug fixes
本技能为可选技能,非强制使用。

激活条件:
- 非开发人员/入门级开发人员开始开发时
- 用户明确请求指导时
- 使用 /pipeline-start 命令时

停用条件:
- 资深开发人员希望“自由推进”时
- 非开发类AI工作(文档、分析等)时
- 现有项目维护/Bug修复时

9-Phase Pipeline Overview

九阶段开发流程概览

Phase 1: Schema/Terminology ──→ Define data structures and domain terms
Phase 2: Coding Convention ────→ Define code writing rules
Phase 3: Mockup Development ───→ Feature validation with HTML/CSS/JS + JSON
Phase 4: API Design/Impl ──────→ Backend API + Zero Script QA
Phase 5: Design System ────────→ Build component system
Phase 6: UI Implementation ────→ Actual UI implementation and API integration
Phase 7: SEO/Security ─────────→ Search optimization and security hardening
Phase 8: Review ───────────────→ Architecture/convention quality verification
Phase 9: Deployment ───────────→ Production deployment
Phase 1: Schema/Terminology ──→ 定义数据结构和领域术语
Phase 2: Coding Convention ────→ 定义代码编写规范
Phase 3: Mockup Development ───→ 使用HTML/CSS/JS + JSON进行功能验证
Phase 4: API Design/Impl ──────→ 后端API + 零脚本测试
Phase 5: Design System ────────→ 构建组件系统
Phase 6: UI Implementation ────→ 实际UI开发与API集成
Phase 7: SEO/Security ─────────→ 搜索优化与安全加固
Phase 8: Review ───────────────→ 架构/规范质量验证
Phase 9: Deployment ───────────→ 生产环境部署

Relationship with PDCA (Key Concept)

与PDCA的关系(核心概念)

❌ Wrong understanding: Mapping entire Pipeline to PDCA
❌ (Plan=Phase1-3, Do=Phase4-6, Check=Phase7-8, Act=Phase9)

✅ Correct understanding: Run PDCA cycle within each Phase

Phase N
├── Plan: Plan what to do in this Phase
├── Design: Detailed design
├── Do: Execute/implement
├── Check: Verify/review
└── Act: Confirm and move to next Phase
❌ 错误理解:将整个开发流程映射到PDCA
❌ (Plan=第1-3阶段, Do=第4-6阶段, Check=第7-8阶段, Act=第9阶段)

✅ 正确理解:在每个阶段内运行PDCA循环

第N阶段
├── Plan:规划本阶段的工作内容
├── Design:详细设计
├── Do:执行/开发
├── Check:验证/评审
└── Act:确认完成并进入下一阶段

Phase Application by Level

分阶段应用层级

PhaseStarterDynamicEnterprise
1. Schema/TermsSimpleDetailedDetailed
2. ConventionBasicExtendedExtended
3. MockupOOO
4. API-bkend.aiDirect impl
5. Design SystemOptionalOO
6. UI + APIStatic UIIntegrationIntegration
7. SEO/SecuritySEO onlyOO
8. Review-OO
9. DeploymentStatic hostingVercel etc.K8s
阶段入门级动态级企业级
1. Schema/Terms简单定义详细定义详细定义
2. Convention基础规范扩展规范扩展规范
3. Mockup
4. API-使用bkend.ai直接开发
5. Design System可选
6. UI + API静态UI集成开发集成开发
7. SEO/Security仅SEO
8. Review-
9. Deployment静态托管使用Vercel等平台使用K8s

Starter Level Flow

入门级流程

Phase 1 → 2 → 3 → 5(optional) → 6(static) → 7(SEO) → 9
阶段1 → 2 → 3 → 5(可选) → 6(静态) → 7(SEO) → 9

Dynamic Level Flow

动态级流程

Phase 1 → 2 → 3 → 4(bkend.ai) → 5 → 6 → 7 → 8 → 9
阶段1 → 2 → 3 → 4(bkend.ai) → 5 → 6 → 7 → 8 → 9

Enterprise Level Flow

企业级流程

Phase 1 → 2 → 3 → 4(direct impl) → 5 → 6 → 7 → 8 → 9
阶段1 → 2 → 3 → 4(直接开发) → 5 → 6 → 7 → 8 → 9

Phase Deliverables Summary

阶段交付物汇总

PhaseKey Deliverables
1
docs/01-plan/schema.md
,
terminology.md
2
CONVENTIONS.md
,
docs/01-plan/naming.md
3
mockup/
folder,
docs/02-design/mockup-spec.md
4
docs/02-design/api-spec.md
,
src/api/
5
components/ui/
,
docs/02-design/design-system.md
6
src/pages/
,
src/features/
7
docs/02-design/seo-spec.md
,
security-spec.md
8
docs/03-analysis/architecture-review.md
9
docs/04-report/deployment-report.md
阶段核心交付物
1
docs/01-plan/schema.md
,
terminology.md
2
CONVENTIONS.md
,
docs/01-plan/naming.md
3
mockup/
文件夹,
docs/02-design/mockup-spec.md
4
docs/02-design/api-spec.md
,
src/api/
5
components/ui/
,
docs/02-design/design-system.md
6
src/pages/
,
src/features/
7
docs/02-design/seo-spec.md
,
security-spec.md
8
docs/03-analysis/architecture-review.md
9
docs/04-report/deployment-report.md

Related Skills

相关技能

  • phase-1-schema/
    ~
    phase-9-deployment/
    : Detailed guides per Phase
  • pdca-methodology/
    : How to apply PDCA
  • starter/
    ,
    dynamic/
    ,
    enterprise/
    : Level-specific knowledge
  • phase-1-schema/
    ~
    phase-9-deployment/
    : 各阶段详细指南
  • pdca-methodology/
    : PDCA应用方法
  • starter/
    ,
    dynamic/
    ,
    enterprise/
    : 对应层级的专属知识