npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@silvestv/migration-planificator

v7.1.5

Published

Professional Angular migration analysis tool with AST precision for version upgrades (17→18, 18→19, 19→20, 20→21), Nx monorepo refactoring, workload estimation, and technical debt assessment. Interactive HTML reports with Gantt timeline and real-time edit

Readme

Angular Migration Planner

Perform your Angular migrations stress-free with full guidance!

Professional Angular migration companion tool for version upgrades, Nx monorepo refactoring, and technical debt assessment

AI-powered migration auto-fix + Angular schematics (experimental)

npm downloads Node.js TypeScript Tests LicenseStatus

🇬🇧 English | 🇫🇷 Français


🎯 What Is This?

A complete Angular migration analysis (AST) AND AI-assisted migration tool for:

  • 🔄 Angular Migrations — Plan migrations 17→18, 18→19, 19→20, 20→21 with precise estimates
  • 🏢 Nx Monorepo — Analyze multi-app/lib workspaces with per-target breakdown
  • 📊 Technical Debt — Identify deprecated APIs, anti-patterns, modernization opportunities
  • 💰 Workload Estimation — Calculate time (days/hours/minutes) by priority and risk level
  • 🎨 Code Modernization — Detect Signals, Control Flow, Standalone Components opportunities

Perfect for technical teams and tech leads planning Angular upgrades or refactoring.

📸 See the result | 🤖 AI Auto-Fix


🏆 Why Choose This Tool?

Unlike simple regex scanners or manual audits:

  • 88% AST Coverage — Context-aware detection eliminates false positives (ignores comments, strings, migrated code)
  • Cross-File Intelligence — Connects TypeScript ↔ HTML templates (detects @Component + <router-outlet> patterns)
  • Production-Ready — 748 tests passing, TypeScript strict mode, optimized batch processing
  • Time Savings — Auto workload calculation + Gantt timeline = instant migration roadmap
  • Zero Dependencies — Pure AST analysis with ts-morph + @angular/compiler (no external APIs)

🚀 Quick Start

# Navigate to your project
cd path-to-my-project # (if local install)

# Install
npm install -D @silvestv/migration-planificator
npm install -g @silvestv/migration-planificator

# Run directly
npx @silvestv/migration-planificator
npx @silvestv/migration-planificator --project-path=path-to-my-project

CLI Options

--scanner=<mode>        ast | regex | both              [default: ast]
--project-path=<path>   Path to Angular project         [default: .]
--rules=<versions>      18 | [18,19] | all              [default: all]

Examples

# Scan current directory (AST, all rules)
npx @silvestv/migration-planificator

# Comparative scan on Nx workspace
npx @silvestv/migration-planificator --scanner=both --project-path=/workspace/my-app

# Only Angular 17→18 rules
npx @silvestv/migration-planificator --rules=18

# Multiple versions
npx @silvestv/migration-planificator --rules=[18,19,20]

Open Report

open output/index.html   # macOS/Linux
start output/index.html  # Windows

📊 Report Contents

5 HTML files generated in output/ :

  • Overview — Project summary, global stats, apps/libs cards
  • Workload — Charts (pie, bar, doughnut), Gantt timeline, hierarchy tree, real-time editing, filters
  • Migration Guide — Step-by-step checklist per rule
  • Rules Overview — All 119 rules with detection status
  • Delta (both mode) — AST vs Regex comparison, divergence analysis

Workload page overview (workload page)


🤖 AI Auto-Fix (Experimental)

Generate structured prompts for AI agents (Claude CLI / Gemini CLI -> not recommended) to automatically migrate your code.

Recommended: Claude Code Opus 4 (CLI) with a small-to-medium repository (< 500 files impacted). Experimental — review all agent changes before merging.

Prerequisites

  • An IDE (VSCode / WebStorm)
  • Claude Code (recommended) OR Gemini CLI
  • Note: migrating a rule costs a certain number of tokens!

Command

  1. project > ./output/workload-planner.html
  2. Open the page in your browser
  3. On a migration rule, click the AI FIX button: it copies to clipboard
  4. Open a terminal in the project to migrate
  5. Paste the clipboard command such as:
   npx @silvestv/migration-planificator fix --rule=RULE_KEY

OR from another repo with

npx @silvestv/migration-planificator fix --rule=RULE_KEY --project-path=/path/to/project
  1. Execute: prompt generation

Note: "RULE_KEY" values are visible at the bottom of rule "details" modals.

| Option | Description | Default | |--------|-------------|---------| | --rule=RULE_KEY | Migration rule to fix (required) | — | | --project-path=PATH | Path to Angular project | . | | --branch=BRANCH | Base branch | master | | -y | Skip precondition confirmation | false | | --skip-validation | Skip build & tests in prompt | false |

Output

4 files in output/ai/migration/{version}/{rule}-prompts/ :

| File | Purpose | |------|---------| | constitution.md | Absolute agent rules (safety, quality, imports) | | context.md | Rule description + all occurrences (file:line) | | ledger.json | Migration tracking (schematic, iterations, blame) | | file-prompt.md | Complete 7-phase instructions for the agent |

Usage

cd /path/to/project && claude       # or gemini
> Execute output/ai/migration/19/signal_inputs-prompts/file-prompt.md (example)

The agent will: check preconditions → create branch → propose plan → implement → validate (AST + build + tests) → commit & push.

Agent Pipeline


📋 Migration Rules

119 rules across 4 versions:

| Migration | Mandatory | Recommended | Optional | Total | |-----------|-----------|-------------|----------|-------| | 17→18 | 8 | 17 | 0 | 25 | | 18→19 | 15 | 13 | 9 | 37 | | 19→20 | 6 | 7 | 5 | 18 | | 20→21 | 21 | 6 | 12 | 39 |

Categories: environmentimportsapiroutingtemplatetestssrreactivesignalsconfig

Risk Levels: 🔴 Critical • 🟠 High • 🟡 Medium • 🟢 Low


🔒 Security

100% local processing. No telemetry, no external APIs, no data leaves your machine. See SECURITY.md


🤝 Support


📝 License

© 2025 Victor SILVESTRE — Apache License 2.0. Free for commercial use. See LICENSE.

Built with ts-morph, @angular/compiler, TailwindCSS, Chart.js


📧 Contact • 📦 NPM Package