ghpm-status

ghpm-status is a skill for Claude Code from jackchuka/ghpm. It costs 28 tokens per session (1,057 once invoked), scanned A, original, MIT.

A health dashboard for a GitHub Project, a board used to organize development work. It summarizes workflow status, component health, team workload, and items needing attention.

In plain words
What is it for?
Use it to review project distribution, workload, attention items, or a selected team or component.
Why use it?
It gives a broader view of where work is concentrated and what may be blocked or overlooked.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter.

Not installable on its own: it reads a path above its own folder, which only exists inside its repository. The line is **PREREQUISITE:** Read `../ghpm-shared/SKILL.md` for prerequisites and error handling..

Install

Getting it into your agent

There is no command for this one: it runs only inside a plugin, and the catalogue could not identify which plugin ships it. The source is linked below.

Made for: Claude Code.

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 ghpm-status

README.md
[![agentmods](https://agentmods.dev/badge/skills/jackchuka/ghpm/ghpm-status.svg)](https://agentmods.dev/skills/jackchuka/ghpm/ghpm-status)
Your own site
<a href="https://agentmods.dev/skills/jackchuka/ghpm/ghpm-status"><img src="https://agentmods.dev/badge/skills/jackchuka/ghpm/ghpm-status.svg" alt="Measured on agentmods" height="20"></a>
Per session 28 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,057 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.00028 $0.01057
Opus 5 $0.00014 $0.00528
Sonnet 5 $0.00006 $0.00211
Haiku 4.5 $0.00003 $0.00106

Measured 6d ago against content hash 229fdb5e5053, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

Grade A, and why

ghpm-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 6d 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.

skills/ghpm-status/SKILL.md · 85 lines

How it starts

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

ghpm-status

PREREQUISITE: Read ../ghpm-shared/SKILL.md for prerequisites and error handling.

Comprehensive project health dashboard. The goal is to give the user a rich, actionable overview — not just counts, but breakdowns that surface where work is concentrated, who's overloaded, and what needs attention. Think of this as the dashboard a project manager checks every morning.

Arguments

  • /ghpm-status — full dashboard for the project
  • /ghpm-status <scope> — scoped to a team or component name (matched against field options in .ghpm/config.json)

Workflow

Phase 1: Load Config and Cache

Follow the startup sequence in ../ghpm-shared/SKILL.md and load cache per ../ghpm-shared/references/cache.md.

Phase 2: Aggregate

Count items by workflow column (using the workflow.field name from config to find the matching field on each item). Include a count for items with no status.

If a scope argument was provided, filter items first:

  • Match the argument against all field option names in .ghpm/config.json (case-insensitive).
  • If no exact match, try semantic/fuzzy matching. The user may use informal or umbrella terms that don't match any single field option but logically group several. Use your understanding of the project's team/component names to infer which options the user likely means, and combine them. Explain the mapping you chose (e.g., "Interpreting '' as + ").
  • If you still can't determine a reasonable match, list available options and ask the user to clarify — but try hard to infer first.
  • Filter items to only those matching the scope before aggregating.

Build the following sections from the cached items. Each section adds a different dimension of insight. Include all sections where the data exists — skip a section only if the project doesn't have that field.

Component Health

If a "Component" (or similar grouping) field exists, break down items by component × status. This reveals which areas of the project are healthy vs struggling. Show completion percentage per component and flag components with low completion or high active workload.

Read the full file on GitHub · 85 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. 6d ago First seen · 85 lines · 28 tokens per session scan A 229fdb5e5053

Subscribe to this mod's changes

ghpm-status is a skill published in the GitHub repository jackchuka/ghpm (20 stars, last pushed 5mo ago), licensed MIT. It adds 28 tokens to every session and 1,057 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-30.

Related

Other skills, from other repositories

git-pr-create

Open a GitHub pull request for the current branch using gh — conventional title, repo-template-aware body, auto-derived labels, push if needed. Use for every PR-creation request no matter how casual: "create/open/make/raise a PR", "PR this", "PR please", "send PR", "/git-pr-create", "open pull request", "ship this"…

pivoshenko/pivoshenko.ai · 229 tokens

trending-repos-discovery

Discover and analyze trending GitHub repositories from TrendShift and other sources — evaluate usefulness, extract learnings, and identify valuable skills/tools.

kevinnft/ai-agent-skills · 33 tokens

github-code-review

Comprehensive GitHub pull-request code review with multi-agent coordination. Use when reviewing a PR or diff, auditing changes for correctness/security/style before merge, or generating actionable inline review comments.

frankxai/claude-skills-library · 41 tokens

github-multi-repo

Multi-repository coordination, synchronization, and architecture management across many GitHub repos. Use when changes span several repositories, keeping repos in sync, or planning cross-repo architecture and dependency work.

frankxai/claude-skills-library · 44 tokens

github-actions-trigger

Trigger GitHub Actions workflows from Claude Code. Auto-run tests, deploy, or validate when skills like run-pre-commit-checks complete.

mahmoud20138/Tradecraft · 32 tokens

github-vesting

GitHub-gated token vesting on proofofdev.xyz — lock ANY ERC-20 on Base via API at api.proofofdev.xyz, link GitHub, repo claims. Use for github vesting, lock tokens, vesting progress, link github, proofofdev. NEVER use github-vesting.vercel.app for API.

BankrBot/skills · 77 tokens