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

starkfi-agent-skills

v1.0.0

Published

Agent skills and one-command setup for StarkFi MCP (Cursor, Claude Desktop, Claude Code)

Readme

starkfi-agent-skills

Cursor Agent Skills plus a one-shot setup that copies those skills and registers the StarkFi MCP server ([starkfi-mcp](https://www.npmjs.com/package/starkfi-mcp)) in Cursor and Claude Desktop (macOS). It aligns with the starkfi-mcp-agent tool catalog and StarkFi docs (including Getting started / KYC).

Quick start

npx starkfi-agent-skills setup

Optional: export your key first so the script can write it into MCP configs:

export STARKFI_API_KEY="your_key_here"
npx starkfi-agent-skills setup

Non-interactive:

STARKFI_API_KEY="your_key_here" npx starkfi-agent-skills setup --yes

After setup, fully restart Cursor (and Claude Desktop if you use it) so MCP changes load.

What gets configured

| Target | What the setup does | |--------|---------------------| | Cursor | Copies agent-skills/*~/.cursor/skills/; merges ~/.cursor/mcp.jsonmcpServers.starkfi running npx -y starkfi-mcp | | Claude Desktop (macOS) | Creates or updates ~/Library/Application Support/Claude/claude_desktop_config.json with the same starkfi entry | | Claude Code | Optional: --claude-code-project writes .mcp.json in the current directory using "${STARKFI_API_KEY}" expansion (Claude Code MCP). Alternatively run: claude mcp add --transport stdio --scope user --env STARKFI_API_KEY=$STARKFI_API_KEY starkfi -- npx -y starkfi-mcp |

Flags

| Flag | Effect | |------|--------| | --yes / -y | No prompt; use STARKFI_API_KEY from the environment | | --dry-run | Print actions only (still reads disk) | | --skills-project | Copy skills to ./.cursor/skills instead of ~/.cursor/skills | | --claude-code-project | Merge ./.mcp.json for Claude Code project scope | | --no-cursor | Do not change ~/.cursor/mcp.json | | --no-claude-desktop | Do not change Claude Desktop config |

Auto-run on npm install

STARKFI_SKILLS_AUTO_SETUP=1 npm install starkfi-agent-skills

CI / automation: set SKIP_STARKFI_SKILLS_POSTINSTALL=1 to silence the post-install hint.

Skills included

See agent-skills/README.md. In Cursor, skills live under ~/.cursor/skills/<skill-name>/SKILL.md (not skills-cursor, which is reserved for Cursor-built-in content).

Security

Treat STARKFI_API_KEY like a production secret. Prefer MCP env in the host UI or OS keychain helpers over committing keys. If you use .mcp.json with ${STARKFI_API_KEY}, keep secrets out of git and document how teammates export the variable.

License

MIT — see LICENSE.