一键导入
devflow-state
Use when reading or writing devflow state during orchestrator execution, including phase tracking and stage completion.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Use when reading or writing devflow state during orchestrator execution, including phase tracking and stage completion.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
아이디어를 설계로 전환하거나, 새로운 기능을 만들거나, 구현 전 구조화된 설계가 필요한 창의적/탐색적 작업에 사용. Use when turning an idea into a design, creating a new feature, or when any creative/exploratory work needs structured design before implementation.
태스크나 unit 구현이 완료되어 머지 전 코드 리뷰가 필요할 때, 또는 사용자가 명시적으로 코드 리뷰를 요청할 때 사용. Use when a task or unit implementation is complete and needs code review before merging, or when the user explicitly requests a code review on their changes.
설계 문서를 상세 구현 계획으로 변환하거나, "구현 계획 작성", "plan 만들어줘" 요청 시 사용. INCEPTION 워크플로우 계획은 aidlc-workflow-planning 사용. Use when a design document needs to be converted into a detailed implementation plan with task breakdown, or when "구현 계획 작성", "plan 만들어줘" is requested. Not for INCEPTION workflow planning — use aidlc-workflow-planning instead.
Use when user explicitly requests "auto 모드", "자동 모드", "auto mode", or "알아서 만들어줘". 초보자를 위한 완전 자동 devflow. greenfield 전용. 요구사항 입력 → inception → construction → build-test를 자동 진행하며 각 flow 종료 시 멀티에이전트 리뷰 필수.
현재 세션에서 구현 계획을 실행할 때 사용. 독립 태스크별 신규 서브에이전트 컨텍스트 활용. Use when executing an implementation plan in the current session with independent tasks that benefit from fresh subagent context per task.
프로덕션 코드 작성, 버그 수정, 리팩토링 시 사용 — 예외 없이 RED-GREEN-REFACTOR 사이클을 강제. Use when writing any production code, fixing bugs, or refactoring — enforces RED-GREEN-REFACTOR cycle with no exceptions.
基于 SOC 职业分类
| name | devflow-state |
| description | Use when reading or writing devflow state during orchestrator execution, including phase tracking and stage completion. |
| metadata | {"version":"0.3.0","author":"Jay","category":"ai-dlc-workflow","invoke_mode":"orchestrator-only","return_behavior":"stop-no-gate","skill_nature":null,"lifecycle":"active"} |
Read and write devflow-docs/devflow-state.md to share workflow state across skills and sessions.
Always use devflow-docs/devflow-state.md relative to the project workspace root.
When creating or updating the state file, maintain this exact structure:
# devflow State
## Current Phase
<!-- 현재 단계: inception | construction | operations | complete | finished -->
[phase name]
## Current Stage
<!-- 현재 실행 중인 스테이지 이름 -->
[stage name]
## Completed Stages
<!-- 완료된 스테이지 목록 (타임스탬프 포함) -->
- [stage-name]: [ISO 8601 timestamp]
## Approved Stages
<!-- workflow-planning에서 승인된 실행 예정 스테이지 목록 (depth 포함) -->
- [stage-name]: [Minimal | Standard | Comprehensive]
## Skipped Stages
<!-- 스킵된 스테이지 및 이유 -->
- [stage-name]: [reason]
## Active Unit
<!-- 현재 Construction 단계에서 작업 중인 unit 이름 -->
[unit name or "none"]
## Completed Units
<!-- 완료된 unit 목록 -->
- [unit-name]: [ISO 8601 timestamp]
## Worktree
<!-- using-git-worktrees 실행 결과 -->
- branch: [feature/xxx | none]
- path: [.worktrees/xxx | none]
## Finishing Choice
<!-- finishing-branch 옵션 B 선택 시 기록. 옵션 A/D는 즉시 finished로 전환 -->
[B (PR pending) | none]
## PR URL
<!-- finishing-branch 옵션 B에서 PR 생성 시 기록 -->
[github-pr-url | none]
## Extension Configuration
<!-- 활성화된 extension 목록 -->
- security: [enabled | disabled]
When reading state:
devflow-docs/devflow-state.md existsWhen writing state:
When creating a new state file:
devflow-docs/ directory if it doesn't exist## Current Phase to inception## Current Stage to aidlc-workspace-detection