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.
npx agentmods add skills/muthuspark/solid-audit/dipnpx skills add muthuspark/solid-audit --skill dipgit clone --depth 1 https://github.com/muthuspark/solid-auditWhat 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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00014 | $0.02302 |
| Opus 5 | $0.00007 | $0.01151 |
| Sonnet 5 | $0.00003 | $0.00460 |
| Haiku 4.5 | $0.00001 | $0.00230 |
Grade A, and why
dip 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.
How it starts
The opening of the file, as written. The whole thing — 269 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Trigger
This skill activates when the user runs /dip (optionally with a file path argument, e.g. /dip src/services/order.py).
Scope Detection
Determine which files to analyze using this priority order:
- Argument — If the user provided a file or directory path after
/dip, use that directly. - Git staged — Run
git diff --cached --name-only. If output is non-empty, use those files. - Git unstaged — Run
git diff --name-only. If output is non-empty, use those files. - Ask user — If no git diff is available, ask for a file or directory path.
Always skip: *.lock, package-lock.json, yarn.lock, pnpm-lock.yaml, Gemfile.lock, composer.lock, **/migrations/**, **/__generated__/**, **/fixtures/**, **/*.min.js
DIP Fix Logic
Detection
A high-level module violates DIP when it depends directly on a concrete low-level implementation instead of an abstraction. Look for:
-
Concrete instantiation in constructor:
- Python:
self.db = DatabaseClient()orself.mailer = SmtpMailer(host="...")inside__init__ - TypeScript/Java:
this.db = new DatabaseClient()inside a constructor - Go:
db: NewDatabaseClient()assigned directly in a constructor function - C#:
_db = new PostgresDatabase(...)inside a constructor body - Kotlin:
val db = PostgresDatabase(...)hardcoded as a constructor body assignment - Ruby:
@db = PostgresDatabase.new(...)insideinitialize - PHP:
$this->db = new PostgresDatabase(...)inside__construct
- Python:
-
Hardcoded import used directly:
- A concrete class is imported and used directly with no interface/Protocol wrapping it
- The class has no way to swap the implementation without editing the source
-
Module-level singleton without injection:
DB = PostgresDatabase()at module level, referenced directly by methods
Do not flag:
__init__parameters that already accept an interface/Protocol type- Constructors that accept the concrete type as a parameter (even if the type hint is concrete) — this is already injectable
- Standard library classes that are universally stable (e.g.,
logging.Logger,pathlib.Path)
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.
- yesterday First seen · 269 lines · 14 tokens per session scan A edc80e5edfed
dip is a skill published in the GitHub repository muthuspark/solid-audit (5 stars, last pushed 5mo ago), licensed Apache-2.0. It adds 14 tokens to every session and 2,302 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.
Other skills, from other repositories
systematic-debugging
Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes.
next-cache-components-adoption
Turn on Cache Components in a Next.js app and resolve the blocking routes it surfaces. Use when the user wants to enable, adopt, or migrate to Cache Components, flip the cacheComponents flag, work through a flood of blocking-prerender / instant validation errors, run the cache-components-instant-false codemod, or…
babysit-pr
Babysit a GitHub pull request after creation by continuously polling review comments, CI checks/workflow runs, and mergeability state until the PR is merged/closed or user help is required. Diagnose failures, retry likely flaky failures up to 3 times, auto-fix/push branch-related issues when appropriate, and keep…
imagegen
Generate or edit raster images when the task benefits from AI-created bitmap visuals such as photos, illustrations, textures, sprites, mockups, or transparent-background cutouts. Use when Codex should create a brand-new image, transform an existing image, or derive visual variants from references, and the output…
cpu-profile-analysis
Analyze V8/Chrome CPU profiles (.cpuprofile) and DevTools trace files (Trace-.json). Use when: profiling performance, investigating slow functions, comparing code paths, finding bottlenecks, analyzing timeToRequest, understanding call trees from sampling profiler data, analyzing layout/paint/rendering, investigating…
next-cache-components-optimizer
Drive a Next.js route to instant navigation by setting up an agentic loop, under Cache Components / PPR, on initial load (hard navigation) and client-side navigation (soft navigation). Encode the goal as a failing @next/playwright instant() e2e and work it to green, one verified route at a time; the shipped test then…