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-composer

v0.1.14

Published

A tool that adds small enhancements to Claude Code

Readme

Claude Composer


THIS REPO HAS GRADUATED. THAT MEANS THAT I WILL NO LONGER BE USING IT AND WISH ANYONE LUCK AND JOY IF THEY WANT TO FORK IT, CONTINUE USING IT, TAKE IT OVER, OR WHATEVER OTHER ACTIVITIES MAKE A PERSON HAPPY. GOING FORWARD I AM USING HOOKS TO ACHIEVE YOLO MODE:

https://github.com/possibilities/claude-code-generic-hooks

AND I USE PERMISSION MODES TO START IN PLAN MODE:

https://docs.anthropic.com/en/docs/claude-code/iam#permission-modes

ALSO I JUST RELEASED MY COMPREHENSIVE REPLACEMENT FOR EVERYTHING CLAUDE COMPOSER DOES:

https://github.com/possibilities/claude-code-inject

ALSO USE DIRTY-COMMIT TO GET THE SAME CONFIRMATIONS THAT CLAUDE-COMPOSER PROVIDES AROUND NON-GIT AND DIRTY GIT DIRECTORIES:

https://github.com/possibilities/dirty-commit


A tool that adds small enhancements to Claude Code

Tests

Features

  • Reduced interruptions: Automatic confirmation prompt acceptance
  • Tool management: Toolsets configure which tools Claude can use
  • Enhanced visibility: System notifications keep you informed (BROKEN, WILL GET BIG UPDATE SOON)

Quick Start

# Install
npm install -g claude-composer

# Initialize configuration
claude-composer cc-init

# Run with default settings
claude-composer

# Use YOLO mode (accept all prompts)
claude-composer --yolo

Installation

Prerequisites: Node.js 18+, npm/yarn/pnpm, Claude Code installed

# Global install
pnpm add -g claude-composer
# or
yarn global add claude-composer
# or
npm install -g claude-composer

Command Line Options

Core Options

# Configuration
--yolo                           # Accept all prompts automatically
--toolset <name...>              # Use specified toolsets
--mode <mode>                    # Start in 'act' or 'plan' mode
--ignore-global-config           # Ignore global config

# Safety
--dangerously-allow-in-dirty-directory
--dangerously-allow-without-version-control
--dangerously-suppress-yolo-confirmation

# Notifications
--show-notifications / --no-show-notifications
--sticky-notifications / --no-sticky-notifications

# Debug
--quiet                          # Suppress preflight messages
--allow-buffer-snapshots         # Enable Ctrl+Shift+S snapshots
--log-all-pattern-matches        # Log to ~/.claude-composer/logs/

All unrecognized options pass through to Claude Code.

See docs/cli-reference.md for complete reference.

Configuration

Run claude-composer cc-init to create configuration:

# Global config (default)
claude-composer cc-init

# Project-specific config
claude-composer cc-init --project

Basic Configuration

# config.yaml
yolo: false # Set to true to accept all prompts

toolsets:
  - internal:core
  - my-tools

roots:
  - ~/projects/work
  - ~/projects/personal

show_notifications: true
sticky_notifications: false

See docs/configuration.md for details.

YOLO Mode

When enabled with --yolo flag or yolo: true in config, Claude Composer will automatically accept all prompts without confirmation. Use with caution!

Toolsets

Configure which tools Claude can use and MCP server connections.

See docs/toolsets.md for details.

Trusted roots

Use trusted roots to define trusted parent directories to auto-accept initial trust prompts.

See docs/roots-config.md for details.

Environment Variables

See docs/environment-variables.md for details.

License

This project is in the public domain. See the UNLICENSE file for details.