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

@convozen/convozen-skills

v1.0.16

Published

ConvoZen agent skills — install into Claude Code, Codex, Cursor, Gemini CLI and any agent that supports the Agent Skills spec

Readme

🎙️ ConvoZen Agent Skills

Drop-in skills that teach your AI coding agent to build, edit, test & ship ConvoZen WhatsApp / voice agents — from the editor you already use.

A skill is a folder of instructions (SKILL.md + reference/ + templates/) your agent reads on demand. Once installed, you just talk to your agent in plain language — "create a WhatsApp support bot", "add this API as a tool", "test the agent on my number" — and it drives the convozen CLI for you.

Claude Code Codex Cursor Gemini CLI Agent Skills

$ npx @convozen/convozen-skills install

Installing 10 ConvoZen skills (global: /home/you)
  + Claude Code /creating-agents
  + Claude Code /editing-agents
  + Claude Code /testing-agents
  + Codex       /managing-actions
  + Codex       /managing-knowledge-bases
  ...
Done.  ↻ Restart your agent to pick up the new skills.

⚡ Quick start

# 1 ─ Install the skills into every agent we detect on this machine
npx @convozen/convozen-skills install

# 2 ─ Install the ConvoZen CLI the skills drive
curl -fsSL https://cli-dev.convozen.ai/install.sh | sh

# 3 ─ Restart your agent, then just ask it to "create a ConvoZen agent"

Heads-up: the skills are the instructions; the convozen CLI is the engine. Install both.

Requirements: Node.js ≥ 18 (for npx), and one supported agent (Claude Code, Codex, Cursor, Gemini CLI, or any Agent-Skills-compatible tool). Nothing is installed globally — npx runs the installer on the fly and only copies skill folders into your agent's skills/ dir.


🤖 Per-agent install

The installer auto-detects which agents are present (it looks for ~/.claude, ~/.codex, … ) and copies the skills into each. To target one explicitly, pass --agent. Pick your tool below:

Claude Code

npx @convozen/convozen-skills install --agent claude

~/.claude/skills/

Codex

npx @convozen/convozen-skills install --agent codex

~/.codex/skills/

Cursor

npx @convozen/convozen-skills install --agent cursor

~/.cursor/skills/

Gemini CLI

npx @convozen/convozen-skills install --agent gemini

~/.gemini/skills/

📁 Any other agent (generic)

Any tool that honours the Agent Skills skills/<name>/SKILL.md layout. Falls back here automatically when no known agent is detected.

npx @convozen/convozen-skills install --agent agents

~/.agents/skills/

Combine & scope--agent is repeatable, and you can install per-project instead of globally:

# multiple agents at once
npx @convozen/convozen-skills install --agent claude --agent codex

# into the current project (./.claude/skills) instead of your home dir
npx @convozen/convozen-skills install --project

🔄 Restart your agent after installing so it discovers the new skills.


🔁 Updating

When a new version ships, grab the latest and overwrite in place:

npx @convozen/convozen-skills@latest update

The @latest tag forces npx to fetch the newest published version instead of a cached one; update overwrites existing skills. (Plain install skips skills that already exist — use update, or install --force, to refresh them.)


🧰 Commands

| Command | Alias | What it does | |---|---|---| | install | add | Copy skills into detected (or --agent-selected) agents | | update | upgrade | Re-install the latest, overwriting existing skills (install --force) | | list | ls | Show the bundled skills and every supported agent + its target dir | | help | -h, --help | Usage, options and examples |

Options

| Flag | Default | Meaning | |---|---|---| | --agent <name> | auto-detect | Target a specific agent — repeatable. One of claude, codex, cursor, gemini, agents | | --global | ✅ on | Install into your home dir (~) | | --project / --local | — | Install into the current project dir instead | | --force | — | Overwrite skills that already exist (implied by update) |

# see what's bundled and where each agent gets it
npx @convozen/convozen-skills list

# full usage
npx @convozen/convozen-skills help

🧩 Requires the ConvoZen CLI

These skills drive the convozen CLI — the binary that actually talks to the ConvoZen backend. Install it first:

curl -fsSL https://cli-dev.convozen.ai/install.sh | sh
convozen auth login

Keep it current with the built-in self-updater:

convozen update      # pulls the latest binary, checksum-verified, in place

📦 What's inside

Ten self-contained skills — each ships with its own reference/ and templates/:

| Skill | Teaches your agent to… | |---|---| | getting-started | Orient in ConvoZen, auth, pick org/project | | inspecting-agents | List and read existing agents | | creating-agents | Build a new WhatsApp / voice agent end-to-end | | editing-agents | Safely fork-and-edit a published agent | | testing-agents | Run and validate an agent | | managing-actions | Wire up and edit agent actions | | managing-knowledge-bases | Attach and manage knowledge bases | | authoring-prompts | Write effective agent prompts | | selecting-voices-handlers-and-listeners | Pick voices, handlers and listeners | | troubleshooting | Diagnose and fix common failures |