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

slack-ticket

v0.3.0

Published

CLI tool to convert Slack threads into GitHub issues

Readme

Slack-Ticket

slack-ticket banner

Overview

slack-ticket is a high-performance CLI tool designed to bridge the gap between Slack communication and GitHub issue tracking. It leverages AI to transform fragmented Slack threads into perfectly structured, actionable GitHub issues, saving QA and Support teams hours of manual documentation every week.


Table of Contents

  1. Installation & Usage
  2. Setup Guide
  3. Usage Guide
  4. Command Reference
  5. Team Participation & Contribution
  6. License

Installation & Usage

Depending on your role and frequency of use, there are three primary ways to interact with the tool. Regardless of the method chosen, you must first complete the Setup Guide to configure your Slack, GitHub, and AI provider tokens.

1. Global Package Installation

For users who need to report issues frequently across various projects, installing the package globally is the most efficient method.

  • No limitations exist regarding accessibility as this method allows you to invoke the slack-ticket command from any directory on your system at any time.
  • The only limitation of this method is that it requires proper npm permissions and environment configuration to ensure the global binary is correctly mapped to your system's PATH.
# Install globally
npm install -g slack-ticket

# Run setup
slack-ticket setup

# Create an issue
slack-ticket create <slack-thread-url>

2. Remote Execution (Pulling the Codebase)

If you only need to use the tool occasionally or want to ensure you are always running the absolute latest version without a permanent footprint, you can pull and execute it directly.

  • There are no limitations regarding disk space or version management because the tool is fetched and executed in a temporary environment on-the-fly.
  • A significant limitation is the requirement for a stable internet connection for every execution as the codebase must be pulled from the registry before it can run.
# Execute without installing
npx slack-ticket create <slack-thread-url>

3. Local Clone and Build

For advanced users or the development team, cloning the repository provides a local environment for testing and custom builds.

  • No limitations are present for teams who wish to customize the AI prompts or integration logic to suit their specific internal workflows.
  • The limitation of this approach is the requirement to manually manage dependencies and perform a build step whenever the source code is updated.
# Clone the repository
git clone https://github.com/elvis-ndubuisi/slack-ticket.git
cd slack-ticket

# Install and build
pnpm install
pnpm build

# Run locally
node dist/cli.js setup

Setup Guide

Detailed instructions for obtaining API tokens and configuring the tool can be found in the Setup Guide.

Usage Guide

For a deep dive into every command, argument, and option available, refer to the Usage Guide.


Command Reference

| Command | Description | | :--- | :--- | | setup | Interactive wizard to configure your tokens and default preferences. | | create <url> | Fetches a Slack thread (up to 3 messages by default) and creates a GitHub issue. | | update <#> | Appends new Slack message content to an existing GitHub issue number. | | doctor | Runs a diagnostic suite to verify your Slack, GitHub, and AI connectivity. | | config view | Displays your current configuration with sensitive tokens safely masked. | | learn <path-or-url> | Learn team workflow rules from a Markdown file or URL. | | unlearn | Remove learned workflows and revert to default behavior. | | workflow list | List learned workflows on this machine. | | workflow view <id-or-repo> | View a learned workflow by ID or repo. | | learn + Project Fields | Supports setting Project v2 fields via projectFields in the workflow. |


Team Participation & Contribution

For QA & Support Teams

  • Use the doctor command: If you encounter issues creating tickets, run slack-ticket doctor first to see if a token has expired or permissions have changed.
  • Leverage Dry Runs: Use the --dry-run flag with the create command to see what the AI will generate before it touches GitHub.
  • Selective Updates: Use the update command to keep issues "alive" as new information arrives in Slack, rather than creating duplicate issues.

Contributing

We welcome contributions! To streamline our release process, we use Changesets.

When you submit a PR with a new feature or bug fix:

  1. Run pnpm changeset locally before committing.
  2. Follow the interactive prompts to declare a patch, minor, or major bump and write a quick summary of your change.
  3. Commit the generated .changeset/*.md file along with your code.

When your PR merges to main, our GitHub Actions CI will automatically parse your changeset, update the CHANGELOG.md, increment the version, and publish the new release to npm.

Ensure you have followed the Setup Guide before starting development.


License

ISC