LogoSkills

/cc-product:status — 프로젝트 진행 현황판

`.pipeline/` 기록을 읽어 6단계(Discovery→Launch) 중 현재 위치·단계별 상태·지금까지 생성된 문서 목록·바로 이어 실행할 명령을 현황판으로 보여줍니다 — 읽기 전용.

/cc-product:status — 프로젝트 진행 현황판#

항목내용
실행 명령/cc-product:status
분류파이프라인
난이도●○○ 간단

한마디로#

지금 프로젝트가 전체 과정 중 어디까지 왔는지 한눈에 보여주는 현황판입니다. 택배 배송 조회처럼 "지금 어느 단계, 다음은 뭐"를 알려준다고 보면 됩니다.

누가·언제 쓰나요#

  • 진행 중인 프로젝트가 지금 어디까지 왔는지 궁금할 때
  • 다음에 어떤 단계를 해야 하는지 확인하고 싶을 때
  • 여러 프로젝트를 한꺼번에 비교해 보고 싶을 때

무엇을 해주나요#

.pipeline/ 폴더에 저장된 진행 기록을 읽어서, 보기 좋은 현황판(대시보드) 으로 정리해 줍니다. 보여주는 내용은:

  • 현재 위치 — 6단계(Discovery → Planning → Design → Breakdown → Development → Launch) 중 지금 어디인지
  • 단계별 상태 — 각 단계가 완료(✅) / 진행 중(🔄) / 대기(⏳) / 건너뜀(⏭️) / 실패(❌) 중 무엇인지
  • 만들어진 결과물 — 지금까지 생성된 문서 파일 목록(예: docs/prd-community.md)
  • 다음 할 일 — 바로 이어서 실행할 다음 명령

어떻게 쓰나요#

# 지금 작업 중인 프로젝트 현황
/cc-product:status

# 특정 프로젝트 현황 (프로젝트 이름 지정)
/cc-product:status community

# 모든 프로젝트를 한 번에 목록으로
/cc-product:status --all

# 더 자세히 보기 (결과물·관문 통과 여부까지)
/cc-product:status --detail
  • 이름(community 같은 슬러그)을 붙이면 그 프로젝트만 봅니다.
  • --all 을 붙이면 모든 프로젝트의 진행률을 막대그래프로 한눈에 비교합니다.
  • --detail 을 붙이면 각 단계의 시작·완료 시각, 결과물 파일, 관문(Gate) 통과 여부까지 자세히 보여줍니다.

안에서 무슨 일이 벌어지나요#

  1. .pipeline/ 폴더에서 진행 기록 파일을 찾아 읽습니다.
  2. 그 안의 정보를 해석해 현재 상태를 추려냅니다.
  3. 보기 좋은 현황판으로 화면에 출력합니다.

⚙️ 상세 옵션·실행 명세 (개발자 / AI 에이전트용)

Triggers#

  • When you want to check pipeline progress
  • When checking the next stage

Usage#

# Current project status
/cc-product:status

# Specific project status
/cc-product:status community

# All project list
/cc-product:status --all

Parameters#

ParameterRequiredDescriptionExample
slugNoProject slugcommunity

Options#

OptionDefaultDescription
--allfalseList all projects
--detailfalseShow artifacts and gate details

Execution Flow#

  1. Query state file(s) from .pipeline/ directory
  2. Parse YAML to extract state information
  3. Output visual dashboard

Output Format#

Single Project#

📊 Pipeline: Community Feature (community)
   Level: 3 | Created: 2025-01-15Discovery    ──→  ✅ Planning    ──→  🔄 Design
   ──→  ⏳ Breakdown  ──→  ⏳ Development ──→  ⏳ Launch

   Current: Design (Solutioning Gate in progress)
   Artifacts: docs/discovery-community.md, docs/prd-community.md
   Next: /cc-product:breakdown

Status Icons#

IconStatus
pending
🔄in-progress
completed
⏭️skipped
failed

All Projects (--all)#

📊 Pipeline Status

   community     [████████░░░░] Stage 3/6 (Design)
   auth-system   [████████████] Complete
   admin-panel   [██░░░░░░░░░░] Stage 1/6 (Discovery)

Detail Mode (--detail)#

Per stage:

  • Start/completion time
  • Artifact list (file existence status)
  • Gate pass status and check items
  • Skip reason (if applicable)