flutter_pruner 1.0.1
flutter_pruner: ^1.0.1 copied to clipboard
Safety-first semantic auditor for Dart and Flutter. Finds unreachable declarations, unused assets, and duplicate files with reversible cleanup.
Changelog #
All notable changes to this project are documented here.
The format is based on Keep a Changelog, and this project follows Semantic Versioning.
Unreleased #
1.0.1 - 2026-08-17 #
1.0.0 - 2026-08-17 #
Added #
- Semantic graph analysis across Dart declarations, libraries, Flutter assets, and exact duplicate files.
- Four confidence tiers (
SAFE,HIGH,REVIEW, andPROTECTED) governed by explicit coverage, reachability, blocker, protection, and action predicates. - Three analysis modes:
applicationfor a declared complete application boundary;packagefor conservative review-only analysis;package-internalfor explicitly scoped local-package cleanup.
- Project initialization through
flutter_pruner init, with explicit targets, public entrypoints, analysis mode, and verification commands. - Dart analysis for libraries and top-level declarations, including imports, exports, parts, conditional-directive blockers, generated-code boundaries, callback roots, and unresolved-reference protection.
- Asset inventory from
pubspec.yaml, resolution-variant grouping, semantic sink detection, bounded string evaluation, FlutterGen provenance, and dynamic asset blockers. - SHA-256 exact duplicate detection as review-only findings.
- Exact apply selection with repeatable
--finding-idvalues. - Dependency-closed dry-run and apply planning.
- Revisioned, checksummed quarantine manifests with per-case, transaction, verification, selection, and recovery evidence.
- Whole-run rollback and manual
rollback <run-id>support. - Project-local operation locking for apply, rollback, and quarantine maintenance.
- Human terminal output, JSON schema v3, and self-contained offline HTML reports.
- Public adapter, graph, project, verification-policy, and report APIs.
- Cross-platform CI configuration for the supported Dart SDK floor and stable Linux, macOS, and Windows environments.
Changed #
- Apply is whole-run all-or-nothing. Internal atomic units remain visible for
diagnosis, but a later failure restores every mutation from the run or marks
the run
recoveryRequiredwhen restoration cannot be proven. - Mutating commands reject active, ambiguous, corrupt, or recovery-required historical quarantine state before starting new work.
- Verification and import cleanup use argv-only managed subprocesses with deadlines, bounded output, and observed process-tree termination.
- Regular-file replacement uses staged displacement and no-replace publication instead of overwriting a concurrently recreated project path.
- Public collection-bearing value objects defensively snapshot caller-owned
inputs. Constructors are non-
constwhere copying is required. AdapterRegistry.builtInis runtime immutable; custom adapter sets are passed explicitly toAdapterRegistry.resolve.VerificationPolicyis exported as part of the public API.- Legacy
workspace,analysis.root_coverage,apply --safe, andapply --highinterfaces are rejected in favor of explicit analysis modes.
Fixed #
- Exact asset references are graph edges rather than unconditional roots, so unreachable Dart code does not keep an asset alive by itself.
- Generated and unresolved Dart units emit blockers instead of allowing an
unsupported
SAFEresult. - Dynamic dispatch, compound operators, index operations, equality, implicit protocols, and generated references retain plausible top-level owners.
- Conditional imports and exports fail closed when target-aware branch edges cannot be represented completely.
- Dependencies of blocked or protected nodes remain retained even when the source node itself remains reportable.
- Apply binds planning, snapshots, and execution to one immutable action plan, preventing late-discovered paths from entering a transaction.
- Exact-selection reports preserve truthful requested, planned, remaining, and recovered outcome counts.
- Baseline-red verification requires parser-bound, complete comparison evidence before mutation.
- Rollback validates captured bytes and POSIX permission bits where available before recording a verified terminal state.
- Interrupted apply and restore states preserve ambiguous working-copy evidence instead of overwriting or deleting it.
quarantine clean --allvalidates every run before deleting any run.- Windows path normalization, traversal checks, process output, and lock tests use platform-correct behavior.
Compatibility and recovery boundaries #
- The regular-file rollback contract covers captured bytes and POSIX permission
bits where the platform exposes them. It does not preserve xattrs, ACLs,
ownership (
uid/gid), or hard-link topology. - File flushing and same-filesystem rename/link operations do not provide a
portable parent-directory
fsyncor a general filesystem transaction. - A process that deliberately detaches before it can be observed remains outside the managed process-tree termination proof.
package-internalcannot discover consumers outside the analyzed package.- Custom runtime callback and asset registries require explicit modeling or project policy.