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

chocovine

v1.0.0

Published

A workflow wrapper for Claude Code that forces AI to think before it types. Stop prompting. Start building.

Readme

ChocoVine Logo

ChocoVine

Stop prompting. Start building.

A workflow wrapper for Claude Code that forces AI to think before it types.

License Claude Code PRs Welcome

Getting StartedThe WorkflowCommands


⚡️ The Problem

We've all been there: You ask an AI to build a feature. It blindly writes 200 lines of code. You run it. It crashes. You spend the next hour prompt-battling to fix it.

🌲 The Solution

ChocoVine turns "Vibes Coding" into Engineering. It stops hallucinations by enforcing a strict Research → Test → Code loop.

  • 🛡️ TDD Guardrails: The AI writes a failing test first. It cannot mark a task complete until that test passes.
  • 🧠 Infinite Context: Uses sub-agents to read your entire codebase without clogging up the chat memory.
  • 🔎 You are the Architect: You approve the Plan before a single line of code is written.
  • 📈 Scales with You: Optimized for mid-to-large codebases where "context limits" usually break other tools.

🚀 Getting Started

You need Claude Code installed.

1. Installation

Option A: npx (Recommended)

# Navigate to your project
cd your-project

# Install ChocoVine directly from GitHub
npx github:vneseyoungster/ChocoVine init

Option B: Clone the Repo

# Clone and copy manually
git clone https://github.com/vneseyoungster/ChocoVine.git
cp -r ChocoVine/.claude your-project/

2. Configuration

Edit the generated CLAUDE.md with your project details:

# Tell ChocoVine your stack (React, Python, etc.)
nano CLAUDE.md

3. Initialization

Tell ChocoVine to scan your project so it understands your architecture patterns.

# If you are starting a NEW project from scratch:
/initialize my-new-app

# If you are adding ChocoVine to an EXISTING codebase:
/project-scan

🎮 How to Use

The Magic Command (/start)

For 95% of tasks, you only need one command. ChocoVine handles the research, testing, and coding automatically.

/start Add a login page with Google OAuth

What happens next?

  1. 🕵️ Research: Claude reads your existing code (auth providers, database schema).
  2. 🗣️ Clarify: It asks you specific questions (e.g., "Do you want to use Firebase or Auth0?").
  3. 📝 Plan: It presents a plan. You type yes.
  4. 🧪 Test: It creates a test file that fails (because the code doesn't exist yet).
  5. Code: It writes the code specifically to pass that test.

🧩 The Architecture

How do we guarantee code quality? We strictly follow the RSTPIV loop. This prevents the "spaghetti code" effect common with other AI tools.

graph LR
    A[Research] --> B[Specify]
    B --> C[Test]
    C --> D[Plan]
    D --> E[Implement]
    E --> F[Validate]
    
    style C fill:#f96,stroke:#333,stroke-width:2px
    style E fill:#9f6,stroke:#333,stroke-width:2px

📚 Command Reference

Essentials

| Command | Description | | :--- | :--- | | /start [task] | The Main Event. Runs the full TDD loop automatically. | | /quick-fix [error] | Bug Hunter. Fixes typos, null pointers, or small bugs without a full plan. | | /project-scan | Documentarian. Scans your project and generates/updates READMEs and Arch docs. |

Research & Design

| Command | Description | | :--- | :--- | | /research:ui [figma-url] | Figma → Code. Extracts tokens, CSS, and layout from a Figma URL. | | /research:codebase | Context. "How does the auth middleware work?" | | /research:docs | External Knowledge. Reads documentation for libraries you are using. |

| Phase | Command | Purpose | | :--- | :--- | :--- | | 1 | /research:feature | Collaborative requirements gathering | | 2 | /research:spec | Generate test specifications | | 3 | /generate:tests | Write the failing tests | | 4 | /research:plan | Create the implementation plan | | 5 | /execute | Write code to pass tests | | 6 | /code-check | Final validation & security audit |


⚙️ Configuration

To get the best results, your CLAUDE.md needs to be accurate. This is the "System Prompt" for your project.

# CLAUDE.md Example
- **Stack:** Next.js 14, Tailwind, Supabase, TypeScript
- **Build Command:** npm run build
- **Test Command:** npm test
- **Conventions:** Use arrow functions, no 'any' types, prefer functional components.

📄 License

MIT ©