skills/repo-audit/SKILL.md
--- name: repo-audit description: Analyzes a GitHub repository. Stage 1: Fetches metadata (README, Size) using GH CLI to assess complexity. Stage 2: Clones to a temporary sandbox for deep inspection upon user confirmation. disable-model-invocation: true allowed-tools: Bash, Glob, Grep, Read --- # Repository Audit Skill This skill allows you to safely inspect GitHub repositories without polluting your main workspace. It operates in two stages to prevent unnecessary cloning of massive repositori
npx skillsauth add till-crazy-tears-us-apart/claude-code-engineering-suite skills/repo-auditInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
This skill allows you to safely inspect GitHub repositories without polluting your main workspace. It operates in two stages to prevent unnecessary cloning of massive repositories.
Requirements:
gitgh (GitHub CLI) - Must be authenticated (gh auth login)/repo-audit <url>
gh repo view <url> --json description,stargazerCount,diskUsage,defaultBranchRef.owner/repo from the URL.gh api repos/<owner>/<repo>/readme --jq .content | python -c "import sys, base64; print(base64.b64decode(sys.stdin.read().strip()).decode('utf-8', errors='replace'))".diskUsage > 500MB, WARN the user.Only execute this after user confirmation.
%TEMP%, and generates a structure report.Glob, Grep, Read) to explore the files in the temp directory.To run the analysis script (Stage 2), execute:
# Windows (PowerShell) - Adapt path as needed
# Note: The script includes a 500MB safety limit. Use --force to override.
python ~/.claude/skills/repo-audit/scripts/audit_runner.py <repo_url> [--force]
data-ai
Deep repository analysis with multi-agent parallel perspectives. Requires /init + /remy-index as prerequisites. Produces structured research reports.
tools
Analyze CI/CD failure logs to diagnose build, test, and gate failures. Supports GitHub Actions (gh CLI), local log files, and pasted logs. Produces evidence packets for /remy-patch.
development
Generate persistent unit tests for existing or stub code. Supports post-hoc testing (default) and TDD mode (--tdd). Multi-angle agent analysis at medium/high effort levels.
tools
--- name: remy-secure description: Review branch changes for security vulnerabilities. Multi-stage: regex pre-scan, parallel agents, and false-positive filtering. allowed-tools: Read, Grep, Glob, Bash, AskUserQuestion, Agent argument-hint: "[low|medium|high] [diff_range (optional, e.g. HEAD~3...HEAD)]" disable-model-invocation: true --- # Security Audit Protocol Security-focused review of code changes on the current branch. Identifies exploitable vulnerabilities with high confidence (≥ 8/10),