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

@opscotch/oms

v0.3.5

Published

Opscotch Management System — install CLI for Cursor and project scaffold

Readme

@opscotch/oms (CLI)

OMS installer — install the OMS application into a folder, copy bundled OMS skills into your IDE, and merge Opscotch MCP config. OMS projects are created later with @oms-assistant.

Current release: 0.3.5.

Install from npm

npx @opscotch/oms install

Non-interactive (CI / automation):

npx @opscotch/oms install --yes \
  --directory ~/oms-dev \
  --ide cursor \
  --display-name "Your Name" \
  --installation-name oms-dev \
  --chat-language English \
  --document-language English

Interactive install asks a capability profile (six areas + guidance style) so agents match explanation depth to your background.

Open the target folder in Cursor or Codex@oms-assistant to finish setup (setup.yaml stays completed: false until then). Then use create project, edit project, or list projects. @oms-architect, @oms-developer, and @oms-engineer are also bundled for optional dedicated planning, workflow implementation, and packaging/publish/runtime chats.

IDE outputs

| IDE | Install writes | |-----|----------------| | Cursor | .cursor/mcp.json (oms-workspace stdio), .cursor/permissions.json (oms-workspace:*), .cursor/skills/oms-assistant/, .cursor/skills/oms-architect/, .cursor/skills/oms-developer/, .cursor/skills/oms-engineer/ | | Codex | .codex/config.toml ([mcp_servers.oms-workspace]), .agents/skills/oms-assistant/, .agents/skills/oms-architect/, .agents/skills/oms-developer/, .agents/skills/oms-engineer/, root AGENTS.md |

Workspace runtime (once per machine): legal acceptance is required; a license is optional with @opscotch/oms-workspace 0.1.6+:

oms workspace install \
  --directory ~/oms-dev \
  --legal-accepted '<base64-acceptance-blob>'

Use optional --license-file <path> for backward compatibility or production-agent workflows. See .oms/opscotch-install-steps.md or root README.md.

Cursor: Set Settings → Agents → Run Mode to Auto-review or Allowlist. Install writes .cursor/permissions.json with oms-workspace:* allowlist + Auto-review hints. Re-run oms install in the installation folder to refresh merge after upgrade from 0.2.0.

Codex: Trust the project folder when prompted — project .codex/config.toml (including MCP) loads only for trusted projects.

Develop from source

cd packages/cli
npm install && npm link

oms install --directory ~/oms-dev

npm install runs prepare automatically (bundles skills/ + templates/ into bundle/). Re-run npm run prepare after editing skills or templates without reinstalling.

Commands

| Command | Description | |---------|-------------| | oms install | Interactive install (guided prompts) | | oms install --yes … | Non-interactive; same tree as interactive when flags match | | oms workspace install | Install ~/.oms-workspace Docker runtime (legal token required; license optional) | | oms --version | CLI semver (matches .oms/.oms-version in fresh installs) |

Flags

| Flag | Purpose | |------|---------| | --directory | Target folder; if omitted, interactive install defaults to current folder | | --ide | cursor or codex (v1 parity) | | --display-name | Prefill for Assistant | | --installation-name | .oms/installation.yaml name | | --project-name | [deprecated] Alias for --installation-name | | --chat-language | Seeds .oms/config.yaml | | --document-language | Seeds .oms/config.yaml | | --team-mode | solo (v1) | | --capability-profile | Non-interactive default 1.1.1.1.1.1.1 | | --yes | Skip prompts |

Monorepo layout

oms/  (public repo)
├── packages/cli/     ← this package (@opscotch/oms)
├── skills/           ← oms-assistant + oms-architect + oms-developer + oms-engineer bundle
└── templates/        ← customer scaffold source

See the repository root README.md for the full setup flow.

Upgrade re-runs

Re-running oms install in an existing OMS installation refreshes IDE skills and merges MCP without clobbering team-info member files. Non-empty non-OMS directories prompt for confirmation (interactive) or fail (--yes).

Release checklist

Before npm publish:

  1. Bump packages/cli/package.json version.
  2. Run npm run prepare — syncs templates/.oms-version and refreshes bundle/.
  3. npm test in packages/cli.
  4. Smoke: oms --version, oms install --yes --ide cursor, oms install --yes --ide codex.
  5. Confirm .oms/.oms-version in a fresh install equals the published CLI version.
  6. npm publish --access public (requires npm login to @opscotch org).