gspdev-prompt-audit

gspdev-prompt-audit is a skill for Claude Code from jubscodes/get-shit-pretty. It costs 40 tokens per session (1,576 once invoked), scanned A, original, MIT.

An AI-based review for finding unclear, redundant, contradictory, or overly demanding instructions in GSP skills and agents. GSP is a framework of reusable instructions and coding agents.

In plain words
What is it for?
Use it to review all skills and agents, only skills, only agents, or one named component. It first checks the automated prompt baseline, then performs a meaning-focused review.
Why use it?
Automated tests can check structure, but they may miss instructions that are technically valid yet confusing or no longer useful.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter.

Needs its repository: it runs a file that does not travel with it, so clone the repository first. The line is bash dev/scripts/audit-tests.sh prompts.

Good fit Use it to review all skills and agents, only skills, only agents, or one named component. It first checks the automated prompt baseline, then performs a meaning-focused review.

Compare 6 skills from other repositories ↓
Install

Getting it into your agent

It runs from inside its repository, so the clone comes first — what it calls does not travel with the file alone.

Clone the repo
git clone --depth 1 https://github.com/jubscodes/get-shit-pretty
agentmods
npx agentmods add skills/jubscodes/get-shit-pretty/gspdev-prompt-audit

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 gspdev-prompt-audit

README.md
[![agentmods](https://agentmods.dev/badge/skills/jubscodes/get-shit-pretty/gspdev-prompt-audit/github.svg)](https://agentmods.dev/skills/jubscodes/get-shit-pretty/gspdev-prompt-audit)
Your own site
<a href="https://agentmods.dev/skills/jubscodes/get-shit-pretty/gspdev-prompt-audit"><img src="https://agentmods.dev/badge/skills/jubscodes/get-shit-pretty/gspdev-prompt-audit/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 gspdev-prompt-audit

Your own site · 80×15
<a href="https://agentmods.dev/skills/jubscodes/get-shit-pretty/gspdev-prompt-audit"><img src="https://agentmods.dev/badge/skills/jubscodes/get-shit-pretty/gspdev-prompt-audit.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 40 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,576 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.00040 $0.01576
Opus 5 $0.00020 $0.00788
Sonnet 5 $0.00008 $0.00315
Haiku 4.5 $0.00004 $0.00158

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

Security

Grade A, and why

gspdev-prompt-audit 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 10d 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.

dev/skills/gspdev-prompt-audit/SKILL.md · 187 lines

How it starts

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

This skill performs semantic analysis that automated tests (P1–P7 in audit-tests.sh) can't catch. It evaluates meaning, not just structure.

Principle: "Your AI setup should be getting simpler over time — addition by subtraction."

Source layout:

  • gsp/skills/*/SKILL.md — 34 skills
  • gsp/agents/gsp-*.md — 15 agents

Step 1: Parse scope

$ARGUMENTS determines what to analyze:

  • all or empty — analyze everything (skills → agents → cross-file)
  • skills — skills only
  • agents — agents only
  • specific name (e.g. gsp-project-designer) — analyze that one file + its paired skill/agent

Step 2: Run automated baseline first

bash dev/scripts/audit-tests.sh prompts

Note the warnings — they provide structural context for the semantic analysis.

Step 3: Per-file semantic analysis

For each file in scope, read it fully and evaluate against these 5 criteria:

3a: Dead weight

Instructions the model already follows without being told. Examples:

  • "Write clean, maintainable code" — Claude does this by default
  • "Be helpful and thorough" — core model behavior
  • "Follow best practices" — too vague to add value
  • "Ensure high quality output" — the model always tries to

Test: Would removing this instruction change the output? If no → dead weight.

3b: Contradictions

Rules that conflict within the same file or between a skill and its spawned agent. Examples:

  • "Be concise" + "Explain every decision in detail"
  • "Use bullet points" + later requiring paragraph-format output
  • Skill says "keep output under 100 lines" but agent says "be thorough and complete"

Read the full file on GitHub · 187 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. 10d ago First seen · 187 lines · 40 tokens per session scan A b22b5f8e0211

Subscribe to this mod's changes

gspdev-prompt-audit is a skill published in the GitHub repository jubscodes/get-shit-pretty (54 stars, last pushed 3mo ago), licensed MIT. It adds 40 tokens to every session and 1,576 once invoked, about $0.0002 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

crit-cli

Use when an agent needs to author or reply to crit inline comments programmatically (including multi-agent workflows commenting on shared code/plans/docs/proposals), publish or unpublish a crit review with crit share, sync a crit review to or from a GitHub PR or GitLab MR, or read/interpret a crit review JSON file.…

tomasz-tomczyk/crit · 110 tokens

crit

Review code changes, a plan, a live page (running dev server), or a local HTML file with Crit inline comments and structured human feedback. Use only when the user explicitly invokes /crit or directly asks to use Crit; a generic review request does not count.

tomasz-tomczyk/crit · 55 tokens

crit-story

Author a crit story and continue the interactive review loop only when the user explicitly invokes crit-story or directly asks you to generate a crit story. Do not infer this skill from generic review, PR, or diff-review requests.

tomasz-tomczyk/crit · 47 tokens

patch-edit

Apply one rewrite-plan step at a time as small reviewable file edits, never rewriting whole files when a localised change suffices.

wolfenazz/YzPzCode · 30 tokens

microservices-architecture

Guides service boundary analysis, communication pattern selection, data consistency design, API contract strategy, and resilience checklist for microservices systems. Complements the microservices fragment. Invoked when the user asks to design a microservices system, split a monolith, or review service boundaries.

soulcodex/agentic · 61 tokens

relational-database-design

Designs or reviews a relational database schema for a given domain. Covers table structure, normalization, indexes, constraints, and migration strategy. Invoked when the user asks to design a schema, review a database structure, or optimize a data model.

soulcodex/agentic · 55 tokens