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

twentythree-skills

v1.7.0

Published

AI agent skills for the TwentyThree CLI

Readme

twentythree-skills

AI agent skills for the TwentyThree CLI — installable markdown skill definitions for OpenCode, Claude Code, Antigravity CLI, OpenAI Codex, Cline, Goose, Aider, Cursor, Windsurf, and GitHub Copilot.

Install from your AI assistant (no terminal)

Paste this into Claude Code, Codex, Cursor, Windsurf, Cline, Gemini CLI, or any agent that can run shell commands, and it will install everything for you:

Install the TwentyThree CLI and its AI skills on this machine, then verify:
1. Run: npm install -g twentythree-cli
2. Run: npx -y twentythree-skills
3. Ask me for my TwentyThree workspace domain and bearer token, then run:
   twentythree auth credentials --domain <domain> --token <token>
4. Verify with: twentythree doctor
If Node 22+ / npm isn't installed, stop and tell me how to install it first.

The assistant runs the install, detects its own runtime, and drops the skill files in the right place — then you can ask it to upload videos, run webinars, or query analytics in plain language.

Install from the terminal

npx twentythree-skills

Detects your agent runtime and copies skill files into the right location automatically. Run again at any time to update — it's idempotent.

Project-local install:

npx twentythree-skills --project

Installs into .claude/skills/, .agents/skills/, .github/skills/, or .cursor/skills/ relative to the current directory.

What's included

  • skills/SKILL.md — root skill file: auth setup, command syntax, resource index, --agent flag docs
  • skills/reference/*.md — 22 reference files, one per TwentyThree CLI resource group (video, webinar, analytics, …)
  • skills/workflows/*.md — workflow files for high-value automation patterns (video upload, webinar lifecycle)
  • skills/hooks/ — an optional Claude Code hook that enforces session telemetry deterministically (see below)

Session telemetry hook (Claude Code)

The skill asks the agent to report a session-status record whenever it uses the TwentyThree CLI or API, and to show a one-line confirmation. Because prompt rules are best-effort, Claude Code installs a harness hook by default — running npx twentythree-skills wires a hook into ~/.claude/settings.json (idempotent, backed up first) that blocks a turn from ending if TwentyThree was used but no report was sent:

npx twentythree-skills              # installs the skill + telemetry hook (Claude Code)
npx twentythree-skills --no-hook    # skip the hook (copy skill files only)
npx twentythree-skills --install-claude-hook   # (re)install just the hook

Other runtimes have no equivalent stop-hook and rely on the prompt checklist in SKILL.md.

Supported runtimes

| Runtime | Detection | Global install path | Project install path (--project) | |---------|-----------|---------------------|------------------------------------| | OpenCode | ~/.config/opencode/ | ~/.config/opencode/skills/twentythree/ | .opencode/skills/twentythree/ | | Claude Code | ~/.claude/ | ~/.claude/skills/twentythree/ | .claude/skills/twentythree/ | | Antigravity CLI | ~/.gemini/ | ~/.gemini/antigravity-cli/skills/twentythree/ | .agents/skills/twentythree/ | | OpenAI Codex | ~/.codex/ | ~/.codex/skills/twentythree/ | .agents/skills/twentythree/ | | Cline | ~/.clinerules/ | ~/.clinerules/twentythree/ | .clinerules/twentythree/ | | Goose | ~/.config/goose/ | ~/.config/goose/skills/twentythree/ | .goose/skills/twentythree/ | | Aider | ~/.aider.conf.yml | ~/.aider/skills/twentythree/ | .aider/skills/twentythree/ | | Cursor | ~/.cursor/ | ~/.cursor/skills/twentythree/ | .cursor/skills/twentythree/ | | Windsurf | ~/.codeium/ | ~/.codeium/windsurf/skills/twentythree/ | .windsurf/skills/twentythree/ | | GitHub Copilot | ~/.github/copilot/ | ~/.github/skills/twentythree/ | .github/skills/twentythree/ |

The installer copies the same Markdown skill tree into every detected runtime's directory — each agent ingests it as project/skill context. OpenCode and Claude Code load it as a native skill; the others read it as project/instruction context. Goose and Aider have no skill-directory convention, so the files are dropped best-effort — point the tool at them (Aider: --read ~/.aider/skills/twentythree/SKILL.md; Goose: reference the path from a .goosehints file). Antigravity CLI is the renamed Gemini CLI (agy); Gemini CLI is retired as of June 2026. See the AI agents guide for per-runtime quick starts.

Prerequisites

The skills document the twentythree-cli. Install and authenticate it first:

npm install -g twentythree-cli
twentythree auth credentials

License

MIT