Agent skill · Security

project-audit

Security scan, dead code detection, and code quality audit for any project

vibeevalgithub.com/vibeevalGitHub ↗
claude-codeMIT
Install
npx skills add vibeeval/vibecosystem --skill project-audit --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 1
SKILL.md size: 2 KB
Bundled scripts: none
Version: 1.0.0
Path: skills/project-audit/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 521
Language: C#

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Project Audit Automated security + quality scan for any codebase. Generates a report, then optionally auto-fixes safe issues. ## Usage ```bash # Scan current directory vibeco audit # Scan specific path vibeco audit /path/to/project # Auto-fix safe issues (console.log removal) vibeco audit --fix # JSON output for CI integration vibeco audit --json ``` ## What It Scans ### Security (SAST) - **CRITICAL**: eval(), exec(), execSync(), os.system(), subprocess, SQL injection patterns - **HIGH**: innerHTML, dangerouslySetInnerHTML, document.write(), pickle.load(), hardcoded secrets - **MEDIUM**: Sensitive data in console.log, MD5/SHA1 weak crypto ### Code Quality - Large files (>500 lines) - TODO/FIXME/HACK/XXX count - Excessive console.log (>3 per file) ### Test Coverage - Source file to test file ratio - Test file detection (.test.ts, .spec.js, etc.) ### Dependencies - Lock file presence check - Node engine version check ## Output ### Terminal Report Color-coded report with grade (A+ to F): - A+: Zero issues - A-: Only MEDIUM issues - B: Some MEDIUM issues - C: HIGH issues present - D: Many HIGH issues - F: CRITICAL issues present ### JSON Report Saved to `.vibeco-audit.json` in projec

What's inside
Steps it walks through
  1. Usage
  2. What It Scans
  3. Security (SAST)
  4. Code Quality
  5. Test Coverage
  6. Dependencies
  7. Output
  8. Terminal Report
  9. JSON Report
  10. Auto-Fix (--fix)
  11. Workflow
  12. Ignored Directories
  13. Ignored in Security Scan
Commands it runs
Scan current directory
vibeco audit
Scan specific path
vibeco audit /path/to/project
Auto-fix safe issues (console.log removal)
vibeco audit --fix
JSON output for CI integration
vibeco audit --json
More from vibecosystem
All skills →
About this skill
What does the project-audit skill do?

Security scan, dead code detection, and code quality audit for any project

How do I install it?

Run `npx skills add vibeeval/vibecosystem --skill project-audit --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From vibeeval/vibecosystem, a repository with 521 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going