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

@hanv89/azure-arch-skill

v1.6.3

Published

Install the Azure architecture diagram skill into your AI coding agent (Claude Code, Codex CLI, Cursor).

Readme

@hanv89/azure-arch-skill

CLI installer for the Azure architecture diagram skill. Drops the skill bundle (SKILL.md + worked PlantUML examples) into your AI coding agent's skill folder so that prompts like "draw an Azure context diagram" produce diagrams that use official Microsoft Azure + Fabric architecture icons.

Published with Sigstore provenance via npm Trusted Publishing — verify with npm view @hanv89/azure-arch-skill@latest dist.attestations.

Requirements

  • Node.js ≥ 20

Install

Install for one agent:

npx @hanv89/azure-arch-skill install --agent=claude-code
npx @hanv89/azure-arch-skill install --agent=codex
npx @hanv89/azure-arch-skill install --agent=cursor

Install for all supported agents in one shot (transactional — rolls back on first failure):

npx @hanv89/azure-arch-skill install --agent=all

Pin a specific skill bundle version (default = latest from main):

npx @hanv89/azure-arch-skill install --agent=claude-code --version=0.9.0

Supported agents

| Agent | Default install location | Discovery model | |---|---|---| | claude-code | ~/.claude/skills/azure-architecture-diagram/ | Per-user (HOME-relative) | | codex | ~/.codex/skills/azure-architecture-diagram/ (or $CODEX_HOME/skills/...) | Per-user (HOME-relative) | | cursor | <cwd>/.cursor/rules/azure-arch-skill.mdc | Per-project (cwd-relative) — install from the project root so teammates pick up the rule via git |

The cursor adapter prints a one-line note at install time confirming the resolved target; pass --target=<path> to override.

Subcommands

  • install --agent=<name> — fetch the latest bundle (or --version=X.Y.Z pinned), verify icon-set reachability + requires_icons semver, copy files into the agent's folder.
  • uninstall --agent=<name> — manifest-scoped removal: only the files the install wrote are removed; any user-authored content alongside the skill is preserved.
  • update --agent=<name> — short-circuits to a no-op if the on-disk version already matches the upstream bundle; otherwise overwrites.
  • list --agent=<name> — list installed skills under the agent's skill root + their versions.
  • All four subcommands accept --agent=all to fan out across the supported agents.

Environment overrides

Two environment variables exist for validation / CI use. Production users should not set them.

  • AZURE_ARCH_SKILL_BASE_URL — override the bundle source. Restricted to https://raw.githubusercontent.com/hanv89/azure-icons-for-architecture-diagrams/... paths; any other host or scheme is rejected. The CLI emits warn: AZURE_ARCH_SKILL_BASE_URL override active: <value> to stderr whenever the override fires.
  • AZURE_ARCH_SKILL_TARGET_ROOT — widen the --target allow-list beyond the agent's default root. Setting this lets install / uninstall / list operate on directories outside the agent's config tree, so it MUST point at a directory you control (e.g. mktemp -d output in a test script). The CLI emits warn: AZURE_ARCH_SKILL_TARGET_ROOT override active: <value> once per command when honored. Never set this in a production shell.

Repository

See the project README for icon source, licensing, and the full skill specification.