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

@reqall/pi-plugin

v2026.5.6

Published

Reqall plugin for Pi — persistent semantic memory for AI agents

Readme

Reqall Pi Plugin

Persistent semantic memory for the Pi coding agent harness.

This is patterned after @reqall/claude-plugin, but uses Pi-native extension APIs instead of Claude hooks/MCP configuration:

  • registers reqall_* tools that call the Reqall MCP HTTP endpoint directly
  • injects project context on before_agent_start
  • adds Reqall memory instructions to the system prompt
  • bundles Pi-compatible Agent Skills
  • adds slash commands for common Reqall workflows
  • shows Reqall status in Pi's footer

Installation

From this repository while developing:

pi install ./pi-plugin
# or for one run only:
pi -e ./pi-plugin

When published:

pi install npm:@reqall/pi-plugin

Set your API key before launching Pi:

export REQALL_API_KEY="rq_..."
# Optional:
export REQALL_URL="https://www.reqall.net"
export REQALL_PROJECT_NAME="org/repo"

What It Adds

Tools

Pi does not currently include built-in MCP client configuration, so the extension registers Pi tools that wrap Reqall's MCP tools:

  • reqall_project_context — Pi-specific one-call context hydration
  • reqall_search
  • reqall_upsert_project
  • reqall_upsert_record
  • reqall_get_record
  • reqall_list_records
  • reqall_list_projects
  • reqall_upsert_link
  • reqall_list_links
  • reqall_impact
  • reqall_delete_record (explicit user request only)
  • reqall_delete_link (explicit user request only)
  • reqall_sleep_candidates
  • reqall_sleep_apply

Automation

| Pi event | Behavior | |---|---| | session_start | Shows Reqall status in the footer | | before_agent_start | Detects project, injects system prompt guidance, and (by default) fetches context via Reqall | | agent_end | Reminds about persistence for non-trivial turns; can optionally queue a follow-up persistence turn |

Commands

  • /reqall-context [query] — fetch context and trigger a model turn with it
  • /reqall-persist [summary] — ask the agent to classify and persist completed work
  • /reqall-review [filter] — review open records
  • /reqall-triage [description] — triage a new issue/request
  • /reqall-sleep [project-id-or-name] — run SLEEP maintenance

Skills

Skills are bundled under Pi-compatible names:

  • /skill:reqall-context
  • /skill:reqall-persist
  • /skill:reqall-document
  • /skill:reqall-triage
  • /skill:reqall-review
  • /skill:reqall-sleep

Environment Variables

| Variable | Default | Description | |---|---:|---| | REQALL_API_KEY | required | Reqall API key (rq_...) | | REQALL_URL | https://www.reqall.net | Reqall server base URL | | REQALL_API_URL | unset | Fallback base URL if REQALL_URL is not set | | REQALL_PROJECT_NAME | auto | Override project name | | REQALL_CONTEXT_LIMIT | 5 | Semantic search result count for context injection | | REQALL_OPEN_LIMIT | 25 | Open-record count for context injection | | REQALL_AUTO_CONTEXT | inject | inject, reminder, or off | | REQALL_AUTO_PERSIST | reminder | reminder, followup, or off |

Pi-Specific Extension Ideas

Pi can go beyond the Claude plugin because extensions can register tools, commands, UI, status lines, autocomplete, session labels, and lifecycle handlers. Good follow-ups to discuss/implement:

  1. Interactive TUI review panel for open records.
  2. #123 Reqall record autocomplete in the editor.
  3. Session labels/bookmarks for persisted Reqall record IDs.
  4. Optional true MCP client transport if Pi adds first-class MCP support or we vendor a client.
  5. Compaction hook that preserves Reqall decisions/follow-ups in Pi's session summaries.
  6. Safer auto-persist mode that uses a structured final-output tool instead of a follow-up prompt.

Development

cd pi-plugin
npm install
npm test

npm test typechecks the extension, verifies the CLI manifest output, and runs npm pack --dry-run.

To verify the deployed Reqall MCP base surface from https://www.reqall.net/docs/mcp.md, set REQALL_API_KEY and run:

npm run verify:mcp

This live smoke test checks HEAD /mcp, confirms the documented tool list, creates two temporary records, searches/lists/reads them, links them, traverses impact, then deletes the temporary link and records.

License

MIT