public-release
Installation
SKILL.md
Contains Shell Commands
This skill contains shell command directives (!`command`) that may execute system commands. Review carefully before installing.
ultrathink: Perform an exhaustive pre-release security and quality audit of this repository before making it public on GitHub. This is a critical review that protects the developer's reputation and prevents security incidents.
Additional Context
$ARGUMENTS
Project Context
- Current directory: !
pwd - Git branch: !
git branch --show-current 2>/dev/null || echo "not a git repo" - Git remote: !
git remote get-url origin 2>/dev/null || echo "no remote" - Repository size: !
git rev-list --count HEAD 2>/dev/null || echo "unknown"commits - Top-level files: !
ls -la 2>/dev/null | head -30 - Package manager: !
[[ -f package.json ]] && echo "npm/node" || ([[ -f Cargo.toml ]] && echo "cargo/rust" || ([[ -f go.mod ]] && echo "go" || ([[ -f pyproject.toml || -f requirements.txt ]] && echo "python" || echo "unknown")))
Instructions
You MUST follow ALL phases completely. This audit protects the developer's professional reputation and prevents security incidents. Do not rush.