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

code-assistant-config-interface

v1.1.8

Published

CACI (Code Assistant Configuration Interface) - Intelligent CLI tool for configuring Claude Code projects

Downloads

31

Readme

CACI

CACI (Code Assistant Configuration Interface) - An intelligent CLI tool for configuring Claude Code projects.

Overview

CACI (Code Assistant Configuration Interface) is an npm package that provides an interactive CLI interface to automate the configuration of Claude Code projects. It intelligently analyzes project requirements and selects the most relevant agents, commands, MCPs, and hooks from a large pool of available components.

Features

  • Interactive CLI Interface: Easy-to-use command-line interface similar to the BMAD-method installer
  • AI-Powered Component Selection: Uses OpenRouter API with automatic key creation to intelligently recommend components based on project requirements
  • Component Analysis: Parses a large pool of components (102+ agents) and recommends the most relevant ones
  • Colorful Output: User-friendly interface with colored output for better readability
  • Comprehensive Testing: Full test coverage for all functionality

Installation

No installation required! Run directly with npx:

npx code-assistant-config-interface configure

Or install globally:

npm install -g code-assistant-config-interface

Usage

# Run configuration (recommended)
npx code-assistant-config-interface configure

# Or if installed globally:
caci configure

# Other commands
caci update      # Update existing configuration
caci reset       # Reset to previous configuration
caci history     # View configuration history
caci --help      # Display help

Commands

  • configure: Start the configuration process for a new project
  • update: Update the existing configuration
  • reset: Restore the previous configuration
  • --help: Display help information

Requirements

To use the AI-powered component recommendation feature:

  1. The tool will automatically prompt you to authenticate with OpenRouter when needed
  2. It uses OpenRouter's auto-create key format for seamless authentication
  3. No manual API key setup required - authentication is handled through OAuth flow

Development

Prerequisites

  • Node.js (v14 or higher)
  • npm

Setup

git clone <repository-url>
cd caci
npm install

Building

npm run build

Testing

npm test

Running locally

npm start

Project Structure

src/
├── cli/                 # CLI interface and commands
├── analyzer/            # Component analysis and AI recommendations
│   ├── index.ts         # Data models and interfaces
│   ├── parser.ts        # Component JSON parsing
│   ├── questions.ts     # Interactive question flow
│   ├── requirementCollector.ts # CLI prompts for requirements
│   ├── ai-recommender.ts # AI-powered component recommendation
│   └── display.ts       # Recommendation display
└── types/               # TypeScript types

tests/
├── cli/                 # CLI interface tests
└── analyzer/            # Component analysis tests

Contributing

  1. Fork the repository
  2. Create a feature branch
  3. Commit your changes
  4. Push to the branch
  5. Create a pull request

License

MIT

Acknowledgements

  • Uses OpenRouter API for AI-powered recommendations
  • Built with Commander.js for CLI interface
  • Uses Chalk for colorful terminal output
  • Integrates with Claude Code project configuration system