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

ai-setup-cli

v1.1.4

Published

One command to configure any AI coding tool in your project

Readme

ai-setup-cli

One command to configure any AI coding tool in your project.

npx ai-setup-cli

Installs ready-to-use config files for the tool(s) you pick. Edit them to match your project.

Tools

| Tool | Instruction file | |------|-----------------| | Claude Code | CLAUDE.md | | Cursor | AGENTS.md | | Gemini CLI | GEMINI.md | | GitHub Copilot | .github/copilot-instructions.md | | OpenCode | AGENTS.md | | Windsurf | AGENTS.md |

Files installed

Claude Code

| File | Purpose | |------|---------| | CLAUDE.md | Project instructions: commands, code style, workflow, banned patterns | | .claude/settings.json | Permissions and hook config | | .claude/rules/code-style.md | Import conventions, formatting, naming | | .claude/rules/testing.md | Test runner preferences, file colocation | | .claude/rules/security.md | No hardcoded secrets, input validation | | .claude/hooks/protect-files.sh | Prevents editing .env, package-lock.json | | .claude/agents/code-reviewer.md | Code reviewer subagent | | .claude/commands/review.md | /review slash command | | .claude/commands/document.md | /document slash command | | .claude/skills/write-commit/SKILL.md | write-commit skill | | .mcp.json | Project-scoped MCP server definitions |

Cursor

| File | Purpose | |------|---------| | AGENTS.md | Project instructions | | .cursor/rules/general.mdc | alwaysApply: true — applies to all files | | .cursor/rules/components.mdc | Scoped to src/components/**/*.tsx | | .cursor/rules/testing.mdc | Test conventions | | .cursor/hooks.json | Hook definitions | | .cursor/hooks/protect-files.sh | Prevents editing protected files | | .cursor/hooks/audit-tool.sh | Logs tool calls | | .cursor/agents/code-reviewer.md | Code reviewer agent | | .cursor/prompts/review.md | Review prompt | | .cursor/prompts/write-commit.md | Write commit prompt | | .cursor/mcp.json | Project-scoped MCP server definitions | | .cursorignore | Files excluded from Cursor's context |

Gemini CLI

| File | Purpose | |------|---------| | GEMINI.md | Project-wide rules loaded into every session | | .geminiignore | Files excluded from Gemini's context | | .gemini/commands/commit.toml | /commit command | | .gemini/commands/review.toml | /review command | | .gemini/hooks/pre-tool.sh | Runs before each tool call | | .gemini/hooks/post-tool.sh | Runs after each tool call | | .gemini/skills/write-commit/SKILL.md | write-commit skill |

GitHub Copilot

| File | Purpose | |------|---------| | AGENTS.md | Project instructions | | .github/copilot-instructions.md | Repository-wide instructions | | .github/agents/code-reviewer.agent.md | Code reviewer agent | | .github/prompts/review.prompt.md | Review prompt | | .github/prompts/write-commit.prompt.md | Write commit prompt | | .github/skills/write-commit/SKILL.md | write-commit skill |

OpenCode

| File | Purpose | |------|---------| | AGENTS.md | Project context and agent permissions | | opencode.json | Three agents: build, plan, code-reviewer | | prompts/build.txt | System prompt for the build agent | | prompts/plan.txt | System prompt for the plan agent | | prompts/code-reviewer.txt | System prompt for the code-reviewer agent | | .opencode/skills/write-commit/SKILL.md | write-commit skill |

Windsurf

| File | Purpose | |------|---------| | AGENTS.md | Project instructions | | .windsurf/rules/general.md | General rules applied to all files | | .windsurf/rules/components.md | Component conventions | | .windsurf/rules/testing.md | Test conventions | | .windsurf/hooks.json | Hook definitions | | .windsurf/scripts/protect-files.sh | Prevents editing protected files | | .windsurf/agents/code-reviewer.md | Code reviewer agent | | .windsurf/workflows/commit.md | Commit workflow | | .windsurf/workflows/review.md | Review workflow | | .windsurf/skills/write-commit/SKILL.md | write-commit skill | | .codeiumignore | Files excluded from Windsurf's context |

CLI flags

| Flag | Effect | |------|--------| | (none) | Interactive: tool selection + per-file overwrite prompts | | --dry-run | Shows what would be written without touching the filesystem | | --yes | Skips overwrite prompts and always overwrites existing files |

Contributing

Add a new tool: create templates/<tool-id>/ with config files at their real project paths, add an entry to TOOLS in src/tools.ts, and open a PR.

License

MIT