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

hey-claudio

v1.1.4

Published

πŸ€– HeyClaudio: AI-powered development assistant with R.A.D.A.R. analysis + C.I.D.E.R. atomic issues for Claude IDE

Readme

πŸ€– HeyClaudio - AI-Powered Development Assistant

Setup once, develop with AI everywhere.

HeyClaudio transforms any repository into an AI-powered development environment with R.A.D.A.R. analysis and C.I.D.E.R. atomic issues for Claude IDE.

πŸš€ Quick Start

# 1. Install globally
npm i -g hey-claudio

# 2. Setup in any project
cd your-project
claudio init

# 3. Start developing with AI
claude
# Then use: /radar:analyze, /cider:generate, /cider:work

✨ What You Get

🎯 Smart Project Setup

  • One command setup: claudio init configures everything
  • Smart detection: Automatically detects your tech stack
  • Claude IDE integration: Native slash commands ready to use

πŸ” R.A.D.A.R. Analysis

  • Reconocimiento: Codebase structure and architecture
  • AnΓ‘lisis: Code quality, patterns, dependencies
  • DocumentaciΓ³n: Missing docs, outdated content
  • Arquitectura: Design decisions and improvements
  • Recomendaciones: Actionable improvement suggestions

🎯 C.I.D.E.R. Atomic Issues

  • Contextualizar: Understand current project state
  • Iterar: Plan approach and break into tasks
  • Documentar: Create specifications and requirements
  • Ejecutar: Define implementation steps
  • Reflexionar: Plan testing and validation

πŸ“‹ Usage

Setup (One Time)

npm i -g hey-claudio
cd your-project
claudio init                 # Creates .claude/ structure + slash commands

Daily Development

claudio status              # Check project status
claude                      # Open Claude IDE

# Inside Claude IDE:
/radar:analyze              # Complete project analysis
/radar:quick               # Quick project overview
/cider:generate EPIC-API "implement auth"  # Generate atomic issues
/cider:work 123            # Work on specific issue
/cider:status              # Project status overview
/cider:list-epics          # Show available epics

Quick Commands

claudio                    # Show status + next steps
claudio open              # Open Claude IDE
claudio analyze           # Quick analysis without Claude IDE
claudio check             # Verify configuration

πŸ—οΈ Project Structure Created

your-project/
β”œβ”€β”€ .claude/
β”‚   β”œβ”€β”€ commands/          # Native slash commands
β”‚   β”‚   β”œβ”€β”€ radar/         # Analysis commands
β”‚   β”‚   └── cider/         # Issue management commands
β”‚   β”œβ”€β”€ current/           # Active project state
β”‚   β”‚   β”œβ”€β”€ project-state.md
β”‚   β”‚   β”œβ”€β”€ active-epic.md
β”‚   β”‚   └── next-session.md
β”‚   β”œβ”€β”€ epics/             # Epic management
β”‚   β”‚   └── epics-roadmap.md
β”‚   β”œβ”€β”€ sessions/          # Session history
β”‚   β”œβ”€β”€ guides/            # Development methodology
β”‚   └── templates/         # Reusable templates
└── analysis/              # Generated analysis reports

🎯 Workflow

1. Project Initialization

claudio init
# βœ… Creates .claude/ structure
# βœ… Detects tech stack
# βœ… Creates suggested epics
# βœ… Sets up development methodology

2. Analysis & Understanding

claude                     # Open Claude IDE
/radar:analyze            # Complete analysis
# βœ… Architecture analysis
# βœ… Code quality assessment
# βœ… Improvement recommendations
# βœ… Epic suggestions

3. Issue Generation

/cider:generate EPIC-FRONTEND "implement responsive design"
# βœ… Creates atomic issue (2-6 hours)
# βœ… Defines acceptance criteria
# βœ… Plans implementation approach
# βœ… Sets up C.I.D.E.R. workflow

4. Development Execution

/cider:work 123
# βœ… Loads issue context
# βœ… Plans work approach
# βœ… Tracks progress
# βœ… Updates project state

πŸ”§ Available Slash Commands

| Command | Description | |---------|-------------| | /radar:analyze | Complete project analysis with recommendations | | /radar:quick | Quick project overview and status | | /cider:generate EPIC "desc" | Generate atomic development issue | | /cider:work ISSUE_NUMBER | Work on specific issue with guidance | | /cider:status | Show project and epic status | | /cider:list-epics | List all available epics | | /init:claude | Generate CLAUDE.md with complete methodology |

🎨 Example Epic Types

HeyClaudio automatically suggests epics based on your tech stack:

  • EPIC-FRONTEND: User interface development
  • EPIC-BACKEND: Server-side development
  • EPIC-DATABASE: Data management
  • EPIC-API: API development
  • EPIC-TESTING: Quality assurance
  • EPIC-DEPLOYMENT: DevOps & infrastructure
  • EPIC-PERFORMANCE: Optimization
  • EPIC-SECURITY: Security implementation
  • EPIC-DOCS: Documentation

πŸ” Example Analysis Output

/radar:analyze

Generates comprehensive reports:

  • Executive Summary: Key findings and priorities
  • Architecture Analysis: Structure and design patterns
  • Code Quality: Issues and improvements
  • Dependency Analysis: Package management and updates
  • Documentation Review: Missing or outdated docs
  • Security Assessment: Potential vulnerabilities
  • Performance Analysis: Optimization opportunities

🎯 Atomic Issue Example

/cider:generate EPIC-API "implement user authentication"

Creates issue with:

  • βœ… Clear objectives and acceptance criteria
  • βœ… Task breakdown (2-6 hour target)
  • βœ… Implementation approach and technical requirements
  • βœ… Testing strategy and validation steps
  • βœ… Files to modify and integration points
  • βœ… C.I.D.E.R. workflow tracking

πŸš€ Benefits

For Individual Developers

  • βœ… Instant project understanding with R.A.D.A.R. analysis
  • βœ… Structured development with C.I.D.E.R. methodology
  • βœ… Clear work breakdown into atomic issues
  • βœ… Progress tracking and session management

For Teams

  • βœ… Consistent methodology across projects
  • βœ… Knowledge sharing through documentation
  • βœ… Quality standards with built-in best practices
  • βœ… Project visibility with status tracking

For Freelancers/Consultants

  • βœ… Quick client onboarding with instant analysis
  • βœ… Professional reporting with detailed insights
  • βœ… Structured proposals based on epic breakdown
  • βœ… Progress transparency for clients

πŸ› οΈ Requirements

πŸ“¦ Installation

Global Installation (Recommended)

npm i -g hey-claudio

Local Installation

cd your-project
npm i hey-claudio
npx hey-claudio init

πŸ†˜ Support

Having issues? Check common solutions:

"claude command not found"

Install Claude IDE: https://claude.ai/download

"Project not setup"

claudio init

"No slash commands available"

claudio check          # Verify setup
claudio init           # Re-initialize if needed

Debug Mode

CLAUDIO_DEBUG=true claudio init

🎯 Perfect For

  • βœ… New project onboarding - Understand any codebase instantly
  • βœ… Legacy code analysis - Get insights into old projects
  • βœ… Freelance work - Professional analysis and structured development
  • βœ… Team collaboration - Consistent methodology and documentation
  • βœ… Code reviews - Structured analysis and improvement suggestions
  • βœ… Technical debt - Identify and plan improvements systematically

🀝 Contributing

This project is designed to work seamlessly with Claude IDE and AI-powered development workflows.

πŸ“„ License

MIT - Build amazing things with AI assistance!


πŸ€– HeyClaudio - Making every developer an AI-powered expert