安全

Minimalist Audit

试用

Audit a codebase or directory for deletion candidates: dead code, unused dependencies, single-use abstractions, config that never varies, and duplicated help...

它能做什么

Audit a codebase or directory for deletion candidates: dead code, unused dependencies, single-use abstractions, config that never varies, and duplicated helpers. Use when the user says "minimalist audit" or asks what can be deleted from a project.

技能文档

Minimalist Audit

Walk the target and produce a ranked deletion list. For each candidate: path — est. LOC removable — evidence — risk (low/med/high).

Look for:

  1. Exports with zero references (verify by searching, don't guess).
  2. Dependencies in the manifest never imported, or imported for one function the stdlib has.
  3. Abstractions (interfaces, factories, base classes) with exactly one concrete user.
  4. Config values that have never differed between environments.
  5. Copy-pasted helpers that already exist elsewhere in the repo.
  6. Commented-out code and "TODO later" scaffolding older than the file's median age.

End with a one-paragraph summary: total estimated removable LOC and the top three lowest-risk deletions to start with. Never mark tests, validation, auth or error paths as dead without proven zero references.

相关技能

Two-pass code audits across security, perf, UX, DX, and edge.

83 次安装

Systematic code error diagnosis and fix skill. Handles compilation errors, runtime exceptions, type errors, logic bugs, crash analysis, dependency conflicts,...

2 次安装

Perform a security audit of a Go codebase. Targets SSH servers, BBS systems, API services, and CLI tools. Finds race conditions, goroutine leaks, missing err...

4 次安装

Review code for bugs, security, architecture, smells, patterns, performance, tests, and refactor plans

2 次安装

Audit agentic framework directories, prompt systems, skills, planner files, workflow guidance, memory-like files, configs, and agent-facing documentation for...

2 次安装

Audit the whole repo for Thompson-mode violations. A ranked list of what to rewrite, delete, or take back into the trusted base.