AgentSkillsCN

development-pipeline

全面掌握 9 阶段开发流程。 当用户对开发顺序一无所知,或正着手启动新项目时,请使用此技能。 触发条件:开发流程、阶段、开发顺序、从何处入手、 先做什么、如何开始、新项目、 개발 파이프라인、뭐부터、어디서부터、순서、시작、 開発パイプライン、何から、どこから、順序、開始、 开发流程、从哪里开始、 pipeline de desarrollo、por dónde empezar、 pipeline de développement、par où commencer、 Entwicklungs-Pipeline、wo anfangen、 pipeline di sviluppo、da dove iniziare、 请勿用于:持续性实施或缺陷修复

SKILL.md
--- frontmatter
name: development-pipeline
description: |
  9-phase Development Pipeline complete knowledge.
  Use when user doesn't know development order or starts a new project.

  Triggers: development pipeline, phase, development order, where to start,
  what to do first, how to begin, new project,
  개발 파이프라인, 뭐부터, 어디서부터, 순서, 시작,
  開発パイプライン, 何から, どこから,
  开发流程, 从哪里开始,
  pipeline de desarrollo, por dónde empezar,
  pipeline de développement, par où commencer,
  Entwicklungs-Pipeline, wo anfangen,
  pipeline di sviluppo, da dove iniziare

  Do NOT use for: ongoing implementation, bug fixes

Development Pipeline

9-Phase Development Pipeline for systematic project development

The 9 Phases

PhaseNamePurposePDCA
1SchemaDefine terminology & data structuresPlan
2ConventionSet coding rules & standardsPlan
3MockupCreate UI/UX prototypesDesign
4APIDesign & implement backend APIDo
5Design SystemBuild component libraryDo
6UI IntegrationConnect frontend to backendDo
7SEO/SecurityOptimize & secureDo
8ReviewCode & architecture reviewCheck
9DeploymentDeploy to productionAct

Phase by Level

Starter (Static Web)

code
Phase 1 → 2 → 3 → 6 → 9
(Skip: 4, 5, 7, 8)

Dynamic (Fullstack)

code
Phase 1 → 2 → 3 → 4 → 6 → 9
(Optional: 5, 7, 8)

Enterprise (Microservices)

code
Phase 1 → 2 → 3 → 4 → 5 → 6 → 7 → 8 → 9
(All required)

Commands

bash
# Start pipeline
/development-pipeline start

# Check current status
/development-pipeline status

# Move to next phase
/development-pipeline next

Phase Details

Phase 1: Schema

  • Define domain terminology
  • Create data models
  • Document relationships

Phase 2: Convention

  • Naming conventions
  • Code style rules
  • Git workflow

Phase 3: Mockup

  • Wireframes
  • UI components
  • User flows

Phase 4: API

  • Endpoint design
  • Request/response schemas
  • Authentication

Phase 5: Design System

  • Component library
  • Design tokens
  • Storybook

Phase 6: UI Integration

  • Frontend implementation
  • State management
  • API integration

Phase 7: SEO/Security

  • Meta tags
  • Security headers
  • Vulnerability scan

Phase 8: Review

  • Code review
  • Architecture audit
  • Performance check

Phase 9: Deployment

  • CI/CD setup
  • Environment config
  • Go live