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

kezaco

v1.1.0

Published

Make Claude Code speak plain language πŸ—£οΈ - Customizable verbosity levels and risk indicators

Readme

kezaco πŸ€”

npm version npm downloads License: MIT Zero Dependencies

Make Claude Code speak plain language πŸ—£οΈ

Fais parler Claude Code simplement


You use Claude Code but don't always understand what it's doing? kezaco adds simple, non-technical explanations to every action, with visual risk indicators so you always know what's safe.

Tu utilises Claude Code mais tu comprends pas toujours ce qu'il fait ? kezaco ajoute des explications simples Γ  chaque action, avec des indicateurs de risque visuels pour toujours savoir ce qui est safe.

✨ Before / After · Avant / Après

Creating file src/utils/helpers.js...
🟒 I'm creating a file that will contain
small helper functions we'll reuse
throughout the app.
β†’ Why? To keep our code DRY and organized.

πŸš€ Quick Start

# Install with npx (recommended)
npx kezaco install

# Or install globally
npm install -g kezaco
kezaco install

That's it! Claude Code will now explain what it's doing in French by default.

English?

npx kezaco install --lang en

🎚️ Verbosity Levels · Niveaux de Verbosité

Choose how detailed you want explanations to be:

| Level | Description | Best for | |-------|-------------|----------| | beginner | πŸ“š Detailed with analogies, glossary, and tips | Learning & non-technical users | | normal | πŸ“ Simple explanations with "Why?" | Default - most users | | minimal | ⚑ Ultra-concise: emoji + 5 words max | Experienced users | | tech | πŸ’» Technical language, optional rationale | Developers |

Examples by Level Β· Exemples par Niveau

🟒 I'm reading the package.json file (it's like your project's
ID card - it lists all installed tools, similar to an ingredient
list on a food package).
   β†’ Why? To understand what tools are already available.
   β†’ Best practice: Always check this file before adding new tools!
🟒 I'm reading the package.json file to check dependencies.
   β†’ Why? To avoid installing duplicates.
🟒 Reading package.json
🟒 Parsing package.json to analyze the dependency tree.

Changing Level Β· Changer de Niveau

# At installation
npx kezaco install --level beginner

# Or anytime after
kezaco level tech

🚦 Risk Indicators · Indicateurs de Risque

Every action starts with a visual risk indicator:

| Indicator | Level | Description | Exemples | |:---------:|-------|-------------|----------| | 🟒 | Safe | Reversible, no impact | Read, create, search | | 🟑 | Caution | Modifies state - verify first | Edit, install, configure | | πŸ”΄ | Danger | Irreversible or sensitive | Delete, push, deploy |

🟒 Safe Actions:

  • Reading files (cat, head, tail, grep)
  • Creating new files
  • Searching/exploring codebase
  • Running read-only commands (ls, pwd, git status)

🟑 Caution Actions:

  • Modifying existing files
  • Installing packages (npm install, pip install)
  • Changing configuration
  • Git operations (add, commit)

πŸ”΄ Danger Actions:

  • Deleting files or directories
  • Git push (especially to main/master)
  • Running destructive commands (rm -rf)
  • Database migrations
  • Production deployments

πŸ“– Commands Reference

| Command | Description | |---------|-------------| | kezaco install | Enable explanations (french, normal by default) | | kezaco install --lang en | Enable in english | | kezaco install --level beginner | Enable with beginner verbosity | | kezaco level <level> | Change verbosity level | | kezaco status | Show current configuration | | kezaco uninstall | Disable and clean up | | kezaco --help | Show help |

Full Installation Options

# All options combined
npx kezaco install --lang en --level tech

# Short flags
npx kezaco install -l en -L beginner

| Option | Short | Values | |--------|-------|--------| | --lang | -l | fr (default), en | | --level | -L | beginner, normal (default), minimal, tech |

πŸ”§ How it Works

kezaco adds instructions to your ~/.claude/CLAUDE.md file (Claude Code's global configuration). That's it - nothing else is modified, no data is collected.

~/.claude/CLAUDE.md
β”œβ”€β”€ <!-- kezaco:start -->
β”œβ”€β”€ <!-- lang:fr -->
β”œβ”€β”€ <!-- level:normal -->
β”œβ”€β”€ [Instructions for Claude Code]
└── <!-- kezaco:end -->

❓ FAQ

No. kezaco only adds text instructions to Claude Code's config file. It doesn't run any code during Claude Code's operation.

Yes! kezaco only modifies its own block (between <!-- kezaco:start --> and <!-- kezaco:end -->). Any other content in your CLAUDE.md is preserved.

Your language setting is preserved. The new level feature is added with default (normal).

Contributions welcome! Add templates in lib/templates/[lang]/ and submit a PR.

πŸ§ͺ Testing

Quick validation after installation:

# Check status
kezaco status

# Should show:
# βœ… kezaco is active
#   πŸ“ Language: en
#   πŸ“Š Level: normal
# Fresh install
kezaco uninstall 2>/dev/null
kezaco install --lang en --level beginner
kezaco status

# Change level
kezaco level tech
kezaco status

# Error handling
kezaco install --level invalid  # Should show error

# Cleanup
kezaco uninstall
kezaco status  # Should show not installed

🀝 Contributing

PRs welcome! Ideas for contributions:

  • 🌍 New languages - Add templates in lib/templates/[lang]/
  • πŸ“ Better explanations - Improve existing templates
  • πŸ› Bug fixes - Report issues or submit fixes
  • πŸ’‘ Features - Suggest new features via issues

πŸ“„ License

MIT - Use it however you want!