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

postagent

v0.3.2

Published

CLI collection tool for agents

Readme

Postagent

One CLI for every app your agent needs.

No more installing a new MCP server or CLI for each app your agent uses. Postagent connects your AI agent to any API — Notion, Linear, GitHub, Slack, and more.

  • 🔌 No per-site setup — one npm install -g postagent covers every supported API
  • 🔍 Discover by intentpostagent search "create a doc on Notion" instead of reading docs
  • 🔐 Credentials stay local — API keys are injected at send time, never leaked into the LLM context

Install

npm install -g postagent

Quickstart

# Search related actions
postagent search "Create a document on Notion"

# Get detailed manual for an action
postagent manual notion pages create_page

# Auth and send request
postagent auth notion
postagent send -X POST https://api.notion.com/v1/pages \
  -H 'Authorization: Bearer $POSTAGENT.NOTION.API_KEY' \
  -H 'Notion-Version: 2022-06-28' \
  -H 'Content-Type: application/json' \
  -d '{"parent":{"page_id":"YOUR_PAGE_ID"},"properties":{"title":[{"text":{"content":"My Page"}}]}}'

The send command uses the same options as curl, so agents already know how to use it.

Postagent replaces the API_KEY placeholder with the actual key/token from local storage, keeping your credentials out of the LLM context entirely.

Add --dry-run to preview the resolved request (method, URL, headers, body) without making any outbound call. Sensitive headers are redacted in the preview:

postagent send https://api.github.com/user \
  -H 'Authorization: Bearer $POSTAGENT.GITHUB.TOKEN' \
  --dry-run

Usage with Agents

The easiest way is to just tell your agent to use it:

Postagent demo

Configuration

You can try and test Postagent without setting an API key. However, the no API key mode is rate limited to 10 requests per minute.

If you need more requests, you can get a free API key from Actionbook and set it using the following command:

postagent config set apiKey ak_xxxxxxxxxxxx

Or via environment variables:

export POSTAGENT_API_KEY=ak_xxxxxxxxxxxx

Commands

postagent search <query>                    # Search for related actions by natural language
postagent auth <site>                       # Complete an auth flow for a site
postagent manual <site> [group] [action]    # Get detailed manual for an action
postagent send [options]                    # Send a request to a site, the options is same as curl

Supported sites

Visit https://api.postagent.dev/supported-sites.md to get the full list of supported sites. We are continually expanding it.

Stay tuned

We move fast. Star Postagent on Github to support and get latest information.

star-postagent-original

Development

pnpm install
pnpm dev:watch

License

Apache-2.0