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

@oracleot-tools/orchestrate

v0.1.0

Published

Shareable Pi package for the orchestrate hub-and-spoke workflow.

Readme

@oracleot-tools/orchestrate

Shareable Pi package for the orchestrate hub-and-spoke workflow.

What it includes

  • /orchestrate and /hub commands via the bundled hub extension
  • subagent tool via the bundled subagent extension
  • bundled base agents:
    • orchestrator
    • planner
    • scout
    • worker

Install

Use the published npm package for the normal user install path:

pi install npm:@oracleot-tools/orchestrate

Use -l only when the current project should load this package from project-local settings (.pi/settings.json) instead of your user settings:

pi install -l npm:@oracleot-tools/orchestrate

For installed package sources, receive future updates with:

pi update --extensions
# or
pi update --all

Contributor and local workspace usage

Install from the extracted workspace package directory when testing from a checkout:

pi install /absolute/path/to/pi/packages/orchestrate

The repository root is a workspace root only; install the package from packages/orchestrate, not from the repo root.

If you intentionally want a checkout-based override only for the current repo, add -l to the install command. Prefer the published npm source for shareable project settings and end-user docs.

How it works

  • The package ships its own bundled/package base agents under agents/.
  • Project-local agents discovered from the nearest .pi/agents override bundled/package agents with the same name when scope allows it.
  • /orchestrate uses the bundled/package or project-local orchestrator agent and disables direct main-session editing while orchestration is active.
  • In hub mode, obvious mutating main-session bash commands are also blocked so file changes keep flowing through delegated subagents.
  • If the project does not appear to have suitable project-local specialist agents for the repo as a whole, the orchestrator first proposes a durable project-scoped agent set based on the codebase's overall stack and architecture, waits for approval, then delegates agent-file creation to worker.
  • /orchestrate can be run with or without a task. With a task, bootstrap still happens first when needed; without a task, it performs bootstrap-only agent discovery/proposal for the repo.

Project-local agents

This workspace keeps durable repository specialists in the repo-root .pi/agents/. Those agents remain project-local resources and are not moved into or published with this package.

When you run Pi from packages/orchestrate or another nested workspace path, hub/subagent discovery still walks upward to the nearest .pi/agents/ directory.

In subagent calls, agentScope: "user" still means bundled/package agents only. Use agentScope: "both" or "project" to include project-local agents.