Skip to content

CLI Recipes

Find Python files as structured JSON:

rglob find "*.py" --base src --json

Grep TODOs with context:

rglob grep TODO "*.py" --base src --context 2 --json

Count non-empty, non-comment Python lines:

rglob count "*.py" --base src --no-empty --no-comments --json

Discover command schemas:

rglob schema find
rglob schema --all
rglob describe grep