Views pipeline progress and recommends next steps.

Install

mkdir -p .claude/skills/ace-status && curl -L -o skill.zip "https://agentskills.codes/api/skills/download/13285" && unzip -o skill.zip -d .claude/skills/ace-status && rm skill.zip

Installs to .claude/skills/ace-status

Activation

This is the description your AI agent reads to decide when to run this skill — the better it matches your request, the more reliably it fires.

파이프라인 현황 조회 + 다음 액션 안내
22 charsno explicit “when” trigger
Beginner

Key capabilities

  • Read `.ace/profile.yaml` to identify project name, pack, and mode
  • Collect task status from `workspace/tasks/taskIndex.json`
  • Check for artifacts in `workspace/current/` for untracked work
  • Verify existence and `status` frontmatter of pipeline artifacts
  • Output current status of dev and biz pipelines
  • Suggest next commands for proceeding with tasks

How it works

The skill reads project metadata and task statuses to display a summary of the development and business pipelines. It then suggests the next appropriate commands based on the current progress.

Inputs & outputs

You give it
Project profile, task index, and workspace artifacts
You get back
Formatted status of dev/biz pipelines, suggested next actions

When to use ace-status

  • Checking project progress
  • Finding next tasks
  • Reviewing pipeline status

About this skill

/ace status — 파이프라인 현황 + 다음 액션

사용법

/ace-status

목적

현재 프로젝트의 dev/biz 파이프라인 진행 상태를 한눈에 보여주고, 다음에 실행할 명령어를 안내한다. 태스크 번호 기반(workspace/tasks/{번호})과 번호 없는 현재 작업(workspace/current)을 모두 지원한다.

실행 흐름

Step 1: 프로필 확인

.ace/profile.yaml을 읽어 프로젝트명, 팩, 모드를 파악한다.

Step 2: 태스크 현황 수집

workspace/tasks/taskIndex.json을 읽고, 동시에 workspace/current/의 산출물도 확인한다. 태스크가 없고 workspace/current/ 산출물도 없으면:

아직 태스크가 없습니다.
→ /ace-task start <이슈번호>  태스크 생성
→ 또는 번호 없이 $ace-analyze / $ace-research 로 workspace/current 작업 시작

Step 3: 산출물 상태 확인

각 태스크 폴더에서 산출물 파일의 존재 여부와 frontmatter status를 확인한다. 번호 없는 작업은 workspace/current/에서 같은 파일명을 확인한다.

dev 파이프라인 체크:

  • analysis.md → analyze 단계
  • design.md → design 단계
  • development.md → dev 단계
  • test.md → test 단계
  • workspace/wiki/work-log.md → wiki 기록

biz 파이프라인 체크:

  • research.md → research 단계
  • model.md → model 단계
  • plan.md → plan 단계
  • judgement.md → judge 단계

Step 4: 현황 출력

아래 형식으로 출력한다:

═══ {프로젝트명} 파이프라인 현황 ═══

[dev] 분석 → 설계 → 구현 → 검증
  {상태} analyze → {상태} design → {상태} dev → {상태} test

[biz] 리서치 → 모델링 → 계획 → 판단
  {상태} research → {상태} model → {상태} plan → {상태} judge

상태 아이콘:
  ✓ = 완료 (status: done)
  ◆ = 진행 중 (status: in_progress)
  ○ = 대기

[다음 액션]
→ /ace-{다음스킬}  {설명}

완료 시 출력

상태 조회 결과만 출력하고 파일은 수정하지 않는다. Claude Code에서는 /ace-*, Codex에서는 $ace-* 표기로 같은 스킬을 호출할 수 있음을 함께 안내한다. 태스크 작업과 current 작업이 모두 있으면 최근 수정 시간이 더 최신인 쪽을 기본 다음 액션으로 제안한다.

Step 5: 다음 액션 결정

dev 파이프라인 다음 액션:

현재 상태다음 명령설명
태스크 없음/ace-task start태스크 생성
analyze ○/ace-analyze 또는 /ace-dev-quick분석 시작 또는 바로 개발
analyze ✓, design ○/ace-design설계 시작
design ✓, dev ○/ace-dev구현 시작
dev ✓, test ○/ace-test테스트 시작
test ✓, wiki 미갱신/ace-wiki작업 이력/결정 기록
test ✓완료! 커밋/PR 진행-
어딘가 ◆해당 스킬 재실행 (이어하기)중단된 곳에서 이어서

biz 파이프라인 다음 액션:

현재 상태다음 명령설명
research ○/ace-research시장/경쟁/고객 리서치
research ✓, model ○/ace-model비즈니스 모델 설계
model ✓, plan ○/ace-plan실행 계획 수립
plan ✓, judge ○/ace-judgeGo/No-Go 판단
judge ✓판단 완료! 결과에 따라 행동-
어딘가 ◆해당 스킬 재실행 (이어하기)중단된 곳에서 이어서

토큰 안내

마지막에 항상 다음 문구를 포함한다:

💡 다음 작업을 진행할까요? (토큰이 소모됩니다)

사용자가 명시적으로 승인한 후에만 다음 스킬을 실행한다.

규칙

  • 이 스킬은 읽기 전용 — 파일을 수정하지 않는다.
  • 토큰 소모를 최소화하기 위해 파일은 frontmatter만 읽는다 (전체 내용 불필요).
  • 태스크가 여러 개면 가장 최근 업데이트된 태스크를 기본으로 보여준다.

When not to use it

  • When the user wants to modify files
  • When the user wants to create new tasks
  • When the user wants to perform detailed analysis or research

Limitations

  • This skill is read-only and does not modify any files.
  • It minimizes token consumption by only reading frontmatter of files.
  • It only outputs the status and suggestions, not the execution of the next skill.

How it compares

This skill provides a consolidated view of project progress across both development and business phases, offering actionable next steps, which simplify workflow management compared to manual status checks.

Compared to similar skills

ace-status side by side with the closest alternatives in the catalog.

SkillInstallsUpdatedSafetyDifficulty
ace-status (this skill)0No flagsBeginner
linear102moNo flagsBeginner
zapier-workflows118moReviewBeginner
attio-skill-generator77moReviewIntermediate

Try saying

Example prompts that trigger this skill in your AI assistant.

You might also like

linear

lobehub

Linear issue management guide. Use when working with Linear issues, creating issues, updating status, or adding comments. Triggers on Linear issue references (LOBE-xxx), issue tracking, or project management tasks. Requires Linear MCP tools to be available.

10117

zapier-workflows

davila7

Manage and trigger pre-built Zapier workflows and MCP tool orchestration. Use when user mentions workflows, Zaps, automations, daily digest, research, search, lead tracking, expenses, or asks to "run" any process. Also handles Perplexity-based research and Google Sheets data tracking.

11101

attio-skill-generator

kesslerio

Generate use-case-specific Attio workflow skills from templates. Use when creating new skills for lead qualification, deal management, customer onboarding, or custom Attio workflows.

7100

automation-brainstorm

MacroMan5

Interactive workflow design advisor for Power Automate, n8n, Make, Zapier and other platforms. Guides users through planning automation workflows with smart questions about triggers, actions, data flow, and error handling. Uses research sub-agent to find best practices and generates detailed implementation plan. Triggers when user mentions "create workflow", "build flow", "design automation", "need ideas for", or describes workflow requirements without having a complete design.

778

daily-briefing

anthropics

Start your day with a prioritized sales briefing. Works standalone when you tell me your meetings and priorities, supercharged when you connect your calendar, CRM, and email. Trigger with "morning briefing", "daily brief", "what's on my plate today", "prep my day", or "start my day".

761

jira

davila7

Use when the user mentions Jira issues (e.g., "PROJ-123"), asks about tickets, wants to create/view/update issues, check sprint status, or manage their Jira workflow. Triggers on keywords like "jira", "issue", "ticket", "sprint", "backlog", or issue key patterns.

1152

Search skills

Search the agent skills registry