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

allye-pi

v1.7.1

Published

Pi package adapter for the canonical Allye workflow

Readme


Your AI agent has 68+ tools but no idea when to use them. Allye adds the methodology layer — structured workflows, specialized agents, cross-session memory, and team-specific skills — so your agent plans before coding, tests before shipping, and remembers what happened yesterday.

Create a free Allye account →

Authentication is handled via OAuth 2.1 — on every supported platform, since the MCP connection itself is OAuth-gated. Your browser opens once for login, and tokens are managed automatically.

What you get

| | Feature | Description | |---|---------|-------------| | Workflow | Adaptive toolkit | Intent-driven use of context, skills, optional planning/tasks, action, verification, and persistence; checkpoints can be skipped or repeated proportionally | | Planning | Discussion phase | Gray areas identified, options presented with trade-offs, decisions captured | | Memory | Cross-session continuity | Agent searches past context at start, saves session state at end | | TDD | Test-driven development | Red-Green-Refactor with automatic detection of when TDD applies | | Skills | Dynamic discovery | Agents find and follow your team's standards automatically — no manual config | | Standards | Guided creation | No team standards? Agent suggests creating them with your chosen scope | | Boards | Status progression | Correct transitions: backlog → todo → in_progress → review → done | | Context | Auto-loaded profile | User context, team info, and preferences injected before first message | | Language | Multi-language | Agent responds in your language — configs are English, conversations are yours |


Installation

Unified installer (all agents)

The fastest path if you have a terminal — one script detects every supported agent on your machine and configures each by the path it actually uses (MCP for agents that fetch it, skills-on-disk for agents that read them from a directory):

git clone https://github.com/allye-app/allye-plugin.git
cd allye-plugin
./install.sh          # every detected agent
./install.sh status   # what is installed, and at which version
./install.sh install hermes
./install.sh install pi
./install.sh uninstall hermes

Every write is additive and idempotent — your own MCP servers, plugins, and settings in each agent's config survive untouched. See docs/install-hermes.md for Hermes Agent specifically (its OAuth step needs a terminal either way).

Prefer the paste-into-agent or marketplace routes below? They still work — the unified installer doesn't replace them for Claude Code, OpenCode, Cursor, Codex, or Gemini CLI.

Claude Code

Step 1 — Install the plugin:

/plugin marketplace add allye-app/allye-plugin
/plugin install allye
/reload-plugins

Step 2 — Authenticate:

  1. Run /plugin to open the plugin panel
  2. Find Allye MCP Server and click Connect
  3. Your browser opens for OAuth login — sign in with your Allye account, select a team, and approve
  4. Done! The MCP server connects automatically

Authentication is handled via OAuth 2.1 — your browser opens once, and tokens are cached automatically.

After installing, you get:

  • OAuth authentication — browser-based login, no tokens to manage
  • Bootstrap hook — injects workflow methodology at session start
  • Optional delegation — bounded research, review, or execution subagents may be used when the runtime supports them and delegation is beneficial; local execution remains valid
  • 17 composable skills — discovery, planning, execution, review, delivery, memory, verification, and delegation playbooks loaded as needed; no universal phase chain is required
  • Parallel delivery, when a runtime is detected — the Orchestrator can drive several independent stories at once, each in its own git worktree and its own watchable agent process; without a detected runtime, delivery degrades to the existing manual and automatic-subagent modes

Multiple Allye accounts (multi-tenant)

If you use different Allye accounts in different projects (e.g., personal account in ~/dev/myproject and work account in ~/dev/company), install the plugin with the "local" scope (per-project). Each project directory automatically gets its own OAuth session — no extra configuration needed.

  1. Open Claude Code in each project directory
  2. Install with local scope: /plugin install allye (select "local" when prompted)
  3. Run /reload-plugins
  4. Go to /pluginConnect on the Allye MCP Server
  5. Log in with the Allye account you want for that project

The plugin automatically generates a unique identifier per project directory, so each project authenticates independently. You can use a different Allye account in each project without conflicts.

Single account users don't need this. If you only use one Allye account, just install and authenticate — it works out of the box.

To update: /plugin update allye then /reload-plugins

OpenCode

Paste this into your agent:

Install allye-plugin following: https://raw.githubusercontent.com/allye-app/allye-plugin/main/docs/install-opencode.md

The agent will configure the MCP server via OAuth and install the allye-opencode plugin.

After installing, you get:

  • 6 agents in the picker — Allye, Allye Plan, Allye Orchestrator, Allye Build, Allye Review, Allye Deliver (Ctrl+T to switch)
  • Adaptive context — profile, team info, and relevant memories loaded when Allye is available and useful
  • Dynamic skill discovery — agents search for your team's standards via MCP

To update: Paste this into your agent:

Update allye-plugin following: https://raw.githubusercontent.com/allye-app/allye-plugin/main/docs/update-opencode.md

Cursor

Paste this into Cursor's agent chat:

Install allye-plugin following: https://raw.githubusercontent.com/allye-app/allye-plugin/main/docs/install-cursor.md

After installing:

  • MCP server configured in ~/.cursor/mcp.json
  • .cursorrules installed with workflow routing and non-negotiable rules

To update: Paste this into your agent:

Update allye-plugin following: https://raw.githubusercontent.com/allye-app/allye-plugin/main/docs/update-cursor.md

Codex (OpenAI)

Paste this into Codex:

Install allye-plugin following: https://raw.githubusercontent.com/allye-app/allye-plugin/main/docs/install-codex.md

After installing:

  • MCP server configured in ~/.codex/config.toml
  • AGENTS.md installed with workflow instructions

To update: Paste this into your agent:

Update allye-plugin following: https://raw.githubusercontent.com/allye-app/allye-plugin/main/docs/update-codex.md

Gemini CLI

Paste this into Gemini:

Install allye-plugin following: https://raw.githubusercontent.com/allye-app/allye-plugin/main/docs/install-gemini.md

After installing:

  • MCP server configured in ~/.gemini/settings.json
  • GEMINI.md installed with workflow instructions

To update: Paste this into your agent:

Update allye-plugin following: https://raw.githubusercontent.com/allye-app/allye-plugin/main/docs/update-gemini.md

Pi

Pi uses the published native package allye-pi, while keeping skills/*/SKILL.md as the only canonical skill source. The installer delegates installation to Pi's official package manager and does not edit Pi's settings.json or MCP configuration:

./install.sh install pi       # production: npm:allye-pi
./install.sh uninstall pi     # removes npm:allye-pi

Other official Pi sources are available when you choose them explicitly:

pi install npm:allye-pi
pi install git:github.com/allye-app/allye-plugin
ALLYE_PI_INSTALL_SOURCE=local ./install.sh install pi  # checkout development only

The installer defaults to npm. Use the Git command for a tagged repository checkout, and the local opt-in only while developing this repository. See docs/install-pi.md for MCP setup, mode selection, and Herdr integration.

Hermes Agent

git clone https://github.com/allye-app/allye-plugin.git
cd allye-plugin
./install.sh install hermes

After installing:

  • MCP server configured in ~/.hermes/config.yaml (OAuth needs a terminal — see docs/install-hermes.md)
  • 16 skills exported to ~/.hermes/skills/allye/ — Hermes reads skills from disk, not over MCP
  • allye-bootstrap plugin installed and enabled — injects using-allye at session start

To update: cd allye-plugin && git pull && ./install.sh install hermes

Manual (all agents)

git clone https://github.com/allye-app/allye-plugin.git
cd allye-plugin
./install.sh

Auto-detects every installed agent and configures each one — MCP for agents that fetch skills over it, skills-on-disk for Hermes.

To update: cd allye-plugin && git pull && ./install.sh


Updating

Claude Code

/plugin update allye
/reload-plugins

Other agents (agent-assisted)

Paste this into your agent's chat:

| Agent | Paste this | |-------|-----------| | OpenCode | Update allye-plugin following: https://raw.githubusercontent.com/allye-app/allye-plugin/main/docs/update-opencode.md | | Cursor | Update allye-plugin following: https://raw.githubusercontent.com/allye-app/allye-plugin/main/docs/update-cursor.md | | Codex | Update allye-plugin following: https://raw.githubusercontent.com/allye-app/allye-plugin/main/docs/update-codex.md | | Gemini CLI | Update allye-plugin following: https://raw.githubusercontent.com/allye-app/allye-plugin/main/docs/update-gemini.md | | Hermes Agent | see docs/update-hermes.md — run ./install.sh install hermes after git pull |

Manual

cd allye-plugin && git pull && ./install.sh

Agents

How multi-phase workflow support is implemented differs by platform, because not every platform lets a dispatched agent pause mid-task to ask you a question:

  • Claude Code ships five dispatched subagents — Reviewer-Standards, Reviewer-Spec, Deep Search, Code Analyzer, and Executor — for phases that never need to interrupt you (Executor only runs this way if the Orchestrator's automatic mode is chosen for a story; its default is manual). Sandbox, Product Planning, Technical Planning, Orchestrator, and manual-mode Executor run as skills loaded directly into your conversation instead, precisely so they can stop and ask when something's ambiguous.
  • OpenCode ships 6 agent-picker personas (Ctrl+T to switch) — Allye, Allye Plan, Allye Orchestrator, Allye Build, Allye Review, Allye Deliver — OpenCode's agent model supports switching personas interactively within a session, so all 6 can be full agents. The automatic-Executor dispatch mode is Claude-Code-only for now; OpenCode always runs Executor (Allye Build) as an interactive agent.
  • Cursor, Codex, Gemini CLI — a single agent handles all phases with the same workflow knowledge (no multi-agent picker on these platforms).
  • Hermes Agent reads skills from a directory (~/.hermes/skills/allye/) rather than fetching them over MCP, and gets the using-allye bootstrap injected by a small Python plugin at session start instead of a hook — otherwise the same single-agent, same-workflow-knowledge shape as Cursor/Codex/Gemini CLI.
  • Pi loads the canonical repository skills through a native Pi package, reads using-allye into the first prompt, injects Allye context through the configured MCP adapter, and exposes an adaptive toolkit. Herdr delegation is optional and capability-detected; tasks are recommended rather than mandatory.

Every phase, on every platform:

  • Responds in your language (detected from your messages, falling back to your profile only before you've said anything)
  • Calls initialize to load your profile and team context
  • Discovers team skills before starting — coding standards, templates, checklists
  • If no standards found → suggests creating them with your chosen scope (personal/team/organization). Marketplace is a legacy read-only browsing/source surface, never a write destination.
  • Searches memories for past decisions and session state
  • Saves session state before ending

Workflow

Each phase runs in its own fresh, lean-context chat. When one finishes, it emits a handover — a block of chat text you review and paste as the first message of the next chat, which auto-detects it and loads the right skill.

Sandbox → Product Planning → Technical Planning → Orchestrator ⇄ Executor → Reviewer (Standards + Spec)
                                                        ↑                       |
                                                        └──── next story ───────┘

Sandbox

Explore ideas, research before committing to scope, think out loud — no work items created here. Dispatches Deep Search / Code Analyzer subagents for research. Exits with a Discovery Doc once a direction is approved.

Product Planning

Understand business context → discover team templates → define hierarchy (Epic → Feature → Story) → create work items with acceptance criteria.

Technical Planning

Get story → discussion phase (identify gray areas, present options with trade-offs, capture locked decisions) → create tasks with dependency waves.

Orchestrator

Coordinates delivery of an already-planned feature: manages assignee and status, dispatches Executor, dispatches Reviewer-Standards and Reviewer-Spec in parallel once a report comes back, runs the correction loop, and cascades status up the work-item hierarchy. With a detected agent runtime (Herdr), it can dispatch several independent stories at once, each in its own git worktree and its own watchable agent process; without one, it falls back to one story at a time (manual handover, or automatic subagent dispatch — your choice per story).

Executor

Implements exactly one story's tasks with TDD (Red → Green → Refactor). Runs either as an interactive skill (manual mode, can ask you questions) or as a dispatched subagent (automatic mode — halts and reports back instead of guessing when a task is underspecified).

Reviewer — two axes

Two independent passes, dispatched together and never merged: reviewer-standards checks how the code is written (conventions, security, test quality), reviewer-spec checks whether it's what was asked for (acceptance criteria against the verification evidence, locked decisions, unrequested scope). Always dispatched automatically in parallel, since review never needs to pause and ask anyone anything. A ❌ on either axis triggers a correction round — one axis passing never offsets the other failing.

Delivery

Once an epic's whole status cascade completes, the Orchestrator offers — never forces — a close-out: verify all tasks done, update documentation, clean up TODOs, save a delivery memory. A deliberate step, not an automatic one.


Skills

Skills are the knowledge base that powers the agents. 16 workflow skills are published in the Allye marketplace — available to all users without setup (setup itself is Claude Code's local install-time skill and isn't marketplace-published).

| Skill | What it teaches | |-------|----------------| | using-allye | Bootstrap — memory protocol, skill routing, handover detection, workflow gates | | sandbox | Explore ideas, research a direction, exit with a Discovery Doc — no work items created | | product-planning | Business requirements → Epics → Features → Stories | | technical-planning | Story → Discussion Phase → Tasks with acceptance criteria | | orchestrator | Coordinate delivery — assignee, dispatch Executor/Reviewer (both axes), correction loop, status cascade | | execution | Task → TDD → Implementation with wave execution | | review | Code review with decision context from planning | | delivery | Verify → Close story → Update docs → Save memory | | handover-protocol | The shared contract for handing off context between phases as chat text | | memory-protocol | When and how to search/save memories across sessions | | tdd-workflow | Red-Green-Refactor cycle with detection heuristic | | board-progression | Status transitions and board mechanics | | tools-quickref | Complete reference for all 12 MCP tools and 68+ actions | | verification-loop | Deriving the AFK/HITL label from whether every task has a runnable verification command | | agent-runtime | The five-primitive contract for driving an external agent runtime (Herdr), for parallel dispatch | | branch-landing | Decide how a finished branch lands — merge, PR, or leave it — and tear down without losing work |

Custom team skills

Your team can create custom skills in Allye — agents discover and follow them automatically:

  • Code review checklist → Allye Review follows it
  • Backend story standard → Allye Plan uses it as template
  • Deploy checklist → Allye Deliver follows it
  • Coding conventions → Allye Build applies them

No team skills yet? Each agent will suggest creating them when it doesn't find standards for its domain.


Prerequisites

  • An Allye account — authentication is OAuth 2.1 on every platform (the MCP connection itself is OAuth-gated)
  • At least one supported AI coding agent installed
  • jq and curl (used by the installer and Claude Code hook)

Contributing

Issues and PRs are welcome. Open an issue first for anything beyond a small fix, so the approach can be agreed on before you write code. PRs are reviewed before merge — expect feedback, and please keep unrelated changes out of a single PR.

Roadmap

Today, Allye Agent Plugin is built around the Allye workspace. The long-term direction is to make the workflow layer (planning, orchestration, TDD, memory) work with other backends too — issue trackers like Jira and Linear, and memory stores like Obsidian or other local options — so teams can keep their existing tools and still get the methodology layer on top. Nothing here is scheduled yet; treat it as direction, not a commitment.

License

MIT