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-worktree-skill

v1.1.1

Published

Interactive installer for Git Worktree Management skill across multiple AI agents

Readme

Git Worktree Skill

Interactive installer for Git Worktree Management skill. Creates proper SKILL.md files following the Agent Skills standard.

Quick Install

npx git-worktree-skill

Or clone and run locally:

git clone https://github.com/jparkerweb/ai-skill--git-worktree
cd ai-skill--git-worktree
npm install
npm start

Supported AI Agents

| Agent | Key | Skill Location | |-------|-----|----------------| | Claude Code | claude-code | .claude/skills/git-worktree/SKILL.md | | GitHub Copilot | github-copilot | .github/skills/git-worktree/SKILL.md | | Windsurf | windsurf | .cascade/skills/git-worktree/SKILL.md | | Cline | cline | .cline/skills/git-worktree/SKILL.md | | Gemini CLI | gemini-cli | .gemini/skills/git-worktree/SKILL.md | | Roo Code | roo-code | .roo/skills/git-worktree/SKILL.md | | Codex CLI | codex | .agents/skills/git-worktree/SKILL.md | | OpenCode | opencode | .opencode/skills/git-worktree/SKILL.md |

All agents also support global installation (e.g., ~/.claude/skills/git-worktree/SKILL.md).

CLI Options

# Interactive installation (select agents with arrow keys)
npx git-worktree-skill

# Non-interactive install for specific agents
npx git-worktree-skill --install claude-code,cline,windsurf

# Install with global paths preference
npx git-worktree-skill --install claude-code --global

# Install with project paths preference
npx git-worktree-skill --install windsurf --project

# Force overwrite existing skill files
npx git-worktree-skill --install claude-code --force

# Show help
npx git-worktree-skill --help

# List supported agents
npx git-worktree-skill --list

# Show documentation links
npx git-worktree-skill --docs

Interactive Mode

When run without --install, the installer provides an interactive experience:

  1. Select agents - Use spacebar to toggle, enter to confirm
  2. Choose paths - Pick global or project-level installation
  3. Handle conflicts - Overwrite or skip existing skill files
  4. View summary - See all installed locations

What Gets Installed

Each agent receives a SKILL.md file with YAML frontmatter and comprehensive instructions:

---
name: git-worktree
description: Git Worktree Management Assistant - guides users in creating, managing, and removing Git worktrees for parallel development workflows
---

The skill provides your AI assistant with:

  • Quick reference for all worktree commands
  • Step-by-step workflows for common scenarios
  • Troubleshooting guide for common issues
  • Interactive guidance protocol for helping users
  • Environment setup templates (Node.js, Python)

Example Usage

After installation, ask your AI assistant:

  • "Help me create a worktree for a new feature"
  • "List my current worktrees"
  • "How do I switch between worktrees?"
  • "Clean up my old worktrees"
  • "What are the benefits of worktrees vs stashing?"

Manual Installation

If you prefer manual installation, copy GIT-WORKTREE-PROMPT.md into a git-worktree/SKILL.md file inside your agent's skills directory.

Files

| File | Purpose | |------|---------| | install.js | Interactive installer script | | GIT-WORKTREE-PROMPT.md | The skill content (with YAML frontmatter) | | package.json | Node.js package configuration |

License

MIT