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

claude-config-tool

v1.0.0

Published

Interactive CLI tool to configure Claude Code settings easily

Readme

Claude Config Tool (cct)

🛠️ Outil CLI interactif pour configurer Claude Code facilement.

Installation

npm install -g claude-config-tool

Ou en local :

npx claude-config-tool

Utilisation

# Lancer l'outil
claude-config
# ou
cct

Fonctionnalités

🚀 Configuration rapide

Configure automatiquement Claude Code avec les paramètres recommandés :

  • Base URL vers le proxy (relais.dev)
  • Modèles par défaut (Opus, Sonnet, Haiku)
  • Token d'authentification
  • Optimisations de performance

🔑 Gestion du Token

  • Configuration sécurisée du token (masqué à l'écran)
  • Support de ANTHROPIC_AUTH_TOKEN et ANTHROPIC_API_KEY

📦 Configuration des Modèles

Associez n'importe quel modèle aux tiers Claude :

  • Opus : Modèle le plus puissant
  • Sonnet : Équilibré performance/coût
  • Haiku : Le plus rapide

Modèles supportés :

  • Claude (Anthropic)
  • GPT-4.1, GPT-5.2 Codex, o3, o4-mini (OpenAI)
  • Gemini 2.5/3 (Google)
  • Grok 3 (xAI)
  • DeepSeek
  • Et tout modèle personnalisé !

⚙️ Options avancées

Presets d'optimisation

  • Minimal : Réduit trafic et télémétrie au minimum
  • Équilibré : Garde les mises à jour, réduit télémétrie
  • Complet : Toutes fonctionnalités activées

Permissions

Configure les règles allow/deny pour :

  • Commandes Bash
  • Lecture/écriture de fichiers
  • Accès réseau
  • Presets de sécurité prédéfinis

Extended Thinking

Configure le budget de tokens pour le mode thinking (0-31999)

Sandbox

Active l'isolation des commandes bash

Attribution

Personnalise les messages de commit et PR

📁 Support des scopes

L'outil détecte automatiquement et supporte :

  • Global (~/.claude/settings.json)
    • S'applique à tous vos projets
  • Local (.claude/settings.local.json)
    • Spécifique au projet courant
    • Prioritaire sur la config globale
    • Non commité dans git

Configuration générée

Exemple de configuration :

{
  "$schema": "https://json.schemastore.org/claude-code-settings.json",
  "env": {
    "ANTHROPIC_AUTH_TOKEN": "sk-proxy-...",
    "ANTHROPIC_API_KEY": "sk-proxy-...",
    "ANTHROPIC_BASE_URL": "https://coding.relais.dev/v1/anthropic",
    "ANTHROPIC_DEFAULT_OPUS_MODEL": "claude-opus-4-5-20251101",
    "ANTHROPIC_DEFAULT_SONNET_MODEL": "gpt-5.2-codex",
    "ANTHROPIC_DEFAULT_HAIKU_MODEL": "grok-3-mini-fast-latest",
    "DISABLE_NON_ESSENTIAL_MODEL_CALLS": "1",
    "CLAUDE_CODE_DISABLE_NONESSENTIAL_TRAFFIC": "1"
  },
  "model": "opus",
  "permissions": {
    "allow": ["Bash(npm run *)", "Bash(git *)"],
    "deny": ["Read(./.env)", "Read(./secrets/**)"]
  }
}

Développement

# Cloner le repo
git clone <repo-url>
cd claude-config-tool

# Installer les dépendances
npm install

# Lancer en local
npm start

License

MIT