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

oh-my-customcode

v0.1.4

Published

Batteries-included agent harness for Claude Code

Readme

oh-my-customcode

Your Claude Code, Your Way

npm version License: MIT CI

The easiest way to customize Claude Code with agents, skills, and rules.

Like oh-my-zsh transformed shell customization, oh-my-customcode makes personalizing your Claude Code experience simple, powerful, and fun.

What Makes It Special

| Feature | Description | |---------|-------------| | Batteries Included | 37 agents, 17 skills, 12 guides - synced with baekgom-agents templates | | Sub-Agent Model | Supports hierarchical agent orchestration with specialized roles | | Dead Simple Customization | Create a folder + markdown file = new agent or skill | | Mix and Match | Use built-in components, create your own, or combine both | | Non-Destructive | Your customizations live alongside defaults, never overwritten |

Quick Start

# Install globally
npm install -g oh-my-customcode

# Initialize in your project
cd your-project
omcustom init

That's it. You now have a fully configured Claude Code environment.


Customization First

This is what oh-my-customcode is all about. Making Claude Code yours.

Create a Custom Agent (2 files)

Want an agent that reviews database migrations? Just create:

agents/sw-engineer/migration-expert/
├── AGENT.md       # What the agent does
└── index.yaml     # Metadata

AGENT.md:

# Migration Expert Agent

> **Type**: Worker

## Purpose

Expert in database migrations, schema design, and data integrity.

## Capabilities

1. Review migration files for safety issues
2. Suggest rollback strategies
3. Check for data loss risks
4. Optimize migration performance

## When to Use

- Before running migrations in production
- Designing new database schemas
- Reviewing team members' migrations

index.yaml:

metadata:
  name: migration-expert
  type: worker
  category: sw-engineer
  description: Database migration specialist

Done. Your custom agent is ready to use.

Add a Custom Skill

Skills define how agents do things. Create specialized knowledge:

skills/development/sql-optimization/
├── SKILL.md       # The skill instructions
└── index.yaml     # Metadata

SKILL.md:

# SQL Optimization Skill

## Rules

### Query Optimization
- Always use EXPLAIN ANALYZE before suggesting changes
- Prefer indexes over full table scans
- Avoid SELECT * in production code
- Use CTEs for complex queries

### Migration Safety
- Always include rollback scripts
- Test migrations on production-like data
- Never delete columns without deprecation period

Modify Rules

Rules control behavior. Edit them in .claude/rules/:

.claude/rules/
├── MUST-*.md      # Required (safety, permissions)
├── SHOULD-*.md    # Recommended (interactions, error handling)
└── MAY-*.md       # Optional (optimizations)

Want stricter code review? Edit SHOULD-interaction.md:

## Code Review Standards

### Before Approving Any Code
- [ ] All tests pass
- [ ] No security vulnerabilities
- [ ] Performance impact assessed
- [ ] Documentation updated

Create Custom Pipelines

Define repeatable workflows in pipelines/:

# pipelines/deploy-review.yaml
name: deploy-review
description: Pre-deployment review workflow

steps:
  - id: security_scan
    agent: qa-lead
    action: security_review

  - id: performance_check
    agent: optimizer
    action: analyze_performance

  - id: migration_review
    agent: migration-expert  # Your custom agent!
    action: review_migrations

Run it: pipeline:run deploy-review

Mix Built-in + Custom

The real power is combining everything:

your-project/
├── agents/
│   ├── orchestrator/          # Built-in: planner, secretary
│   ├── sw-engineer/
│   │   ├── language/          # Built-in: golang, python, rust...
│   │   └── migration-expert/  # YOUR custom agent
│   └── your-team/             # YOUR team-specific agents
├── skills/
│   ├── development/           # Built-in: best practices
│   └── your-company/          # YOUR company standards
└── .claude/rules/
    ├── MUST-safety.md         # Built-in
    └── MUST-your-policy.md    # YOUR company policy

What's Included

Templates synced from baekgom-agents - Battle-tested agent system with sub-agent orchestration support.

Agents (37)

| Category | Count | Agents | |----------|-------|--------| | Orchestrators | 4 | planner, secretary, dev-lead, qa-lead | | Managers | 6 | creator, updater, supplier, gitnerd, sync-checker, sauron | | System | 2 | memory-keeper, naggy | | Languages | 6 | golang, python, rust, kotlin, typescript, java21 | | Frontend | 3 | vercel-agent, vuejs-agent, svelte-agent | | Backend | 5 | fastapi, springboot, go-backend, express, nestjs | | Tooling | 3 | npm-expert, optimizer, bun-expert | | Architecture | 2 | documenter, speckit-agent | | Infrastructure | 2 | docker-expert, aws-expert | | QA | 3 | qa-planner, qa-writer, qa-engineer | | Tutor | 1 | go-tutor | | Total | 37 | |

Skills (17)

  • Development (8): Go, Python, TypeScript, Kotlin, Rust, Java, React, Vercel
  • Backend (5): FastAPI, Spring Boot, Express, NestJS, Go Backend
  • Infrastructure (2): Docker, AWS
  • System (2): Memory management, result aggregation
  • Orchestration (2): Pipeline execution, intent detection

Guides (12)

Comprehensive reference documentation covering:

  • Agent creation and management
  • Skill development
  • Pipeline workflows
  • Best practices and patterns

Rules (18)

| Priority | Count | Purpose | |----------|-------|---------| | MUST | 10 | Safety, permissions, agent design (enforced) | | SHOULD | 6 | Interactions, error handling (recommended) | | MAY | 2 | Optimization guidelines (optional) |


CLI Commands

| Command | Description | |---------|-------------| | omcustom init | Initialize in current project | | omcustom init --lang ko | Initialize with Korean language | | omcustom update | Update to latest version | | omcustom list | List all installed components | | omcustom list agents | List agents only | | omcustom doctor | Verify installation health | | omcustom doctor --fix | Auto-fix common issues |


Project Structure

After omcustom init:

your-project/
├── CLAUDE.md              # Entry point for Claude
├── .claude/
│   ├── rules/             # Behavior rules
│   ├── hooks/             # Event hooks
│   └── contexts/          # Context files
├── agents/                # All agents
├── skills/                # All skills
├── guides/                # Reference docs
├── pipelines/             # Workflow definitions
└── commands/              # Command definitions

Development

bun install          # Install dependencies
bun run dev          # Development mode
bun test             # Run tests
bun run build        # Build for production

Requirements

  • Node.js >= 18.0.0
  • Claude Code CLI

Contributing

Contributions welcome! See CONTRIBUTING.md.


License

MIT