wjs-auditing-project

wjs-auditing-project is a skill for Claude Code, Codex from jianshuo/claude-skills. It costs 145 tokens per session (2,688 once invoked), scanned A, original, MIT.

A project-audit skill that checks the overall state of a software project for stalled, broken, or unfinished work.

In plain words
What is it for?
It reviews branches, pull requests, GitHub Actions, builds, TODO or roadmap files, unreleased commits, and related project drift, then presents a checklist before any fixes.
Why use it?
It helps explain why requested changes, releases, builds, or App Store submissions have not happened by checking the project’s current state and plan.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Not installable: its command points at a path on the author’s own machine, so it runs nowhere else. The line is /Users/jianshuo/code/Cathier.

Good fit It reviews branches, pull requests, GitHub Actions, builds, TODO or roadmap files, unreleased commits, and related project drift, then presents a checklist before any fixes.

Compare 6 skills from other repositories ↓
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, Codex.

Its marketplace also offers this one on its own, as the plugin wjs-auditing-project/plugin install wjs-auditing-project after adding the marketplace above.

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 wjs-auditing-project

README.md
[![agentmods](https://agentmods.dev/badge/skills/jianshuo/claude-skills/wjs-auditing-project/github.svg)](https://agentmods.dev/skills/jianshuo/claude-skills/wjs-auditing-project)
Your own site
<a href="https://agentmods.dev/skills/jianshuo/claude-skills/wjs-auditing-project"><img src="https://agentmods.dev/badge/skills/jianshuo/claude-skills/wjs-auditing-project/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for wjs-auditing-project

Your own site · 80×15
<a href="https://agentmods.dev/skills/jianshuo/claude-skills/wjs-auditing-project"><img src="https://agentmods.dev/badge/skills/jianshuo/claude-skills/wjs-auditing-project.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 145 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,688 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
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.00145 $0.02688
Opus 5 $0.00072 $0.01344
Sonnet 5 $0.00029 $0.00538
Haiku 4.5 $0.00015 $0.00269

Measured 12d ago against content hash a4f056d798d8, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

wjs-auditing-project 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 12d 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.

wjs-auditing-project/SKILL.md · 162 lines

How it starts

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

wjs-auditing-project

Overview

Holistic project-state audit. Find everything that's stalled, broken, or diverged from the plan — then fix it together after the user confirms the checklist.

Hard two-phase split:

  1. Investigate → present grouped checklist (read-only; no commits, no merges, no pushes)
  2. Fix — only after the user explicitly confirms what to do

Never collapse the phases. The user wants to see the full picture before any action. "Just go ahead and fix everything" is fine as confirmation, but you still produce the checklist first so they can scan it.

When to use

  • "看看现在的项目到底出了什么问题" / "make it right" / "what's broken"
  • "为什么我的反馈还没上线"
  • "为什么很久没有新 build / 没提交 App Store"
  • "有没有 PR / 分支没合"
  • Returning to a project after time away
  • Before a release / TestFlight push, to make sure nothing is dangling

Phase 1 — Investigate (parallel)

Run all the read-only checks in one message with parallel Bash calls. Don't ask the user which to run; run them all. Many will return "nothing wrong" — that's fine, those just don't show up in the checklist.

A. Working tree & stashes

  • git status — uncommitted work?
  • git stash list — forgotten stashes?
  • git branch -vv — local branches, ahead/behind tracking
  • git log --oneline main..HEAD — what's on current branch not in main
  • git fetch origin --prune && git log --oneline HEAD..@{upstream} — what's on remote not local
  • git branch -r --merged main and git branch -r --no-merged main — remote branches still floating

B. Open / draft PRs

  • gh pr list --state open --json number,title,isDraft,mergeable,mergeStateStatus,updatedAt,author,headRefName
  • For any PR older than 7 days OR with mergeStateStatusCLEAN: capture the failing checks via gh pr checks <num>
  • Auto-merge bot PRs (per memory: in-app feedback → @claude PR → auto-merge): gh pr list --author "app/claude" --state all --limit 20 — any merged but not yet in a TestFlight build? Any stuck open?

C. CI / GitHub Actions

  • gh run list --limit 20 --json conclusion,name,headBranch,createdAt,databaseId,event
  • gh run list --status failure --limit 10 — failures specifically
  • For each failure on main or on an open PR's branch: gh run view <id> --log-failed | tail -100 to capture the actual error

Read the full file on GitHub · 162 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. 12d ago First seen · 162 lines · 145 tokens per session scan A a4f056d798d8

Subscribe to this mod's changes

wjs-auditing-project is a skill published in the GitHub repository jianshuo/claude-skills (129 stars, last pushed 22d ago), licensed MIT. It adds 145 tokens to every session and 2,688 once invoked, about $0.0007 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

operating-cadence

Designs the rhythm an organization runs on — which reviews happen weekly, monthly and quarterly, what each one decides, who owns the numbers presented, and how a signal at the front line reaches the people who can act on it. Use this to set up a management operating system, fix a meeting calendar that produces no…

cbrock84/headcount · 95 tokens

run-history

Inspect CCAM dashboard-run history and relate live run handles to persisted Claude Code or Codex sessions. Use when finding a prior launched task, checking whether a run is still attached, reviewing start/end status, or deciding whether to resume, view, or relaunch work.

hoangsonww/Claude-Code-Agent-Monitor · 57 tokens

clash-resolution-analyzer

Analyze BIM clash detection results and suggest resolutions. Prioritize clashes, identify patterns, assign responsibility, and track resolution status.

datadrivenconstruction/DDC_Skills_for_AI_Agents_in_Construction · 30 tokens

issue-report-generator

Automatically generate clear, actionable issue reports from failing tests and repository analysis. Analyze test failures to understand expected vs. actual behavior, identify affected code components, and produce well-structured Markdown reports suitable for GitHub Issues or similar trackers. Use when a test fails…

ArabelaTso/Skills-4-SE · 82 tokens

mk:jira-analyst

Full Jira ticket context analysis via the jira-analyst agent — including media (attached images / PDFs / screenshots) and linked issues. Produces structured findings suitable for posting back as a Jira comment. Read-only. Triggers: 'analyze KEY', 'rca for KEY', 'describe KEY with media'. NOT for complexity scoring…

ngocsangyem/MeowKit · 93 tokens

postmortem-solo

Run a lightweight, blame-free postmortem after an incident, failed launch, or missed deadline — for one person. Use when the user says "that didn't go well", "the launch flopped", "we had an outage", "I missed my deadline", or wants to learn from a recent failure.

rockscy/solo-skills · 68 tokens