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 🙏

© 2025 – Pkg Stats / Ryan Hefner

@champpaba/claude-agent-kit

v3.0.0

Published

Universal multi-agent template for Claude Code - AI-assisted development with specialized agents

Readme

Claude Agent Kit

Multi-Agent Implementation Engine for OpenSpec

npm version

Quick Start

npm install -g @champpaba/claude-agent-kit
cd your-project
cak init

# In Claude Code
/csetup my-feature
/cdev my-feature

Agents

| Agent | Phase | Role | |-------|-------|------| | uxui-frontend | 1 | UI with mock data | | ux-tester | 1.5 | Persona-based UX testing (approval gate) | | backend | 2 | API endpoints | | database | 2 | Schemas | | integration | 2.5 | Contract validation | | frontend | 3 | Connect UI to API | | test-debug | 4 | Tests & fixes |

Features

  • Template-Free Architecture (v3.0.0) - AI-driven task analysis, no hardcoded templates
  • Task Analyzer v2.0 - Complexity scoring, auto-add best practices, incremental milestones
  • Critical Flow Injection (v2.8.0) - Non-negotiable security items auto-injected for auth, payment, healthcare, fintech
  • UX-Tester Agent (v2.7.0) - Persona-based UX testing with weighted conversion prediction
  • Smart Topic Query (v2.5.0) - Cross-library integration detection + risk summary
  • Adaptive Depth Research (v2.4.0) - Dynamic research layers (0-10+) based on change complexity
  • Zero-Maintenance Tech Detection - Auto-detects ANY library in ANY language via Context7
  • Visual Page Planning - Layout wireframes, component plans, animation blueprints
  • Cross-session Context - PROJECT_STATUS.yml maintains state across sessions
  • Design System v2.1 - YAML-based extraction with single data.yaml output

Template-Free Architecture (v3.0.0)

Problem: Templates override user's tasks.md structure
         e.g., "refactor" template = 2 phases, but tasks.md has 5 phases

Solution: Task Analyzer v2.0 - AI-driven analysis, tasks.md is single source of truth

Before (Template-based):
  tasks.md (5 phases) → template selection → phases.md (2 phases) ❌ LOST TASKS

After (Template-free):
  tasks.md (5 phases) → AI analysis → phases.md (5 phases + auto-adds) ✅ ALL PRESERVED

Task Analyzer v2.0 Pipeline:
  1. Parse ALL tasks from tasks.md (preserve hierarchy)
  2. AI Analysis: complexity, risk, agent, dependencies (NO keyword matching)
  3. Auto-Add: security review, checkpoints, error handling (NO warnings)
  4. Generate Milestones: batch processing, external API, repository patterns
  5. Sort: dependencies first, HIGH risk early, foundation before features
  6. Inject UX Testing: Phase X.5 after every uxui-frontend phase

Auto-Add Rules (no user confirmation needed): | Condition | Auto-Added Task | |-----------|-----------------| | HIGH risk | Checkpoint before next phase | | External API | Error handling, retry, timeout | | Implementation (complexity >= 5) | Verification task | | Database changes | Backup verification, rollback test | | Security-critical | Security review, log check |

Incremental Milestone Patterns: | Pattern | Strategy | Example | |---------|----------|---------| | Batch Processing | 1 → 5 → 20 → full | "Process 10,000 records" | | External API | mock → single → errors → scale | "Send 100 API calls" | | Repository Layer | 1 method → half → all | "Implement 8 methods" | | Complex Form | 1 field → 1 step → full | "Multi-step wizard" |

Critical Flow Injection (v2.8.0)

Problem: Research is flexible, but security items are non-negotiable
         e.g., Password hashing, PCI-DSS, HIPAA compliance

Solution: Auto-inject critical items based on change analysis

Detected Flows → Injected Items:
  ├── Auth     → Password hashing, JWT secure storage, session mgmt (7 items)
  ├── Payment  → PCI key security, no card storage, webhook verification (5 items)
  ├── Healthcare → HIPAA: PHI encryption, access control, audit trail (5 items)
  └── Fintech  → PCI-DSS: encryption, key rotation, audit logging (6 items)

Each item has:
  { id, check, why, severity: 'critical' }

How it works:

  1. /csetup analyzes change → detects hasAuth, hasPayment, industryContext
  2. Research layers are generated dynamically (flexible)
  3. Critical items are INJECTED into appropriate layers (non-negotiable)
  4. Agents receive checklist with both research + critical items

Smart Topic Query (v2.5.0)

Problem: Context7 queries missed integration docs (e.g., Drizzle + Auth.js adapter)

Solution: Include other library names in Context7 topic query

Old: topic = "best practices, patterns"
New: topic = "best practices, adapter, integration, {other-lib-names}"

Result:
  ├── drizzle.md (with Auth.js adapter info)
  ├── auth-js.md (with DrizzleAdapter config)
  └── INTEGRATION_RISKS.md (cross-library concerns)

Detected Risk Patterns: adapter, schema/column naming, sync, webhook, lifecycle

Adaptive Depth Research (v2.4.0)

/csetup analyzes change complexity and generates research layers:

  Typo fix           → 0 layers (no research needed)
  Simple API         → 2 layers (Best Practice, API Design)
  Auth system        → 4 layers (+Security, +Testing)
  E-commerce         → 7 layers (+Payment, +UX, +Integration)
  Healthcare (HIPAA) → 10 layers (+Compliance, +Audit, etc.)

Knowledge Sources:
  ├── Domain (UX, DB design, Security) → Claude's Knowledge
  └── Stack (Prisma, React, Next.js)   → Context7

Flow (v2.5.0)

/designsetup → tokens.json, patterns/*.md
       ↓
/pageplan → page-plan.md (VISUAL: layout, components, animations)
       ↓
/csetup → research-checklist.md (RESEARCH: best practices, content)
        → best-practices/*.md (Stack: Context7 + Smart Topic Query)
        → INTEGRATION_RISKS.md (if cross-library risks detected)
       ↓
/cdev → Agents read all files in STEP 0

Separation of Concerns: | Command | Focus | Output | |---------|-------|--------| | /pageplan | Visual (layout, wireframe, animations) | page-plan.md | | /csetup | Research (best practices, content, UX) | research-checklist.md |

Commands

CLI: cak init | cak update

Slash: /designsetup /pageplan /csetup {id} /cdev {id} /cstatus {id} /pstatus

Links

npm | GitHub | OpenSpec

MIT License