codebase-ripper/SKILL.md
Out-of-band codebase exploration using a cheap/fast model. Keeps your context clean while a cheap model runs 30-80 commands in parallel. Tunable precision and output size - works for broad orientation or precise targeted questions.
npx skillsauth add memgrafter/skills-flatagents codebase-ripperInstall 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.
Offload exploration to a cheap model running out-of-band. Instead of polluting your context with sequential rg → read → rg cycles, get back a curated summary.
Use cases:
--max-iterations 1 --token-budget 3000--token-budget 3000 for quick checks, 40000 for deep dives--max-iterations 1 --token-budget 3000read it)codebase-explorer for imports/signatures/segments)$HOME/.agents/skills/codebase-ripper/run.sh "<task>" [-d <directory>] [--token-budget N] [--max-iterations N]
# Precise question, tight output
./run.sh "Find the function that validates JWT tokens" --token-budget 5000
# Quick pre-flight check
./run.sh "What test framework does this project use?" --max-iterations 1 --token-budget 3000
# Broad architectural survey
./run.sh "Map out the data layer" --max-iterations 4
# Pattern audit
./run.sh "Find all database queries and their error handling patterns" -d src/
# Targeted search when you don't know where to look
./run.sh "Where is the WebSocket connection handler?" --token-budget 8000
Returns a curated context field - summary with key files, patterns, and findings. Stats go to stderr.
Cost: 2-4 cheap LLM calls. Benefit: parallel search + clean context.
development
Deterministically fixes broken OpenAI Deep Research markdown citations without using an LLM: creates a .bkp backup, rewrites citation markers, rebuilds references, and runs strict regex validation.
tools
Use this as the default toolset for coding sessions when you want faster navigation, search, file inspection, and git workflow execution with lower command overhead: tools: - fzf - ripgrep - bat - delta - lazygit - starship - zoxide - eza - atuin - yazi
development
Turn a URL into a durable knowledge artifact: searchable markdown summary + local raw text archive, so you can recall it later without revisiting the web.
development
Run shell commands and analyze output with validated summaries. Use for build logs, test output, or any command with substantial output. Protects context by returning concise summaries with grep-validated citations.