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

@robertoborges/azure-migration-squad

v0.1.0-insider.7

Published

Azure migration agents for GitHub Copilot + Squad. Any source. Any stack. One command.

Readme

@robertoborges/azure-migration-squad

Azure migration agents for GitHub Copilot + Squad. Any source. Any stack. One command.

npm Squad License: MIT

A drop-in extension for Squad that turns it into a universal Azure migration platform: 15 specialist agents, 60+ skills, and a Discovery-first workflow that handles any application, from any source, in any stack — and produces an evidence-bound migration plan ready for Azure.


What you get

  • 15 specialist agents — Discovery Engineer, Architect, Coder, Tester, Azure Specialist, DevOps Engineer, Database Specialist, Observability Engineer, Performance Engineer, Security Auditor, Cost Engineer, Cutover Commander, Evaluator, Scribe, Presentation Specialist
  • Source adapters for on-premise, AWS, GCP, Oracle, VMware, Kubernetes, container registries, GitHub repos, ZIPs, mainframes
  • Stack adapters for .NET, Java, Python, Node.js, PHP, Ruby, Go, Perl, Rust, COBOL, Oracle Forms, PowerBuilder, Delphi/VB6, Scala/Kotlin, C++ Windows
  • Workload patterns for webapp, api-service, batch-job, event-driven, serverless, data-pipeline, desktop-client-server, packaged-app, mainframe-transactional
  • Migration strategy decision tree — a 12-branch decision engine that goes far beyond a 6Rs label
  • Discovery Dossier + Capability Matrix — evidence-bound, schema-validated artifacts every Phase prompt consumes
  • Phase 1–6 prompts — Plan, Migrate Code, Generate Infra, Deploy, Set up CI/CD, Post-Migration Ops

Requirements

  • Node.js ≥ 20
  • Squad (@bradygaster/squad-cli) installed and initialized in your repo
  • GitHub Copilot (CLI or Chat)

Install

One-shot (recommended for first try)

# 1. Set up Squad in your project
npm install -g @bradygaster/squad-cli
squad init

# 2. Add the migration agents (one-shot — no install)
npx @robertoborges/azure-migration-squad@latest init

# 3a. VS Code Copilot Chat: /assess-any-application
# 3b. Copilot CLI:           "assess this application"

Global install (for repeated use — get the ams shortcut)

npm install -g @robertoborges/azure-migration-squad@latest

ams init                              # ← short alias
ams doctor
ams list
ams telemetry status
ams upgrade

# Both names are equivalent:
azure-migration-squad init            # ← long form

ams ships as a second bin entry — same binary, fewer keystrokes.

Insider channel vs stable

npm install -g @robertoborges/azure-migration-squad@latest    # stable
npm install -g @robertoborges/azure-migration-squad@insider   # preview builds

Commands

ams <command> [options]                       # short alias (recommended)
azure-migration-squad <command> [options]     # full name (same binary)

Commands:
  init                  Scaffold the migration squad into the current repo
  upgrade               Refresh squad content to the latest version
  doctor                Validate squad integrity (incl. Capability Matrix schema)
  list                  List installed adapters
  telemetry <sub>       Manage telemetry — sub: on | off | status
  help                  Show this help
  version               Print version

Flags:
  --force               (init)    Bypass Squad-detection check
  --overwrite           (init)    Replace existing files instead of skipping
  --no-telemetry        (any)     Skip telemetry for this invocation

Typical workflow

GitHub Copilot CLI (terminal):

# In your project dir, after `squad init` + `npx @robertoborges/azure-migration-squad init`:
copilot --agent squad
# Then talk naturally — slash commands are NOT auto-registered in the CLI:
> Assess this application for Azure migration
# Discovery Engineer walks you through 6 questions, produces:
#   reports/Discovery-Dossier.md + reports/Capability-Matrix.yaml
> Build the migration plan
# Architect approves strategy, produces reports/Migration-Plan.md
> Phase 1 plan and assess
# ... through Phase 6

VS Code Copilot Chat: slash commands ARE auto-registered. Type:

/assess-any-application
/build-migration-plan
/phase1-planandassess
...

Both produce identical outcomes.


How it integrates with Squad

azure-migration-squad init installs content into the directories Squad already manages:

| Target | What lands | |--------|------------| | .squad/agents/ | 15 agent charters (Discovery Engineer is new; others extend / replace defaults) | | .github/chatmodes/ | Migration-Orchestrator, Discovery-Intake, plus 7 specialized chatmodes | | .github/prompts/ | Assess-Any-Application, Build-Migration-Plan, Phase 0–6 prompts | | .github/skills/ | 60+ source/stack/workload/universal skill files | | .github/hooks/ | agent-dispatch, phase-gates, quality-checklist | | AGENTS.md | Squad-aware operator instructions | | .azure-migration-squad/manifest.json | Installation tracking |

Your reports/, .squad/decisions.md, and history files are never touched by init or upgrade.


Telemetry — opt-out by default

This CLI collects anonymous usage data to help us prioritize fixes and new adapters:

What we collect:

  • Anonymous install ID (random UUID)
  • Package version + command name + OS family + Node major version
  • Whether Squad was detected
  • Error class names (NOT messages, NOT stack traces)

What we NEVER collect:

  • File paths, project names, source code, prompts, customer data
  • IPs, emails, git remote URLs

How to opt out (all options work — first match disables):

# Per-invocation
azure-migration-squad init --no-telemetry

# Persistent — CLI
azure-migration-squad telemetry off

# Persistent — env var
export AZURE_MIGRATION_SQUAD_TELEMETRY=0

# Industry-standard convention (also honored)
export DO_NOT_TRACK=1

# CI environments — auto-disabled by default (CI=true)

Backend: PostHog Cloud, US region. Public dashboard available — see docs/telemetry.md.


For contributors — source-of-truth rule

If you're using the package, ignore this section. If you're contributing to this monorepo, read it before editing any prompt / skill / charter file.

The npm package's templates/ folder is a build artifact, not a source. Editing files there will silently lose your work the next time npm run sync runs (which happens automatically before every publish + in CI).

Always edit at the monorepo root:

| To change... | Edit here ✅ | NOT here ❌ | |--------------|-------------|--------------| | Prompts (Phase 1–6, etc.) | .github/prompts/ | packages/azure-migration-squad/templates/github/prompts/ | | Skills (adapters, decision tree) | .github/skills/ | packages/azure-migration-squad/templates/github/skills/ | | Chatmodes | .github/chatmodes/ | packages/azure-migration-squad/templates/github/chatmodes/ | | Agent charters | .squad/agents/<name>/charter.md | packages/azure-migration-squad/templates/squad/agents/ | | Squad team/routing | .squad/team.md, .squad/routing.md | packages/azure-migration-squad/templates/squad/ | | Top-level Copilot/Squad guidance | AGENTS.md, .github/copilot-instructions.md | templates/AGENTS.md, templates/github/copilot-instructions.md |

After editing, run npm run sync to refresh templates/. The pre-publish hook does this automatically. CI also fails the build if templates/ was edited by hand (see scripts/check-templates-not-edited.mjs).

Full guide: docs/contributing-adapters.md


See also

License

MIT © Roberto Borges