status

A command that displays project requirements, larger work groups, and individual tasks together with their progress.

In plain words
What is it for?
It helps fetch projects, epics, and tasks through the project-management service, calculate progress and time totals, find available work, and show details for selected tasks.
Why use it?
It gives developers one overview of project status instead of requiring them to inspect each project, epic, or task separately.

Command for Claude Code

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add commands/dtannen/pm/status
Clone the repo
git clone --depth 1 https://github.com/dtannen/pm

Made for: Claude Code.

Per session 16 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,573 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00016 $0.01573
Opus 5 $0.00008 $0.00787
Sonnet 5 $0.00003 $0.00315
Haiku 4.5 $0.00002 $0.00157

Measured yesterday against content hash ee73e74754e0, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

status scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured yesterday.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.claude-plugin/commands/status.md · 194 lines

How it starts

The opening of the file, as written. The whole thing — 194 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Project Status Dashboard

Display comprehensive overview of all PRDs, epics, and tasks with progress tracking.

Usage

/pm:status

Instructions

Generate a comprehensive project status dashboard.

MCP Integration (preferred)

Use MCP to fetch canonical project/epic/task data instead of filesystem scans.

  • Full name: mcp__project-manager-mcp__list_projects
  • Full name: mcp__project-manager-mcp__list_epics
  • Full name: mcp__project-manager-mcp__list_tasks
  • Full name: mcp__project-manager-mcp__get_available_tasks
  • Full name: mcp__project-manager-mcp__get_task_details

Recommended flow:

  1. Fetch projects: list recent N via mcp__project-manager-mcp__list_projects.
  2. Fetch epics: mcp__project-manager-mcp__list_epics (optionally per project) and compute epic counts by status.
  3. Fetch tasks: mcp__project-manager-mcp__list_tasks (optionally filter by project/epic/status) to compute counts and hours, and to build progress metrics.
  4. Optionally use mcp__project-manager-mcp__get_available_tasks to highlight next available work and parallel opportunities.
  5. For spotlighted tasks, call mcp__project-manager-mcp__get_task_details to surface RA metadata (mode, score, dependencies) and recent log entries.

If MCP is unavailable, fall back to filesystem-based scanning below.

1. Scan PM Directories

First, use find command or direct path access to locate the .pm directory:

find . -name ".pm" -type d
# Or use absolute path if needed
ls -la .pm/

Check for existence and content of:

  • .pm/prds/ - Product Requirements Documents
  • .pm/epics/ - Technical implementation plans
  • .pm/tasks/ - Individual task files
  • .pm/config.json - Project configuration

IMPORTANT: The .pm directory may be hidden. Use ls -la or find commands to locate it properly. If directories don't exist: "⚠️ PM workflow not initialized. Run: /pm:init"

2. Collect PRD Status

For each file in .pm/prds/:

  • Read frontmatter for status, created date, description
  • Count total PRDs by status (backlog, in-progress, completed)
  • Identify most recent PRD activity

Read the full file on GitHub · 194 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. yesterday First seen · 194 lines · 16 tokens per session scan A ee73e74754e0

Subscribe to this mod's changes

status is a command published in the GitHub repository dtannen/pm (0 stars, last pushed 10mo ago), licensed MIT. It adds 16 tokens to every session and 1,573 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.