The garbage collector for your codebase
osoji audits your codebase for dead code, stale documentation, misleading comments, and semantic contradictions. It produces structured, actionable findings — and ships with agent skill files that automate the entire triage-fix-feedback loop. Stop wasting time working around the garbage accumulating in your project.
pip install osojicode
export ANTHROPIC_API_KEY=your-key-here
osoji audit .BYOK — you pay your LLM provider directly. No data leaves your machine except API calls.
osoji ships with bundled skill files that teach AI coding agents how to work with audit findings end-to-end:
- Audit —
osoji audit .scans your codebase - Triage — your agent classifies each finding as true positive, false positive, or informational
- Fix — your agent applies fixes for confirmed issues and runs tests
- Improve — your agent files GitHub issues on osoji for false positives and missed detections, improving detection for everyone
Claude Code (slash commands):
/osoji-sweep # Full end-to-end: audit, triage, fix, file issues
/osoji-triage # Read-only triage: classify findings, produce report
Other agents — pipe skill content into your agent's prompt:
osoji skills show osoji-sweep | pbcopy # macOS
osoji skills show osoji-sweep | clip # Windows
osoji skills list # See all available skills- osoji-sweep — Audit, triage every finding, fix true positives, file GitHub issues for pipeline improvements
- osoji-triage — Classify findings and produce a structured report without modifying any files
osoji gets smarter the more people use it. When your agent finds a false positive or spots something osoji missed, the skill files help it file a structured issue automatically. Those issues improve detection for everyone — including you on your next audit.
- Dead symbols — unused exports, unreachable code
- Dead parameters — function args never passed by any caller
- Stale documentation — docs that drifted from the code they describe
- Misleading comments — outdated comments, inaccurate docstrings
- Latent bugs — unchecked returns, type confusion patterns
- Obligation violations — implicit string contracts broken across files
- Unactuated config — config fields declared but never enforced
- Unused dependencies — packages listed but never imported
- Dead CI/CD — stale pipeline jobs, unused Makefile targets
- Orphaned files — source files unreachable from any entry point
osoji generates shadow documentation to build a semantic model of your codebase, then compares that model against existing documentation and code structure. It uses tiered LLM analysis — cheap models for filtering, expensive models for deep verification — and produces structured JSON findings that agents and humans can act on. Analysis is semantic, not purely AST-based, so it works on any language. AST plugins can augment detection for supported languages (Python, TypeScript).
| Command | Description |
|---|---|
osoji audit . |
Scan for dead code, stale docs, and semantic issues |
osoji shadow . |
Generate shadow documentation |
osoji check . |
Check for stale or missing shadow docs |
osoji diff |
Show documentation impact of source changes |
osoji stats . |
Token statistics for source vs shadow docs |
osoji report . |
Re-render last audit in a different format |
osoji export . |
Export observatory bundle |
osoji push |
Push bundle to osoji-teams |
osoji skills list |
List bundled agent skill files |
osoji config show |
Inspect resolved configuration |
osoji hooks install |
Manage git hooks |
osoji safety check |
Pre-commit safety checks |
Use osoji <command> --help for full options.
osoji is BYOK — bring your own key. It defaults to Anthropic but supports OpenAI, Google, and OpenRouter.
Set your API key and go:
export ANTHROPIC_API_KEY=your-key-hereSwitch providers per command:
osoji audit . --provider openai --model gpt-5.2
osoji audit . --provider google --model gemini-2.0-flashOr configure defaults in TOML:
# ~/.config/osoji/config.toml (global)
# .osoji.local.toml (per-project, gitignored)
default_provider = "openai"
[providers.openai]
small = "gpt-5-mini"
medium = "gpt-5.2"
large = "gpt-5.4"Supported provider credentials: ANTHROPIC_API_KEY, OPENAI_API_KEY, GEMINI_API_KEY, OPENROUTER_API_KEY
Config precedence (highest to lowest):
- CLI flags (
--provider,--model) - Environment variables (
OSOJI_PROVIDER,OSOJI_MODEL) .osoji.local.toml(per-project)~/.config/osoji/config.toml(global)- Built-in defaults
Run osoji config show to inspect the effective policy.
Scope expensive analysis away from low-value trees (e.g. a doc archive) with
[audit] exclude in .osoji.toml:
# .osoji.toml (per-project, committed)
[audit]
exclude = ["docs/archive/**", "vendor/**"]Patterns are repo-relative fnmatch
globs matched against each file's path relative to the project root. *
already matches any run of characters including /, so ** behaves the
same as * — write it for readability. Matched paths are dropped from
repository discovery entirely: no shadow docs, no facts, no analysis, no
findings. There's no built-in catalog and no default excludes — this is an
explicit, per-project scope decision you declare, not a heuristic osoji
applies on your behalf.
- Python 3.11+
- An LLM API key (Anthropic recommended, OpenAI and Google also supported)
- Website: osojicode.ai
- PyPI: pypi.org/project/osojicode
- Issues: github.com/osojicode/osoji/issues
See CONTRIBUTING.md for development setup, testing, and contribution guidelines.
To report security vulnerabilities, see SECURITY.md.
Apache License 2.0. See LICENSE for the full text.
This project follows the Contributor Covenant.