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

polyp-ai

v0.1.5

Published

AI-powered organizational intelligence — built on Coral

Downloads

60

Readme

npm version License: MIT

Polyp is an elite, terminal-native AI agent designed to answer complex questions about your organization by seamlessly querying your knowledge bases, issue trackers, and codebases in real-time.

Instead of building fragile integrations with dozens of APIs, Polyp is completely powered by Coral, utilizing its revolutionary approach to treat your entire SaaS ecosystem as a unified SQL database.


⚡️ The Power of Coral Under the Hood

Polyp is not just an LLM wrapper. It is a true ReAct (Reason + Act) Agent that dynamically interfaces with the Coral CLI.

When you ask Polyp a question:

  1. Schema Discovery: Polyp automatically discovers your connected integrations via Coral's schema.
  2. Dynamic SQL Generation: The AI translates your natural language question into precise SQL queries targeting Coral's virtual tables (github.issues, notion.search, slack.messages, etc.).
  3. Iterative Reasoning: If the AI needs to find a Notion page ID before fetching its contents, it will intelligently run a search query, parse the output, and run a second query completely automatically.
  4. Zero Configuration Integration: Because Coral handles all OAuth, token management, and pagination, Polyp requires absolutely no API keys for your data sources.

🚀 Getting Started

1. Install Coral

Polyp relies on Coral as its underlying data engine.

brew install withcoral/tap/coral

2. Install Polyp

npm install -g polyp-ai

3. Connect your Data Sources

Connect the platforms your organization uses. Coral supports everything out of the box!

polyp connect github
polyp connect notion
polyp connect linear

4. Set up the AI

Provide your preferred LLM API key (OpenAI, Anthropic, or Gemini) for the reasoning engine.

polyp config

💻 Usage

Polyp provides multiple ways to interact with your data.

Interactive ReAct Chat

The core feature of Polyp. Jump into a persistent AI loop and ask anything.

polyp chat

Ask Polyp › What were the main decisions made in the "Q3 Roadmap" Notion document?

Ask Polyp › Who authored the last 3 commits in our main repository?

Deep Investigations

Need a comprehensive report on a topic across all your tools?

polyp investigate "OAuth timeout issues"

Persistent Context

Don't want to type your GitHub organization name over and over again? Save it to Polyp's persistent memory, and the AI will automatically inject it into its queries.

polyp context set github_owner runningpoem30

Raw SQL (Bypass AI)

You can directly query Coral through Polyp without using the AI.

polyp query "SELECT id, url FROM notion.search"

🏗️ Architecture & Tech Stack

Polyp is built for speed, beauty, and intelligence.

  • Engine: Node.js / TypeScript
  • Data Layer: Coral (Virtual SQL over APIs)
  • AI Reasoning: ReAct Loop Architecture (OpenAI, Anthropic, Gemini)
  • UI / Aesthetics: boxen, chalk, ora, gradient-string

Architecture Diagram