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

@lucassantana/adtl

v0.3.0

Published

CLI for ai-dev-toolkit-library: browse, install skills, register MCP servers with your local gateway.

Downloads

251

Readme

@lucassantana/adtl

CLI for ai-dev-toolkit-library — browse Skills and MCP servers, install them into Claude Code, and wire up your local MCP gateway to Claude Code, Codex, Cursor, Gemini, Windsurf, or Claude Desktop.

Install

No install needed:

npx @lucassantana/adtl <command>

Or globally:

npm i -g @lucassantana/adtl
adtl <command>

Commands

| Command | What it does | |---|---| | adtl list [--kind K] [--tag T] [query] | Browse the catalog. | | adtl search <query> | Alias for list. | | adtl install <skill-or-agent-id> [--force] | Copies a skill to ~/.claude/skills/<id>/ or an agent to ~/.claude/agents/<id>.md. | | adtl add-server <server-id> | Registers a catalog MCP server with your local gateway. | | adtl setup <editor> / adtl setup --all / adtl setup --list | Wire one or more editors' MCP configs to the local gateway. | | adtl doctor | Verifies catalog + gateway + editor configs are healthy. |

Per-editor aliases

Every adapter also has a dedicated command — identical to adtl setup <editor>, shorter to type:

| Alias | Editor | Writes | |---|---|---| | adtl setup-claude | Claude Code | ~/.claude/settings.json | | adtl setup-claude-desktop | Claude Desktop | ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) / %APPDATA%/Claude/… (Win) / ~/.config/Claude/… (Linux) | | adtl setup-codex | Codex CLI | ~/.codex/config.toml | | adtl setup-cursor | Cursor | ~/.cursor/mcp.json | | adtl setup-gemini | Gemini CLI | ~/.gemini/settings.json | | adtl setup-windsurf | Windsurf | ~/.codeium/windsurf/mcp_config.json |

Every setup command:

  • Merges into existing config (your other MCP servers are preserved).
  • Writes a .bak of the previous file before overwriting.
  • Uses npx -y mcp-remote <gateway-url> inline — no wrapper script, no repo clone required.

Setup flags

  • --all — install into every editor whose config directory already exists on disk (auto-detect).
  • --gateway-url <url> — override gateway URL. Default: http://127.0.0.1:4444.
  • --server-uuid <uuid> — skip the live gateway probe and hard-code the virtual-server UUID. Useful when running against a pinned or remote gateway.

First-time setup

# 1. Start your local gateway (one-time)
git clone https://github.com/LucasSantana-Dev/ai-dev-toolkit-library
cd ai-dev-toolkit-library/gateway
# create gateway/.env per gateway/README.md
docker compose up -d
python seeds/seed.py

# 2. Wire every installed editor
npx @lucassantana/adtl setup --all

# 3. Browse + install
npx @lucassantana/adtl list --kind skill
npx @lucassantana/adtl install prompting-discipline
npx @lucassantana/adtl doctor

Data sources

  • Catalog index: fetched from main branch on every run (cached under ~/.cache/adtl/).
  • Running from inside a cloned repo: local catalog/index.json wins.

License

MIT.