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

git-ai-local-ignore

v0.1.0

Published

Add local-only Git ignore rules for AI tool folders without touching .gitignore.

Downloads

11

Readme

git-ai-local-ignore

一个本地生效的 Git 小工具,用来把常见 AI 工具生成的配置目录写进 .git/info/exclude,避免把这些规则提交到仓库里的 .gitignore

它还顺手支持对已经被 Git 跟踪的文件执行 skip-worktree

安装

npm install -g git-ai-local-ignore

或直接用:

npx git-ai-local-ignore

默认会添加的本地忽略规则

.codex/
.claude/
.hermes/
.cursor/
.windsurf/
.aider*/
.continue/
.cline/
.roo/
.roo-code/
.kiro/
.gemini/
.qwen/
.copilot/
.specstory/

用法

直接把默认规则写入当前 Git 仓库的 .git/info/exclude

git-ai-local-ignore

追加自定义规则:

git-ai-local-ignore --pattern ".my-ai/" --pattern ".secret-prompts/"

查看默认规则:

git-ai-local-ignore --list-defaults

撤销这个工具写入的忽略块:

git-ai-local-ignore --undo

对已跟踪文件启用 skip-worktree

git-ai-local-ignore --skip-worktree vite.config.ts

撤销 skip-worktree

git-ai-local-ignore --unskip vite.config.ts

预览但不真正写入:

git-ai-local-ignore --dry-run

指定目标目录:

git-ai-local-ignore --cwd /path/to/project