Catalogs all public exports across your codebase by module. Identifies which exports have no external consumers (unused exports), ranks the most consumed symbols, and reports the overall unused export ratio.
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
scope | string | No | workspace | Path filter to narrow the analysis (e.g., src/lib/) |
limit | number | No | 30 | Maximum number of items to return per section |
What does this project export publicly? Are any exports unused?
Returns a catalog of all public exports and flags those with no external consumers.
Show me the public API surface of src/utils/. Which exports are actually used?
Scopes the analysis to the src/utils/ directory.
What are the most imported functions in this project?
Returns the top consumed symbols ranked by number of consumers.
For each module:
pub(crate) in Rust, removing from index.ts in TypeScript, dropping from __all__ in Python)stellarion_find_unused_code for a broader dead code search that includes non-exported symbolslimit to control output size when working with large codebases