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

@kaze-jp/konbini

v0.2.13

Published

AI autonomous development framework inspired by cc-sdd. Spec-Driven Development with Agent Orchestrator.

Readme

konbini

AI autonomous development framework inspired by cc-sdd.

Spec-Driven Development + Agent Orchestrator — 人間は上流(仕様・設計・タスク分解)を承認するだけ。実装からマージまでをAIが自律的に完結させる。

Quick Start

npx konbini init

プリセットを選択:

  1. solo — 上流承認 + 下流は approve-only(推奨)
  2. solo-full-auto — 上流承認後は完全自律
  3. team — 上流承認 + 下流は review-and-approve

Prerequisites

Required Tools

| Tool | Purpose | Install | |------|---------|---------| | Claude Code | AI development environment | npm i -g @anthropic-ai/claude-code | | gh CLI | GitHub operations (PR, review) | brew install gh | | Git | Version control (worktree support) | OS standard |

Required Claude Code Plugins

| Plugin | Purpose | |--------|---------| | feature-dev | Implementation guide | | code-review | PR review | | superpowers | TDD, brainstorming, simplify |

Workflow

┌──────────────────────────────────────────────────┐
│  Upstream (Human approves)                       │
│                                                  │
│  R1: Requirements (EARS format)                  │
│  R2: Technical Design                            │
│  R3: Task Breakdown (parallel analysis)          │
│                    ↓ Approved                     │
├──────────────────────────────────────────────────┤
│  Downstream (AO autonomous execution)            │
│                                                  │
│  Phase 1:   Task analysis + branch creation      │
│  Phase 1.5: Context generation for workers       │
│  R4: Parallel implementation (TDD + worktree)    │
│  R5: Integration + Simplify                      │
│  R6: PR + Multi-specialist review                │
│  R7: Fix loop (until approve)                    │
│  R8: Pre-merge review (configurable)             │
│  → Merge + next task                             │
└──────────────────────────────────────────────────┘

Configuration

All configuration lives in .ao/ao.yaml. Key settings:

preset: solo                    # solo | solo-full-auto | team
autonomy:
  downstream: approve-only      # full-auto | approve-only | review-and-approve
git:
  strategy: worktree            # worktree | branch
  base_branch: main
tdd:
  enabled: true                 # TDD mandatory (Red → Green → Refactor)

Presets

| Preset | R8 (Pre-merge) | Merge | |--------|----------------|-------| | solo | Human approval | Auto after approval | | solo-full-auto | Skip | Auto | | team | Human review + approval | Auto after approval |

Review Breakpoints

| Phase | Actor | Description | |-------|-------|-------------| | R1 | Human | Requirements approval | | R2 | Human | Design approval | | R3 | Human | Task breakdown approval | | R4 | AI | Parallel implementation + quality gates | | R5 | AI | Integration + Simplify | | R6 | AI | PR + multi-specialist review | | R7 | AI | Fix loop until approve | | R8 | Configurable | Pre-merge review |

Learning Loop

konbini accumulates review patterns in .ao/memory/:

  • Review findings are saved as patterns
  • Patterns are injected into future reviews
  • Auto-simplify when patterns exceed threshold (default: 20)

Commands

npx konbini init              # Initialize in current project
npx konbini update            # Update templates (preserves config & memory)
npx konbini memory simplify   # Consolidate review patterns
npx konbini config show       # Show configuration

Claude Code Commands (after init)

/kiro:spec-init <feature>     # Start new feature spec
/kiro:spec-requirements       # Expand to EARS requirements
/kiro:spec-design             # Create technical design
/kiro:spec-tasks              # Generate implementation tasks
/kiro:ao-run <feature>        # Launch autonomous execution
/kiro:spec-status             # Check progress

Project Structure (generated)

your-project/
├── .claude/
│   ├── agents/               # AI agent definitions
│   └── commands/kiro/        # SDD commands
├── .ao/
│   ├── ao.yaml               # Configuration (single source of truth)
│   ├── steering/             # Product, tech, structure docs
│   └── memory/               # Learned patterns
└── .kiro/
    └── settings/
        ├── rules/            # EARS, design, task rules
        └── templates/        # Spec templates

Credits

  • cc-sdd by Gota — The original Spec-Driven Development framework
  • Built for Claude Code by Anthropic

License

MIT