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

workflowy-triage

v0.1.2

Published

Claude Code skill that triages Workflowy nodes by proposing locations based on rules

Downloads

275

Readme

workflowy-triage

A skill that helps you triage Workflowy nodes by proposing locations based on rules you define. Your agent analyzes each item, suggests where it should go, and learns from your decisions. Perfect for getting a handle on an overflowing Inbox.

Prerequisites

This skill requires the Workflowy MCP server to be configured in Claude Code. Install it first:

  • mholzen/workflowy — follow the installation and MCP configuration instructions in that repo.

Install for Claude Code

npx workflowy-triage

This copies the skill files into ~/.claude/skills/workflowy-triage/.

You can copy ~/.claude/skills/workflowy-triage/SKILL.md to the skills folder for other agents.

Usage

Inside a Claude Code session:

/workflowy-triage <node-id> [rules-node-id]
  • <node-id>: Required. The Workflowy node containing items to triage.
  • [rules-node-id]: Optional. If not provided, searches for a node named "rules for triage".

Workflow

Phase 1: Propose Locations

For each child node, Claude:

  1. Analyzes the node content (name, note, children)
  2. Matches against your triage rules
  3. Creates a proposal structure under the source node

Each proposal looks like:

[source node]
├── "original node text..." -> [link to target location]
│   ├── [original node]
│   ├── target: [link to proposed location]
│   ├── reason: "why this location fits"
│   └── alternative targets: [link to other locations]

Phase 2: User Review

You review each proposal:

  1. Click the target link to see the destination
  2. Move the node to your chosen location (primary or alternative)
  3. Clean up the proposal scaffolding

Phase 3: Learn from Choices

Run /workflowy-triage <node-id> --review to:

  1. Analyze which suggestions you accepted vs. rejected
  2. Identify patterns in your preferences
  3. Propose updates to your triage rules

Triage Rules

Create a node called "rules for triage" in your Workflowy with rules like:

rules for triage
├── find the deepest most applicable node under synthesize
├── before finalizing a location, always call workflowy_get on it to see its children
│   └── only stop when the node is a leaf or no children match the item's content

Claude will start from broad categories and drill down recursively, fetching children at each level until finding the most specific matching location.

Uninstall

npx workflowy-triage uninstall