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

@caminoalto/ms-sme

v1.0.0

Published

Microsoft Subject Matter Expert — Claude Code plugin for Azure, M365, Security, Power Platform, Developer Tools, and Windows infrastructure questions

Readme

Microsoft SME Plugin for Claude Code

A Claude Code plugin that answers technical questions across the full Microsoft technology stack. Uses Microsoft Learn documentation via MCP as the primary source, with web search fallback. Works in Claude Code CLI and Claude Desktop — plugins sync automatically between both.

What it does

  • Answers technical questions about Azure, M365, Security, Power Platform, Developer Tools, and Windows infrastructure
  • Routes questions to domain specialist agents, running parallel lookups for cross-domain questions
  • Cites official Microsoft documentation with confidence ratings (High/Medium/Low)
  • Saves session summaries on demand via /ms-sme:log
  • Optionally saves a session marker on close (configure with autoLoggingEnabled)

Prerequisites

| Requirement | Minimum version | Install | |---|---|---| | Claude Code CLI | Latest | claude.ai/code | | Node.js | ≥18 | nodejs.org |

Install

Option 1 — npx from GitHub (recommended, no npm account needed):

npx github:caminoalto/ms-sme-plugin

Option 2 — register as a marketplace and install by name:

claude plugin marketplace add caminoalto https://raw.githubusercontent.com/caminoalto/ms-sme-plugin/main/marketplace.json
claude plugin install ms-sme@caminoalto

Option 3 — clone and install locally:

git clone https://github.com/caminoalto/ms-sme-plugin
npx ./ms-sme-plugin

Option 4 — npx from npm (once the package is published):

npx @caminoalto/ms-sme

To publish: npm publish --access public from the repo root (requires an npm account and npm login).

First-run verification

Start a new Claude Code session (or reload Claude Desktop) and ask a Microsoft technology question:

"What is the difference between Azure Private Endpoints and Service Endpoints?"

The ms-sme agent should respond with a structured answer, source URLs, and a confidence rating.

To verify the log command works:

/ms-sme:log

Usage

Ask any Microsoft technology question. The plugin activates automatically in every session. Examples:

"How do I configure Conditional Access in Entra ID?"

"What Power Automate connectors support Dataverse?"

"Walk me through setting up a Windows Server Failover Cluster."

Save a session summary:

/ms-sme:log

Saves a structured markdown summary (topic, key questions, answers, action items, sources) to the plugin data directory.

Configuration

Configure using the Claude Code CLI:

# Enable auto session markers on close
claude plugin config ms-sme autoLoggingEnabled true

# Set a custom log directory (e.g. OneDrive)
claude plugin config ms-sme logDir "/Users/yourname/OneDrive/ms-sme-logs"

| Setting | Type | Default | Description | |---|---|---|---| | autoLoggingEnabled | boolean | false | Save a session marker file when each Claude Code session ends | | logDir | string | plugin data directory | Where session marker files are written. Accepts an absolute path. |

Note on auto-logging: When enabled, a brief session marker is saved on close — it records the timestamp but does not contain conversation content. Use /ms-sme:log during a session for a full structured summary with questions, answers, and source references.

Claude Desktop

Plugins sync automatically between Claude Code CLI and Claude Desktop. Once installed via npx @caminoalto/ms-sme, the plugin is available in both interfaces. No separate configuration is needed.

Plugins are not available in Claude Desktop remote sessions.

Update

npx github:caminoalto/ms-sme-plugin

Re-running the install command updates to the latest version.

Uninstall

claude plugin uninstall ms-sme

MCP server note

This plugin uses @microsoft/learn-mcp@latest to access Microsoft Learn documentation. Specialist agents fall back to web search automatically if the MCP server is unavailable. To verify the MCP server works: npx -y @microsoft/learn-mcp@latest --help. Check the Microsoft Learn MCP repository for the current package name if needed.

Out of scope

  • Non-Microsoft technology questions — the agent will politely decline
  • Real-time data (Azure service health, live pricing) — use the Azure portal or Microsoft 365 admin centre
  • Writing or executing code — this is a Q&A knowledge tool