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

@postapsis/sibyl

v0.1.3

Published

Give your AI Agent the web, without the bloat — extensible and lightweight by design 🕷️

Downloads

395

Readme

sibyl Logo

POST/APSIS Sibly Page sibyl License Page sibyl CI Status codecov


Local-first web search and exploration for your AI agents, without the bloat.
Extensible and lightweight by design 🕷️


Quickstart

Sibyl uses SearXNG for web search and Crawl4AI for webpage fetching by default. Both run locally with no API key. Lots of other options are available (e.g., Exa, Firecrawl, Brightdata, etc.). Check the Configuration section for more details.

Get a working setup in a few steps:

  1. Install Sibyl globally via NPM:

    npm i -g @postapsis/sibyl
  2. Run a local SearXNG instance for searching the web:

    # Create and enter a working directory for the SearXNG local instance
    mkdir ~/searxng
    cd ~/searxng
    
    # Download SearXNG's default settings
    curl -o settings.yml https://raw.githubusercontent.com/searxng/searxng/master/searx/settings.yml
    
    # Enable the JSON output format and replace the placeholder secret key
    sed -i -e 's/    - html$/    - html\n    - json/' \
           -e "s/secret_key: \"ultrasecretkey\"/secret_key: \"$(openssl rand -hex 32)\"/" \
           searxng/settings.yml
    
    # Start SearXNG on http://localhost:8080 with the updated settings
    docker run -d \
      --restart unless-stopped \
      -p 8080:8080 \
      -v ./settings.yml:/etc/searxng/settings.yml \
      --name searxng \
      searxng/searxng:latest
  3. Run a local Crawl4AI instance for fetching webpages:

    docker run -d \
      --restart unless-stopped \
      -p 11235:11235 \
      --shm-size=3g \
      --name crawl4ai \
      unclecode/crawl4ai:latest
  4. Set up your agent to use Sibyl:

    sibyl setup --claude
    sibyl setup --codex
    sibyl setup --opencode
    sibyl setup --antigravity
    sibyl setup --other ~/path/to/AGENTS.md
  5. Run your first search:

    sibyl search "how to use react with vite"
  6. Configure your settings!
    Check the Configuration section for more details.

Commands

| Command | Description | | -------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | | search | Searches the web sibyl search "react vite" | | fetch | Prints the content of a site in token-efficient markdown sibyl fetch https://vite.dev/guide | | ask | Asks a query using LLM from a site's content sibyl ask https://vite.dev/guide "how to start a react project with vite" | | setup | Installs the SIBYL.md instructions doc into an agent's global instruction files sibyl setup --claude --opencode --codex --antigravity Targets: --claude, --opencode, --codex, --antigravity, --other ~/path/to/AGENTS.md (embed into any file) | | uninstall | Removes Sibyl's instruction integrations without removing Sibyl, its config, or plugins sibyl uninstall --claude Uses the same targets as setup | | --help, -h | Shows help. | | --version | Shows version. |

Configuration

See the configuration documentation for more details at docs/CONFIGURATION.md

Create a Plugin

See the plugin development documentation for more details at docs/CREATING-PLUGINS.md

Contribution

See the contribution documentation for more details at docs/CONTRIBUTION.md