AgentSkillsCN

development-pipeline

9个阶段的开发流程概览。在启动新项目,或对开发顺序感到迷茫时使用此功能。 触发:开发流程、阶段、开发顺序、从哪里开始、 開発パイプライン、どこから、どこから始める、開発パイプライン、何から、 开发流程、从哪里开始、pipeline de desarrollo、pipeline de développement 请勿用于:特定阶段的细节(请使用$phase-N-xxx代替)。

SKILL.md
--- frontmatter
name: development-pipeline
description: |
  9-phase Development Pipeline overview. Use when starting a new project
  or unsure about development order.
  Triggers: development pipeline, phase, development order, where to start,
  개발 파이프라인, 뭐부터, 어디서부터, 開発パイプライン, 何から,
  开发流程, 从哪里开始, pipeline de desarrollo, pipeline de développement
  Do NOT use for: specific phase details (use $phase-N-xxx).

Development Pipeline Skill

9-phase Development Pipeline overview and navigation guide.

Actions

ActionDescriptionExample
overviewShow all 9 phases$development-pipeline overview
recommendRecommend pipeline for level$development-pipeline recommend starter
statusCheck current phase progress$development-pipeline status

The 9 Phases

PhaseNameSkillPurpose
1Schema$phase-1-schemaData modeling, terminology definition
2Convention$phase-2-conventionCoding standards, naming rules
3Mockup$phase-3-mockupUI/UX wireframes, screen design
4API$phase-4-apiAPI design, REST endpoints
5Design System$phase-5-design-systemComponent library, design tokens
6UI Integration$phase-6-ui-integrationFrontend-backend connection
7SEO & Security$phase-7-seo-securitySEO optimization, security hardening
8Review$phase-8-reviewCode review, architecture review
9Deployment$phase-9-deploymentCI/CD, production deployment

Pipeline by Level

Starter (Beginner)

code
Phase 1 -> 2 -> 3 -> 6 -> 9
  • Skip: Phase 4 (no API), Phase 5 (optional), Phase 7 (basic SEO only), Phase 8 (simple review)
  • Focus: Get a static site live quickly
  • Time: 1-3 days

Dynamic (Intermediate)

code
Phase 1 -> 2 -> 3 -> 4 -> 5 -> 6 -> 7 -> 9
  • Skip: Phase 8 (simplified review integrated into Phase 7)
  • Focus: Fullstack app with BaaS backend
  • Time: 3-7 days

Enterprise (Advanced)

code
Phase 1 -> 2 -> 3 -> 4 -> 5 -> 6 -> 7 -> 8 -> 9
  • All 9 phases required
  • Each phase uses PDCA cycle
  • Focus: Production-grade scalable systems
  • Time: 7-14 days (AI Native 10-Day pattern)

Phase Dependencies

code
Phase 1 (Schema)
  └── Phase 2 (Convention) - needs terminology from Phase 1
        └── Phase 3 (Mockup) - needs naming rules from Phase 2
              ├── Phase 4 (API) - needs UI understanding from Phase 3
              │     └── Phase 5 (Design System) - needs API contracts from Phase 4
              │           └── Phase 6 (UI Integration) - needs components + API
              │                 └── Phase 7 (SEO & Security) - needs working app
              │                       └── Phase 8 (Review) - needs complete app
              │                             └── Phase 9 (Deployment) - needs reviewed code
              └── Phase 6 (Starter shortcut) - static sites skip API/Design System

PDCA Integration

Each phase follows the PDCA cycle:

  1. Plan: Define goals and deliverables for the phase
  2. Design: Create detailed specifications
  3. Check/Act: Review output, iterate if needed

Use $pdca skill for PDCA workflow management within each phase.

How to Start

  1. Determine your project level: $starter, $dynamic, or $enterprise
  2. Follow the pipeline for your level
  3. Use $phase-N-xxx skills for detailed guidance in each phase
  4. Track progress with $pdca status

Common Questions

QuestionAnswer
Can I skip phases?Yes, for Starter/Dynamic levels. See pipeline above.
Can I go back to a previous phase?Yes, PDCA allows iteration. Update docs accordingly.
Which phase am I in?Run $pdca status or check .pdca-status.json
Do I need all phases for MVP?Starter pipeline (5 phases) is sufficient for MVP.