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

@tecture/skill

v0.3.0

Published

Install and update the Tecture architecture-docs agent skill across Claude Code, Cursor, GitHub Copilot, Codex, and Windsurf — one command, no registry.

Readme

@tecture/skill

One-command installer for the architecture-docs agent skill. Installs and updates the skill across Claude Code, Cursor, GitHub Copilot, Codex, and Windsurf — copying it into each agent's real skills directory (no symlinks, no registry). The skill itself is bundled in the package, so installs work offline; the only network call is an optional, anonymous usage ping (see Telemetry).

This installs the skill only. The skill hard-requires the CodeGraph companion at authoring time (discovery, deep-dives, and the evidence/drift check read its index). For the full setup — skill + CodeGraph CLI + MCP config + repo index — use npx @tecture/install@latest instead. @tecture/skill stays useful for offline/air-gapped machines and as the library @tecture/install builds on.

Usage

# Install or update (interactive — pick agents + scope)
npx @tecture/skill@latest

# Non-interactive (CI): all supported agents, project scope
npx @tecture/skill@latest --yes

# Just check what's installed vs available
npx @tecture/skill@latest --check

# Uninstall
npx @tecture/skill@latest remove

Always run with @latest. npx caches packages, so a bare @tecture/skill can re-run a stale installer and appear to do nothing.

The bare command is a single smart action: it installs where the skill is missing and updates where it's behind. There's no separate install vs update step (both exist as aliases out of habit, but you never need them).

Options

| Flag | Meaning | | --- | --- | | --agent <id> | Target one agent (repeatable). Ids: claude-code, cursor, copilot, codex, windsurf | | --global | Machine-wide skills directory | | --project | This repo's skills directory (default) | | --check | Report status only; change nothing | | -y, --yes | Non-interactive; accept defaults | | --force | Reinstall/overwrite even if up to date or locally edited | | -h, --help | Show help |

How it works

The skill is bundled inside this package at build time and stamped with the package version, so @tecture/skill@X always carries skill version X (reproducible, offline). On install it writes a .tecture.json manifest next to the skill recording the version and a content checksum; --check and updates use that to detect what's behind and to avoid clobbering a locally-edited copy.

The agent → directory mapping lives in src/agents.ts — that table is the only thing that needs maintenance as agents change their skill locations. Path conventions are adapted from the MIT-licensed Agent Skill Manager.

Telemetry

After a successful install or update the installer sends one anonymous event so we can see how widely the skill is adopted. It is anonymous and minimal — a random per-machine id (shared with the standalone viewer so a person counts once), the skill/installer version, your OS platform, and which agent(s) and scope you installed to. It never sends your name, repo, file paths, or architecture content.

The request fails silently: if you're offline or the endpoint is unreachable it times out quickly and the install is unaffected. Opt out completely by setting TECTURE_TELEMETRY=0 (or the standard DO_NOT_TRACK=1).