Workspace audit
Skills for any AI agent harness, by Mad House
npx -y skills add samhcus/skills --skill workspace-auditAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
- 3 stars3 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Audit all git repos under ~/dev for dirty state, unpushed commits, exposed .env files, and tracked context files (CLAUDE.md, AGENTS.md, GEMINI.md). Use when the user wants to know if their workspace is clean, before a deploy, or when something feels off. Triggers on "audit workspace", "check repos", "anything unpushed", "is my workspace clean", "check for dirty repos", "any exposed secrets".
The file declares its own license as MIT. That is the author’s claim about this one file, and it is not the same thing as the license GitHub reports for the repository, which is listed with the other numbers below.
SKILL.md
1.6 KB, as published. Nobody here has run it
Workspace Audit
Scans all git repos under ~/dev for issues that need attention. The script handles all detection - your job is to synthesize the output and tell the user what needs action.
Step 1 - Collect
~/.claude/commands/workspace-audit/scripts/audit.sh
Step 2 - Synthesize
Read the labeled sections and produce a concise report:
Git Repos
List every NEEDS ATTENTION entry with its flags. Group by type:
- DIRTY - uncommitted changes
- UNTRACKED - files not in git
- NO-REMOTE - no origin configured
- AHEAD:N - commits not pushed
Clean repos don't need a mention unless the user asks.
Security Checks
Report any EXPOSED: .env files or TRACKED: context files immediately - these are high-priority.
Disk Usage
Report ~/dev/ total size.
Summary
- N repos clean, N repos need attention
- If
STATUS: CLEAN→ tell the user everything looks good - If
STATUS: NEEDS ATTENTION→ list the top actions in priority order
Keep it tight. Flag security issues first, then unpushed work, then cosmetic.