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

boceto

v0.2.0

Published

Unified install + configure CLI for Boceto. `npx boceto init` wires up the authoring skill and the MCP server for your AI tools in one go; `npx boceto add skill <target>` and `npx boceto add mcp <client>` are the per-integration commands. Mirrors the Svel

Readme

boceto — unified install + configure CLI

One command to wire up the Boceto authoring skill + the MCP server for your AI tools, modelled after Svelte's sv add pattern.

npx boceto add mcp               # auto-detects your AI client; installs MCP + matching skill
npx boceto add mcp claude-code   # explicit — claude-code | cursor | claude-desktop
npx boceto add skill cursor      # skill only — for assistants without MCP support
npx boceto check                 # what's installed where?

What it does

boceto add mcp is the headline command. It writes the mcpServers.boceto entry into your AI client's config file AND co-installs the matching skill at the location your client auto-loads from. The skill is what triggers the agent to reach for the MCP tools (boceto_lint, boceto_list_recipes, boceto_render_svg, …) and what teaches the non-negotiables (six-slot rule, canonical types, components-first authoring, the literate output pattern). Without the skill, MCP alone gives the agent tools it doesn't know to call.

Auto-detection: if exactly one MCP client config exists in ~/, add mcp picks it without prompting.

| MCP client (add mcp <client>) | Config file | Skill co-installed at | |---|---|---| | claude-code | ~/.claude.json | .claude/skills/boceto/ | | cursor | ~/.cursor/mcp.json | .cursor/rules/boceto.mdc | | claude-desktop | platform-aware | ~/.claude/skills/boceto/ (user-global) |

boceto add skill <target> is the standalone path for assistants that don't speak MCP yet — Aider (BOCETO.md), GitHub Copilot (.github/copilot-instructions.md), OpenAI Codex / AGENTS.md, Gemini CLI, Cline, Windsurf, plus claude-user (user-global) and a raw file dump.

Safety

The MCP config writer handles user data carefully:

  • Atomic writes — staged to a .boceto.tmp then renamed. Half-written ~/.claude.json files would brick Claude Code; renames are all-or-nothing.
  • Sibling-key preserving merge — your API keys, project history, and other mcpServers entries are untouched.
  • Never overwrite malformed JSON — bails with a clear error rather than risking data loss.
  • Existing-entry handling--force / --skip-if-exists / default-prompt.

Flags

  • --force / -f — overwrite instead of prompting / appending.
  • --skip-skill (mcp) — install the MCP server only; skip the co-installed skill.
  • --skill <target> (mcp) — override the default client→skill pairing.
  • --from-git — fetch the latest skill markdown from github.com/maravilla-labs/boceto's main branch.
  • --local (mcp) — write node + abs path to packages/mcp/dist/server.js instead of npx -y @boceto/mcp (dev convenience).
  • --name <key> (mcp) — server key in mcpServers (default boceto).
  • --skip-if-exists (mcp) — leave an existing entry untouched.
  • --json (check) — emit machine-parseable JSON.

Test overrides

BOCETO_CLAUDE_CODE_CONFIG, BOCETO_CURSOR_CONFIG, and BOCETO_CLAUDE_DESKTOP_CONFIG redirect config paths — used by tests and by the dry-run smoke script.