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

octto

v0.1.4

Published

OpenCode plugin that turns rough ideas into designs through branch-based exploration

Readme

octto

An interactive browser UI for AI brainstorming. Stop typing in terminals. Start clicking in browsers.

https://github.com/user-attachments/assets/9ba8868d-16f3-4451-9b73-6b7e1fc54655

When you describe your idea, octto opens an interactive UI:

  • Click options instead of typing
  • See all questions at once
  • Answer in any order
  • Watch follow-ups appear instantly
  • Review the final plan visually

10 minutes of terminal typing → 2 minutes of clicking.

Quick Start

Add to ~/.config/opencode/opencode.json:

{ "plugin": ["octto"] }

Select the octto agent:

I want to add a caching layer to the API

A browser window opens. Click your answers. Done.

The Interactive UI

Rich Question Types

No more typing everything. Pick from 14 visual input types:

| Type | What You See | |------|--------------| | pick_one | Radio buttons | | pick_many | Checkboxes | | confirm | Yes/No buttons | | slider | Draggable range | | rank | Drag to reorder | | rate | Star rating | | thumbs | Thumbs up/down | | show_options | Cards with pros/cons | | show_diff | Side-by-side code diff | | ask_code | Syntax-highlighted editor | | ask_text | Text input (when needed) | | ask_image | Image upload | | ask_file | File upload | | emoji_react | Emoji picker |

Live Updates

  • Questions appear as you answer previous ones
  • Progress indicator shows remaining questions
  • Completed answers visible for context
  • Final plan rendered as reviewable sections

Parallel Branches

Your request is split into 2-4 exploration branches. All initial questions appear at once:

         ┌─ Branch 1: [question card]
Request ─┼─ Branch 2: [question card]
         └─ Branch 3: [question card]
                ↓
        Answer any, in any order

Each branch goes as deep as needed. Some finish in 2 questions, others take 4.

How It Works Behind the Scenes

3 Agents

| Agent | Job | |-------|-----| | bootstrapper | Splits your request into branches | | probe | Decides if a branch needs more questions | | octto | Orchestrates the session |

The Flow

  1. Bootstrapper creates 2-4 branches from your request
  2. Each branch gets an initial question → all shown in browser
  3. You answer (click, not type)
  4. Probe agent evaluates: more questions or done?
  5. Repeat until all branches complete
  6. Final plan shown for approval
  7. Design saved to docs/plans/

Configuration

Optional ~/.config/opencode/octto.json:

{
  "agents": {
    "probe": { "model": "anthropic/claude-sonnet-4" }
  }
}

Development

bun install
bun run build
bun test

License

MIT