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

swe-copilot-kit

v0.0.3-beta.1

Published

CLI toolkit to initialize GitHub Copilot prompts and agents in your project

Readme

SWE Copilot Kit

npm version npm-ci npm-publish

A CLI toolkit to initialize curated prompts, agents, and skills in your project to support common Software Engineering tasks. These templates are designed to work with GitHub Copilot, Claude Code, and so on. Currently supports:

| Tool | Supported | Prompts | Agents | Skills | |------|-----------|---------|-------|-------| | GitHub Copilot | Yes (Default) | Yes | Yes | Yes | | Claude Code | Coming soon | No | No | No | | Antigravity | Coming soon | No | No | No |

Quick Start

Using npx (no installation required)

npx swe-copilot-kit init

Global Installation

npm install -g swe-copilot-kit
swe-copilot-kit init

Or use the shorter alias:

sck init

What It Does

This CLI toolkit unpacks pre-configured GitHub Copilot prompts and agents into your project's .github directory:

your-project/
├── .github/
│   ├── prompts/
│   │   └── swe.*.prompt.md
│   ├── agents/
│   │   └── swe.*.agent.md
│   └── skills/
│       └── swe.*
│           └── SKILL.md

Commands

init

Initialize GitHub Copilot configuration in your project.

swe-copilot-kit init [options]

Options:

| Option | Description | |--------|-------------| | -f, --force | Overwrite existing files | | --claude-code | Initialize for Claude Code (Coming soon) | | --antigravity | Initialize for Antigravity (Coming soon) |

Examples:

# Initialize everything
swe-copilot-kit init

# Force overwrite existing files
swe-copilot-kit init --force

list

List available templates.

swe-copilot-kit list

Included Templates

The package includes a variety of prompts and agents designed to assist with software engineering tasks, such as code committing, code reviewing, and coding assistance.

Programmatic Usage

You can also use this package programmatically:

import { copyPrompts, copyAgents, initAll, listTemplates } from 'swe-copilot-kit';

// Initialize prompts only
await copyPrompts({ force: true });

// Initialize agents only
await copyAgents({ targetDir: '/path/to/project' });

// Initialize everything
const result = await initAll({ force: true });

// List available templates
const templates = await listTemplates();
console.log(templates.prompts);
console.log(templates.agents);

Using with GitHub Copilot

After initialization, you can use the prompts and agents with GitHub Copilot:

  1. Prompts: Reference prompts in Copilot Chat using /prompt <prompt-name> to get specific assistance.
  2. Agents: Agents provide extended capabilities and workflows for Copilot

Customization

After initialization, you can customize the prompts and agents to match your project's needs:

  1. Edit the .github/prompts/swe.*.prompt.md files to adjust prompt behavior
  2. Modify .github/agents/swe.*.agent.md files to change agent capabilities

Development

Building from source

git clone https://github.com/tlephan/swe-copilot-kit.git
cd swe-copilot-kit
npm install
npm run build

Running locally

npm run dev -- init

License

MIT License