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

@interactkit/cli

v0.0.1

Published

InteractKit Command Line Interface

Readme

InteractKit CLI

Command-line interface for bootstrapping and extending InteractKit bot applications.

Install / Run

You can invoke the CLI without installing globally:

npx interactkit create-app

Or install globally (optional):

npm install -g @interactkit/cli
interactkit create-app

Alternative entrypoints (aliases):

create-interactkit-app    # same as: interactkit create-app

Core Commands

| Command | Description | |---------|-------------| | interactkit create-app | Interactive wizard to scaffold a new bot app in a new folder. | | interactkit add-bot [BotName] | Add a new bot (code, session handler, optional toolkit) to existing project. | | interactkit add-tool <BotName> <ToolName> | Append a tool method to a bot's toolkit file. |

Run interactkit with no arguments to see usage.

Creating a New App

npx interactkit create-app

Generated Project Structure (example)

my-interactkit-bot-app/
	package.json
	tsconfig.json
	.env.example
	src/
		index.ts          # Entry – loads env, initializes SDK
		config.ts         # Bot registration array
		bots/
			MyBot/
				MyBot.ts      # Bot implementation
				Session.ts    # Session events handler
				tools/
					MyBotToolKit.ts  # (if generated) Toolkit w/ sample tools

Environment Variables

Place required secrets in .env (never commit). The wizard populates .env.example based on selected modules. Always set:

INTERACTKIT_API_KEY=your_api_key_here

Additional provider-specific variables appear in .env.example (e.g. model API keys). Only required or sensitive params are listed.

Development Workflow

Inside a generated app:

npm install       # install deps
npm run dev       # start with ts-node + nodemon
npm run build     # emit dist/ JS
npm start         # run compiled output

Adding Bots Later

From the root of an existing InteractKit project (must contain src/config.ts):

interactkit add-bot SupportBot

The wizard will prompt for module selections; it updates:

  • src/bots/SupportBot/*
  • src/config.ts (imports & adds to bots array)
  • .env.example (merges new variables)

Adding Tools to a Bot

interactkit add-tool SupportBot my_new_tool

Injects a new decorated method into that bot's toolkit file (creates imports if needed). The method returns a string placeholder you can modify.