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

@intentsolutionsio/plane

v0.1.1

Published

Plane is a team behavior observatory — synthesize Plane API data into observations about how teams actually behave under pressure (cycle velocity vs. plan, ownership churn, reviewer gate strength, pri

Readme

Plane — Team Behavior Observatory

Plane is a team behavior observatory. Most Plane integrations wrap the API for ticket entry; this one synthesizes the data Plane already has into observations about how a team actually behaves under pressure — cycle velocity vs. plan, ownership churn on stuck tickets, reviewer gate strength, stated-vs-actual priority drift, and cross-project workload concentration.

What this plugin is

A behavioral observation layer on top of Plane's project-tracking API. It does not replicate mcp__plane's CRUD surface; that's the data-retrieval layer. This plugin sits one level up — it asks behavioral questions that require JOINing across multiple Plane endpoints to answer.

What this plugin is not

  • Not a Plane CLI (use mcp__plane MCP directly for ticket CRUD)
  • Not a clone of the Plane web dashboard (the dashboard already shows you ticket state)
  • Not a generic project-tracker skill (the framing is specifically behavioral, anchored in the NOI)

The five compound commands

Each answers a question that cannot be answered from any single Plane API endpoint:

| Command | Question | |---|---| | /plane-cycle-velocity | Does cycle close-out match cycle planning? | | /plane-stale-tickets | Which In Progress tickets are quietly failing under shared ownership? | | /plane-reviewer-gate-strength | Which reviewers gate-keep harder than the spec demands? | | /plane-priority-drift | Does the team plan high-priority work but ship low-priority work? | | /plane-cross-project-load | Which engineers are spread across too many active projects? |

Each command's exact endpoint sequence, scoring formula, and output table format is documented in skills/plane/references/compound-commands.md.

Install

/plugin install plane@claude-code-plugins-plus

Prerequisites

  • mcp__plane MCP server installed and configured (env vars PLANE_API_KEY, PLANE_WORKSPACE_SLUG, PLANE_API_HOST_URL). Without it, the skill returns documentation-only output + an install hint.
  • A Plane workspace with at least one project, cycle, and active issues — empty workspaces return informative empty states.

How it works

The orchestrator skill (skills/plane/SKILL.md) routes user intent to one of two agents:

  • plane-expert — answers "how do I query X in Plane" without firing live API calls
  • plane-analyst — orchestrates the compound commands, calling mcp__plane__* tools in the documented sequence and synthesizing the result

Both agents read from the references in skills/plane/references/ as their ground truth — noi.md is the design anchor; api-surface.md is the documented endpoint subset; compound-commands.md is the per-command playbook.

Provenance

This plugin was produced by /skill-creator --forge plane on 2026-05-07. The forge run's audit trail lives in .forge/ — research notes, ecosystem analysis, validation evidence — visible to anyone reviewing how the plugin came to exist.

plugin.json carries "generated": true and "author_type": "forge" so the marketplace surfaces a "Forge-generated" provenance pill on the detail page.

License

MIT. See LICENSE (project-wide root file).