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

@innotech-ai/skills

v0.1.14

Published

Install InnoTech agent skills and MCP for Cursor, Claude Code, and 50+ agents — one command via npx skills + add-mcp.

Readme

@innotech-ai/skills

Install InnoTech SDLC agent skills and the InnoTech MCP server for Cursor, Claude Code, and 50+ other agents with one command.

This package wraps:

  • npx skills — copies skills into .cursor/skills/, .claude/skills/, etc.
  • npx add-mcp — writes .cursor/mcp.json, .mcp.json, and other agent MCP configs

Skills are synced from @innotech-ai/claude-plugin (same workflows as /innotech:* in Claude Code).

Quick start

From your git repository root:

npx @innotech-ai/skills

Non-interactive (CI / team bootstrap):

npx @innotech-ai/skills -y

Cursor only:

npx @innotech-ai/skills -a cursor -y

Custom host (self-hosted InnoTech):

INNOTECH_BASE=https://innotech.vyte.dev npx @innotech-ai/skills -y

Then:

  1. OAuth — In Cursor: Settings → MCP → innotech → connect. In Claude Code: browser sign-in on first MCP use.
  2. Setup — Ask your agent to run the InnoTech setup skill (or follow its steps) to link the repo and sync deploy config.

Commands

| Command | What it does | |--------|----------------| | npx @innotech-ai/skills | Install all skills + MCP (default) | | npx @innotech-ai/skills check | Compare installed vs latest (reads .innotech/skills-package.json) | | npx @innotech-ai/skills update -y | Reinstall skills (+ MCP) when outdated | | npx @innotech-ai/skills skills | Skills only | | npx @innotech-ai/skills mcp | MCP only | | npx @innotech-ai/skills sync-env --workspace … --project … | Upload missing .env keys (REST API key required) | | npx @innotech-ai/skills link-repo --workspace … --project … --remote … | Link origin to project (REST API key required) |

Options

| Flag | Description | |------|-------------| | -g, --global | User-wide install (~/.cursor/skills, ~/.cursor/mcp.json, …) | | -a, --agent | Agent id (repeatable): cursor, claude-code, codex, … | | -s, --skill | Install specific skills only (passed to npx skills) | | -y, --yes | Skip prompts | | --copy | Copy skills instead of symlinking | | --base <url> | InnoTech origin (default https://innotech.ai) |

Install skills manually (without this CLI)

npx skills add innotech-ai/innotech.ai/src/packages/innotech-skills -a cursor -y
# or from npm extract path after install:
npx skills add ./node_modules/@innotech-ai/skills -y

Install MCP manually

npx add-mcp https://innotech.ai/mcp -n innotech -a cursor -a claude-code -y

Included skills

| Skill | Purpose | |-------|---------| | setup | Link repo, .innotech/project.json, deploy defaults, env sync | | analyze / analyze-here | Task analysis (cloud / local) | | plan / plan-here | Planning + review | | execute / execute-here | Build, PR, preview | | fix / fix-here | Rework after review | | merge / merge-here | Merge workflow | | move-to-qa / move-to-qa-here | QA handoff | | deploy | Coolify preview/main | | investigate | Diagnose with ephemeral scripts (.env; no secrets) | | create-innotech-task | Capture session work into a task |

Security

  • MCP uses OAuth in supported clients — no API key in the MCP URL.
  • REST helpers (sync-env, link-repo) read ~/.config/innotech/credentials or INNOTECH_API_KEY.
  • Env values are never printed; sync-env only reports key names.

Publish

From the monolith root (requires NPM_TOKEN in .env):

npm run bump:agent-packages          # patch bump all aligned versions
npm run bump:agent-packages 0.1.15  # explicit semver
npm run release:agent-packages      # sync + publish plugin + skills

Version manifest for clients: GET /api/agent-packages on your InnoTech host.

Auto-update

  • MCP tools — always current on the server after deploy (no client reinstall for new tools).
  • Skills — run npx @innotech-ai/skills update -y (or check first). The CLI writes .innotech/skills-package.json on install/update.
  • Self-hosted — add --manifest to prefer {INNOTECH_BASE}/api/agent-packages before npm registry.

Related

  • Claude Code plugin: @innotech-ai/claude-plugin/plugin install innotech@innotech-ai
  • MCP docs: https://innotech.ai/docs/mcp
  • Claude plugin guide: https://innotech.ai/claude