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

@haposoft/cafekit

v0.7.29

Published

Claude Code-first spec-driven workflow for AI coding assistants. Bundles CafeKit hapo: skills, runtime hooks, agents, and installer scaffolding.

Readme

@haposoft/cafekit

Claude Code-first spec-driven workflow and runtime bundle for AI coding assistants.

Version License Claude%20Code

Overview

CafeKit installs a structured workflow into Claude Code so the assistant can move cleanly from:

Idea -> Spec -> Design -> Task Files -> Implementation -> Test -> Review

This package currently focuses on the Claude Code runtime:

  • installs CafeKit skills under .claude/skills/
  • installs supporting agents under .claude/agents/
  • installs runtime hooks, statusline, and managed settings
  • merges Claude settings safely on re-run

Antigravity remains in the repository as a legacy path, but Claude Code is the primary supported runtime for this release.

Install

Run in your project root:

npx @haposoft/cafekit

Refresh managed files:

npx @haposoft/cafekit --upgrade

Requirements:

  • Node.js 18+
  • Claude Code project with a .claude/ directory, or choose Claude when prompted

What Gets Installed

Claude Code install targets:

.claude/
├── skills/
├── agents/
├── hooks/
├── status.cjs
├── runtime.json
├── settings.json
└── CLAUDE.md

Managed runtime features include:

  • Claude Code statusline
  • session and subagent hooks
  • rule/context injection
  • spec state awareness
  • safe settings merge on reinstall

Core Skills

CafeKit ships many skills, but the main release surface is:

  • /hapo:specs <feature-description>: create or resume a structured spec workflow
  • /hapo:develop <feature-name>: implement from approved spec artifacts
  • /hapo:test [scope|--full]: run verification and return a structured verdict
  • /hapo:code-review [scope|--pending]: adversarial review focused on correctness, regressions, and security
  • /hapo:generate-graph <diagram request>: generate technical SVG/PNG diagrams

Common companion skills bundled in this package include inspect, impact-analysis, research, ai-multimodal, frontend-development, backend-development, and react-best-practices.

Quick Start

Create a new spec:

/hapo:specs Build a Google Meet transcript extension with AI summaries

Implement the whole feature:

/hapo:develop meet-transcript-mvp

Implement one specific task file:

/hapo:develop meet-transcript-mvp task-R0-02-extension-scaffold-dashboard-skeleton.md

Run tests and review:

/hapo:test --full
/hapo:code-review --pending

Generate a diagram:

/hapo:generate-graph Draw a sequence diagram for auth flow between browser, API, and database

Spec Artifacts

CafeKit's current spec workflow writes artifacts under:

specs/<feature-name>/
├── spec.json
├── requirements.md
├── research.md
├── design.md
└── tasks/
    ├── task-R0-01-*.md
    ├── task-R1-01-*.md
    └── ...

The active workflow expects:

  • spec.json to hold state, approvals, validation, and task_files
  • design to define canonical contracts
  • each task file to carry completion criteria and verification evidence

Release Notes For 0.7.29

This release is centered on Claude Code:

  • fixed hapo:develop codebase scouting to call the bundled inspector agent instead of a non-existent inspect agent
  • tightened hapo:specs state integrity and task finalization rules
  • tightened hapo:develop definition-of-done and evidence-based quality gates
  • bundled hapo:generate-graph
  • cleaned Claude installer expectations so it no longer looks for removed Claude artifacts

Documentation

  • Installation: https://cafekit.haposoft.com/docs/getting-started/installation
  • Quickstart: https://cafekit.haposoft.com/docs/getting-started/quickstart
  • Spec workflow: https://cafekit.haposoft.com/docs/guides/spec-workflow

License

MIT © Haposoft