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

@_vrsen/openswarm

v0.1.2

Published

An open-source multi-agent AI team built on Agency Swarm

Readme

OpenSwarm

OpenSwarm is an open-source multi-agent AI team you can run locally (terminal UI) or deploy as an API.

Instead of a single "do-everything" bot, OpenSwarm routes each request to the right specialist agent (research, data analysis, docs, slides, images, video, and a virtual assistant) and coordinates the result for you.

Built on Agency Swarm and the OpenAI Agents SDK.


What can I do with it?

Examples you can paste into the terminal UI:

  • "Research the current competitive landscape for X, cite sources, and summarize in bullets."
  • "Analyze mnt/data.csv, find anomalies, and produce a chart plus a short narrative."
  • "Create a 6-slide pitch deck about X with a modern theme, then export to PPTX."
  • "Draft a professional one-page memo about X and export to PDF."
  • "Generate a hero image for my landing page, then create 3 variants."
  • "Combine these clips, trim pauses, add captions, and export a final video."

OpenSwarm can also connect to external services (Gmail, Slack, GitHub, etc.) via Composio if you set the optional keys.


Agent Roster

| Agent | What it does | |---|---| | Orchestrator | Routes every user request to the right specialist(s). Never answers directly — pure coordination. | | Virtual Assistant | Handles everyday tasks: writing, scheduling, messaging, task management. Gains 10,000+ external integrations via Composio (Gmail, Slack, GitHub, HubSpot, and more). | | Deep Research | Conducts comprehensive, evidence-based web research with citations and balanced analysis. | | Data Analyst | Analyses structured data, builds charts, runs statistical models — all inside an isolated IPython kernel. | | Slides Agent | Generates complete, visually polished HTML slide decks, then exports them to PPTX. | | Docs Agent | Creates formatted Word documents and PDFs from outlines or raw content. | | Image Generation Agent | Generates and edits images using Gemini 2.5 Flash Image / Gemini 3 Pro Image and fal.ai. | | Video Generation Agent | Produces videos via Sora (OpenAI), Veo (Google), and Seedance (fal.ai); also edits and combines clips. |


Prerequisites

| Requirement | Notes | |---|---| | Python | 3.10 or newer | | Node.js | 20 or newer |

Everything else (Python packages, Node.js dependencies, Playwright / Chromium, LibreOffice, Poppler) is installed automatically on first run.


Quick Start

Option A — Local install (interactive terminal)

git clone https://github.com/VRSEN/openswarm.git
cd openswarm
python run.py

On first run, a setup wizard walks you through choosing a provider and entering your API keys. Everything else (Python packages, Node.js dependencies, Playwright browser) installs automatically.

Once configured, python run.py drops you straight into the terminal UI. Outputs and generated files are written to ./mnt/.


Option B — Docker (API server; no system dependencies required)

Requires Docker.

git clone https://github.com/VRSEN/openswarm.git
cd openswarm
cp .env.example .env        # fill in at least one provider key
docker-compose up --build

The FastAPI server starts on http://localhost:8080.


Running as an API

python server.py        # local install
# or
docker-compose up       # Docker

Starts a FastAPI server on port 8080. The agency is exposed at /open-swarm.


Configuration

Provider & model

Set your provider key and optionally override the default model in .env:

OPENAI_API_KEY=sk-...

# Optional: override the model used by all agents
DEFAULT_MODEL=gpt-4o

The onboarding wizard sets these automatically. You can also edit .env directly at any time — see .env.example for all options.

Optional integrations

| Key(s) | Feature unlocked | |---|---| | ANTHROPIC_API_KEY | Claude models via LiteLLM | | COMPOSIO_API_KEY + COMPOSIO_USER_ID | 10,000+ external integrations via Virtual Assistant | | SEARCH_API_KEY | Web search, Scholar search, Product search (searchapi.io) | | GOOGLE_API_KEY | Gemini image generation/editing, Veo video generation | | FAL_KEY | Seedance video generation, video editing, background removal | | PEXELS_API_KEY | Pexels stock photo search (Slides Agent) | | PIXABAY_API_KEY | Pixabay stock photo search (Slides Agent) | | UNSPLASH_ACCESS_KEY | Unsplash stock photo search (Slides Agent) |

Tools that require a missing key raise a clear error at call time — the agent will tell you what to add.


Adding a New Agent

  1. Create a new folder: my_agent/
  2. Add my_agent.py (Agent definition), instructions.md, and tools/
  3. Register the agent in swarm.pycreate_agency()

See the Agency Swarm docs for the full agent creation guide.


Learn More

| Component | Library | |---|---| | Multi-agent framework | Agency Swarm | | LLM runtime | OpenAI Agents SDK | | External integrations | Composio | | Multi-provider LLM routing | LiteLLM | | API deployment | FastAPI + Uvicorn | | SaaS platform | Agent Swarm |


License

MIT — see LICENSE.