status

status is a skill for Claude Code from MadAppGang/claude-code. It costs 13 tokens per session (1,263 once invoked), scanned A, original, MIT.

A read-only project-status reporter for Conductor, a project-workflow system. It scans tracks and plans to summarize progress, current work, and blocked tasks.

In plain words
What is it for?
Use it to inspect project plans, calculate progress, find blockers, and decide the next action.
Why use it?
It gives you a single view of what is complete, in progress, pending, or blocked across the project.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the conductor plugin — 6 skills, 3 commands shipped together

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 skills/madappgang/claude-code/status
Any agent
npx skills add MadAppGang/claude-code --skill status
Clone the repo
git clone --depth 1 https://github.com/MadAppGang/claude-code

Made for: Claude Code.

Or install conductor, the plugin that ships this one along with the rest of its 6 skills, 3 commands.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for status

README.md
[![agentmods](https://agentmods.dev/badge/skills/madappgang/claude-code/status.svg)](https://agentmods.dev/skills/madappgang/claude-code/status)
Your own site
<a href="https://agentmods.dev/skills/madappgang/claude-code/status"><img src="https://agentmods.dev/badge/skills/madappgang/claude-code/status.svg" alt="Measured on agentmods" height="20"></a>
Per session 13 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,263 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.1 $0.00013 $0.01263
Opus 5 $0.00006 $0.00632
Sonnet 5 $0.00003 $0.00253
Haiku 4.5 $0.00001 $0.00126

Measured 2d ago against content hash 3df7db5f5f92, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-05, 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 2d ago.

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.

plugins/conductor/skills/status/SKILL.md · 185 lines

How it starts

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

plugin: conductor updated: 2026-01-20

<read_only>
  This skill ONLY reads files.
  It does NOT modify any conductor/ files.
  For modifications, use other skills.
</read_only>

<comprehensive_scan>
  Parse ALL of:
  - conductor/tracks.md (index)
  - conductor/tracks/*/plan.md (all plans)
  - conductor/tracks/*/metadata.json (state)
</comprehensive_scan>

</critical_constraints>

<core_principles> Always end with clear "Next Action" recommendation. Don't just report status, guide next step.

<principle name="Blocker Visibility" priority="high">
  Prominently display any blocked tasks.
  Blockers need attention.
</principle>

</core_principles>

<phase number="2" name="Analysis">
  <step>Count tasks by status: pending, in_progress, complete, blocked</step>
  <step>Calculate completion percentage per track</step>
  <step>Identify current phase and task</step>
  <step>Find any blocked tasks</step>
</phase>

<phase number="3" name="Presentation">
  <step>Display overview summary</step>
  <step>Show per-track details</step>
  <step>Highlight blockers if any</step>
  <step>Recommend next action</step>
</phase>

Example:

  • Total tasks: 15
  • Completed: 6
  • In Progress: 1
  • Pending: 8
  • Completion: 40%
  </progress_calculation>

  <status_priority>
    Display order by priority:
    1. BLOCKED tasks (need attention)
    2. IN_PROGRESS tasks (current work)
    3. Active tracks summary
    4. Completed tracks (brief)
  </status_priority>
</knowledge>

<examples>
  <example name="Single Active Track">
    <user_request>What's my status?</user_request>
    <correct_output>
      ## Conductor Status

      ### Active Tracks: 1

      **feature_auth_20260105** - User Authentication
      - Progress: [========------] 53% (8/15 tasks)
      - Phase: 2/4 - Core Authentication
      - Current: 2.3 Create login endpoint
      - Blockers: None

      ### Next Action
      Continue task 2.3 (Create login endpoint) in feature_auth track.
      Run: `conductor:implement`
    </correct_output>
  </example>

  <example name="Multiple Tracks with Blocker">
    <user_request>Show me the status</user_request>
    <correct_output>
      ## Conductor Status

      ### BLOCKERS (1)
      - **feature_auth_20260105** Task 2.4: "Waiting for API key from team lead"

      ### Active Tracks: 2

      **feature_auth_20260105** - User Authentication
      - Progress: [=======-------] 47% (7/15 tasks)
      - Phase: 2/4 - Core Authentication
      - Status: BLOCKED at 2.4

      **bugfix_login_20260104** - Login redirect fix
      - Progress: [==============] 100% (5/5 tasks)
      - Status: Ready for review

      ### Next Action
      Resolve blocker in feature_auth (Task 2.4) or complete review of bugfix_login.
    </correct_output>
  </example>
</examples>

Read the full file on GitHub · 185 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. 2d ago First seen · 185 lines · 13 tokens per session scan A 3df7db5f5f92

Subscribe to this mod's changes

status is a skill published in the GitHub repository MadAppGang/claude-code (279 stars, last pushed 5mo ago), licensed MIT. It adds 13 tokens to every session and 1,263 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-09-03.

Related

Other skills, from other repositories

progress-evaluation

Evaluates project progress by analyzing workspace structure, code completeness, and comparing against planned milestones. Outputs structured progress reports.

pan94u/forge · 27 tokens

status-card-query

Create and maintain agent-authored Paperclip status cards, or compile a prose interest prompt into bounded CompanySearchQuery objects and write the first summary from the assigned Summarizer run.

paperclipai/paperclip · 40 tokens

geo-compare

Monthly delta tracking and progress reporting for GEO clients. Compares two GEO audits (baseline vs. current), calculates score improvements across all categories, tracks action item completion, and generates a "here's your progress" client report. Use when user says "compare", "delta", "monthly report", "progress"…

zubair-trabzada/geo-seo-claude · 89 tokens

game-selection

当用户困惑「为什么有人攻击我/为什么大家卷来卷去/我怎么不在乎别人眼光/为什么妒忌」时调用。 核心理念: 人生同时存在零和地位游戏、正和财富游戏、单人游戏; 识别你玩的是哪种游戏, 避免地位游戏, 回到内在记分卡。 不适用于: 具体竞争策略制定(如何赢下某个比赛)。 Triggers: 地位/攀比/内卷/妒忌/别人怎么看我/零和/单人游戏/status game/envy.

kangarooking/cangjie-skill · 134 tokens

weekly-update

6-8 页横向滑动周报: 已发布 / 进行中 / 阻塞 / 指标 / 求助.

nexu-io/html-anything · 30 tokens

inbox_check

Check aimail inbox status across AIPass branches.

AIOSAI/AIPass · 14 tokens