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

@tgoodington/intuition

v10.10.0

Published

Domain-adaptive workflow system for Claude Code: prompt, outline, assemble specialist teams, detail with domain experts, build with format producers, test code output. Supports v8 compat (design, engineer, build) and v9 specialist workflows with 14 domain

Readme

Intuition

A trunk-and-branch workflow system for Claude Code. Turns rough ideas into structured plans, detailed designs, code specifications, and verified implementations through guided dialogue.

npm: @tgoodington/intuition GitHub: tgoodington/intuition

Install

npm install -g @tgoodington/intuition

This installs 12 skills globally to ~/.claude/skills/. Verify by typing / in Claude Code — you should see skills starting with intuition-.

Workflow

Two workflow modes:

v9 (current): prompt → outline → assemble → detail → build → test v8 (legacy): prompt → outline → build (with handoff transitions)

The first cycle is the trunk. After completion, create branches for new features or changes.

Quick Start

/intuition-initialize          # Set up project memory (once per project)
/intuition-start               # Check status, get routed to next step
/intuition-prompt              # Describe what you want to build
/intuition-outline             # Create the blueprint
/intuition-assemble            # Match tasks to domain specialists
/intuition-detail              # Specialists produce blueprints
/intuition-build               # Implement and verify
/intuition-test                # Quality gate

Run /clear before each phase skill to keep context clean.

Skills

Core Workflow

| Skill | Model | Purpose | |-------|-------|---------| | /intuition-prompt | opus | Refines a rough idea into an outline-ready brief | | /intuition-outline | opus | Strategic blueprint with tasks, dependencies, depth assessment | | /intuition-assemble | sonnet | Matches tasks to domain specialists and producers | | /intuition-detail | opus | Domain specialists produce detailed blueprints | | /intuition-build | sonnet | Delegates implementation, verifies against blueprints | | /intuition-test | opus | Post-build quality gate — test strategy and execution |

Infrastructure

| Skill | Model | Purpose | |-------|-------|---------| | /intuition-start | haiku | Detects phase, routes to next skill, version check | | /intuition-handoff | sonnet | Branch creation, v8 state transitions, migrations | | /intuition-initialize | haiku | Project memory setup (run once) | | /intuition-update | haiku | Package update manager |

Standalone Tools

| Skill | Model | Purpose | |-------|-------|---------| | /intuition-meander | opus | Thought partner — reason through problems collaboratively | | /intuition-think-tank | opus | Rapid expert-panel analysis of documents, ideas, or proposals |

Advisory

| Skill | Model | Purpose | |-------|-------|---------| | /intuition-debugger | opus | Expert diagnostics for complex post-completion bugs | | /intuition-agent-advisor | opus | Guidance on building custom Claude Code agents | | /intuition-skill-guide | opus | Guidance on building custom Claude Code skills |

Key Concepts

Trunk and Branches

  • Trunk: First prompt→build cycle — the foundation
  • Branches: Subsequent cycles that read parent context for continuity
  • After any cycle completes, /intuition-start offers branch creation or debugging

Project Memory

All workflow state and knowledge lives in docs/project_notes/:

  • Shared memory: bugs.md, decisions.md, key_facts.md, issues.md
  • State: .project-memory-state.json (owned by handoff)
  • Phase outputs: briefs, outline, code specs, build report (in context-specific paths)

Project Structure

intuition/
├── skills/
│   ├── intuition-start/           # Session primer + routing
│   ├── intuition-prompt/          # Discovery refinement
│   ├── intuition-outline/         # Strategic outlining
│   ├── intuition-meander/         # Thought partner
│   ├── intuition-build/           # Implementation + verification
│   ├── intuition-handoff/         # State transitions + briefs
│   ├── intuition-debugger/        # Post-completion diagnostics
│   ├── intuition-initialize/      # Project memory setup
│   ├── intuition-update/          # Package updates
│   ├── intuition-agent-advisor/   # Agent building guidance
│   └── intuition-skill-guide/     # Skill building guidance
├── scripts/
│   ├── install-skills.js          # Postinstall → copies skills to ~/.claude/skills/
│   └── uninstall-skills.js        # Preuninstall → removes skills
├── docs/                          # Architecture and design documentation
├── bin/                           # CLI entry point
├── package.json
└── README.md

Requirements

  • Node.js 14.0.0+
  • Claude Code

License

MIT