Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

Review: Quality and Insight

Check your code before it ships. AI-powered review, codebase Q&A, code metrics, and dependency auditing.

AI code review with fledge review

Get feedback on your changes before opening a PR. Diffs your branch against the base and runs it through Claude.

fledge review
fledge review --base main
fledge review --file src/auth.rs    # review a single file
fledge review --json                # machine-readable output

Ask your codebase with fledge ask

Got a question about how something works? Ask it.

fledge ask "how does the template rendering work?"
fledge ask "what tests cover the config module?"
fledge ask "what does the release command do?" --json

Code metrics with fledge metrics

Lines of code by language, file churn from git history, and test coverage ratio.

fledge metrics
fledge metrics --churn           # most-changed files
fledge metrics --tests           # test file ratio
fledge metrics --churn --tests --json

Dependency health with fledge deps

Find outdated packages, run security audits, and scan licenses. Works across Rust, Node, Go, Python, and Ruby.

fledge deps
fledge deps --outdated
fledge deps --audit
fledge deps --licenses
fledge deps --outdated --audit --licenses --json