From plangate
Show current phase, task progress, and orchestration state. Use when the user says 'status', 'progress', 'where are we', or 'what's left'.
How this skill is triggered — by the user, by Claude, or both
Slash command
/plangate:statusThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Provides a quick snapshot of where you are in the plangate workflow: which phase is active, which tasks are done, and what stage the orchestrator reached. Read-only — no side effects.
Provides a quick snapshot of where you are in the plangate workflow: which phase is active, which tasks are done, and what stage the orchestrator reached. Read-only — no side effects.
Read the current git branch:
git branch --show-current
Parse feat/phase-{N}-... to extract the phase number. If not on a phase branch, report "No active phase (on branch: {name})".
If PLAN.md exists, scan it for:
- [x]), and remaining tasks (- [ ])If no PLAN.md exists, report "No PLAN.md found".
If .plangate/orchestration-state.json exists, read it and extract:
If no state file exists, report "No active orchestration".
Output in this format:
## Plangate Status
**Branch:** feat/phase-2-core-api
**Phase:** 2 — Core API Endpoints
**Status:** In Progress
### Task Progress
| # | Task | Status |
|---|------|--------|
| 2.1 | Create user model | Done |
| 2.2 | Add auth endpoints | In Progress (gate) |
| 2.3 | Protected route middleware | Pending |
Progress: 1/3 tasks complete
### Orchestration
Current task: 2.2 — Add auth endpoints
Current stage: gate (retry 1/2)
Started: 2026-02-08T14:30:00Z
If no orchestration is active:
## Plangate Status
**Branch:** feat/phase-2-core-api
**Phase:** 2 — Core API Endpoints
**Status:** In Progress
### Task Progress
| # | Task | Status |
|---|------|--------|
| 2.1 | Create user model | Done |
| 2.2 | Add auth endpoints | Pending |
| 2.3 | Protected route middleware | Pending |
Progress: 1/3 tasks complete
No active orchestration. Run `/plangate:orchestrate 2` to continue.
This skill never modifies files, creates branches, or runs commands. It only reads and reports.
Output should be scannable in under 5 seconds. No verbose explanations — just the current state.
plangate:orchestrate (check progress) and plangate:phase (lifecycle management)npx claudepluginhub bishnubista/plangate --plugin plangateDisplays project status, roadmap progress, blockers, and next-action suggestions based on workflow state. Use for progress checks and orientation.
Displays Plan-Build-Run project status dashboard, progress, blockers from .planning files, and suggests next actions.
Guides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.