Provides a quick summary of active feature development status and progress.

Install

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

Installs to .claude/skills/status-dilhanz

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.

Show feature progress and status across all features
52 charsno explicit “when” trigger
Beginner

Key capabilities

  • Check if `.planning/features/` exists
  • List all feature directories
  • Extract feature name, status, and problem summary from `CONTEXT.md`
  • Extract total tasks and done tasks from `PLAN.md`
  • Identify the current phase and its status from `PLAN.md`
  • Note verification status from `VERIFY.md`

How it works

The skill reads local feature files (`CONTEXT.md`, `PLAN.md`, `VERIFY.md`) within the `.planning/features/` directory to extract and display the status, progress, and problem summaries of all active features. It also identifies the current development phase and suggests the next step.

Inputs & outputs

You give it
A request for feature status or progress
You get back
A formatted table summarizing feature status, progress, and problem summaries, with additional details for the active feature

When to use status

  • Check project progress
  • View status of all active features
  • Monitor phase completion

About this skill

Active Feature State

!for f in .planning/features/*/CONTEXT.md; do [ -f "$f" ] && d=$(dirname "$f") && echo "$(basename "$d"): $(sed -n 's/^status: *//p' "$f")"; done 2>/dev/null; true

Show the status of all features with progress details.

  1. Check if .planning/features/ exists. If not, tell the user no features have been started and suggest /ship:start "your idea".

  2. List all feature directories in .planning/features/.

  3. For each feature, read CONTEXT.md and extract:

    • Feature name (from frontmatter)
    • Status (from frontmatter)
    • Problem summary (first sentence of ## Problem)
    • Number of acceptance criteria
  4. If a PLAN.md exists, also extract:

    • Total tasks and how many are done
    • If the plan has <phase> elements, list each phase with its status and task counts
    • Identify the current phase (first phase with status != "done")
  5. If a VERIFY.md exists, note whether verification passed or found gaps.

  6. Display as a formatted summary:

## Ship Status

| Feature | Status | Progress | Summary |
|---------|--------|----------|---------|
| {name}  | {status} | {done}/{total} tasks | {problem summary} |
  1. For the active (non-done) feature, show additional detail:

    Phase progress (if phased plan):

    Phase 1: {name} — done (3/3 tasks)
    Phase 2: {name} — building (1/4 tasks) ← current
    Phase 3: {name} — pending (0/2 tasks)
    

    Next step based on status:

    • brainstormed → "Next: /ship:plan to create the implementation plan"
    • planned → "Next: /ship:plan-verify to verify the plan against the codebase"
    • plan-verified → "Next: /ship:build to start building"
    • building → "Next: /ship:build to continue building (or /ship:resume in a new session)"
    • built → "Next: /ship:verify to verify acceptance criteria"
    • done → "Feature complete! Start something new with /ship:start"

$ARGUMENTS

When not to use it

  • When asking about git status
  • When asking about non-Ship topics

Limitations

  • The skill relies on the `.planning/features/` directory structure
  • Information is extracted from specific markdown files (`CONTEXT.md`, `PLAN.md`, `VERIFY.md`)
  • Next step suggestions are based on predefined status transitions

How it compares

This skill automates the aggregation and presentation of feature progress and status from local files, providing a centralized and formatted overview, unlike manually checking individual feature documents.

Compared to similar skills

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

SkillInstallsUpdatedSafetyDifficulty
status (this skill)04moReviewBeginner
session-handoff132moReviewBeginner
spec-to-backlog84moNo flagsIntermediate
create-handoff36moReviewIntermediate

Try saying

Example prompts that trigger this skill in your AI assistant.

You might also like

session-handoff

davila7

Creates comprehensive handoff documents for seamless AI agent session transfers. Triggered when: (1) user requests handoff/memory/context save, (2) context window approaches capacity, (3) major task milestone completed, (4) work session ending, (5) user says 'save state', 'create handoff', 'I need to pause', 'context is getting full', (6) resuming work with 'load handoff', 'resume from', 'continue where we left off'. Proactively suggests handoffs after substantial work (multiple file edits, complex debugging, architecture decisions). Solves long-running agent context exhaustion by enabling fresh agents to continue with zero ambiguity.

1370

spec-to-backlog

atlassian

Automatically convert Confluence specification documents into structured Jira backlogs with Epics and implementation tickets. When Claude needs to: (1) Create Jira tickets from a Confluence page, (2) Generate a backlog from a specification, (3) Break down a spec into implementation tasks, or (4) Convert requirements into Jira issues. Handles reading Confluence pages, analyzing specifications, creating Epics with proper structure, and generating detailed implementation tickets linked to the Epic.

868

create-handoff

parcadei

Create handoff document for transferring work to another session

331

moai-workflow-project

modu-ai

Integrated project management system with documentation, language initialization, and template optimization modules. Use when setting up projects, generating documentation, configuring multilingual support, or optimizing templates.

29

granola-core-workflow-b

jeremylongshore

Post-meeting note processing and sharing workflow with Granola. Use when reviewing meeting notes, sharing with team members, or processing action items after meetings. Trigger with phrases like "granola post meeting", "share granola notes", "granola follow up", "process meeting notes", "granola action items".

00

reporting

comeredon

Final pipeline execution report format. Defines the structure, agent registry, Mermaid gantt chart, and change summary. Used by AnalystAgent in Phase 6.

00

Search skills

Search the agent skills registry