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

oyster-os

v0.6.0

Published

A modern workspace OS with AI at its core

Readme

Release npm Downloads Platform License


🦪 Every agent, one shared brain. Oyster watches your AI sessions, captures the files they touched and the memories they wrote, and brings them all into one workspace — visible, searchable, persistent across every machine. Built on MCP.

# 1. Install
npm install -g oyster-os

# 2. Start
oyster

# 3. Open your browser to http://localhost:4444

Why Oyster

Your AI sessions, files, and memories live in tool-shaped silos. Oyster puts every agent's work on one shared surface, organised by space.

  • See every agent at work — Oyster watches Claude Code automatically. Live transcripts, status (active / awaiting / disconnected / done), and the files each session touched, all on Home.
  • Memory that survives sessionsremember notes are first-class. Every agent's recall reads from the same store, so context follows you across tools and machines.
  • Drop in any project — point Oyster at a folder and it scans for documents, apps, and diagrams, then attributes future sessions back to the right project.
  • Bring any agent — Oyster is an MCP server. Claude Code, Cursor, VS Code, Windsurf, or your own — one standard, every agent.

Quick Start

npm install -g oyster-os
oyster

That's it. On first run, Oyster connects you to an AI provider (opens your browser to sign in). Then your workspace opens at http://localhost:4444.

Or try without installing:

npx oyster-os

Connect Your AI

Oyster is an MCP server. Any MCP-compatible tool can connect and control your workspace.

Claude Code:

claude mcp add --scope user --transport http oyster http://localhost:4444/mcp/

Cursor / VS Code / other MCP clients — add to your MCP config:

{
  "oyster": {
    "type": "http",
    "url": "http://localhost:4444/mcp/"
  }
}

Once connected, your AI can list spaces, open artefacts, create documents, onboard projects, and manage the surface directly.

Onboard a Project

From the Oyster chat bar:

onboard my project at ~/Dev/my-project

Oyster scans the folder for documents, apps, and diagrams and adds them to the surface automatically.

Commands

| Command | What it does | |---|---| | /s <space> | Switch to a space — /s blunderfixer opens that space | | /o <query> | Open an artefact by name — /o pricing deck finds and opens it | | #<space> | Quick space switch — #home goes home, #bf matches blunderfixer | | #<number> | Jump to a numbered space — #1 switches to first space | | #. | Go to the home screen | | normal chat | Ask Oyster anything — navigate, organise, or create work |

Architecture

Browser → http://localhost:4444
              |
        Oyster Server
         - SQLite (artefacts, spaces)
         - MCP server (/mcp/)
         - SSE push (instant UI updates)
         - Static web UI
         - Chat proxy → OpenCode → LLM

Status

Early v1. Local-first. Single-user. Built for fast iteration.

  • Now (0.5.x) — Sessions feed (Claude Code), Memories on Home, Project tiles per space, repo onboarding, 19 MCP tools, slash commands.
  • Next (0.6.x) — Bundles. Multi-file static artefacts; agents push artefacts via MCP.
  • Then (0.7.x) — Oyster Pro. Auth, cross-device sync, end-to-end encrypted storage, shareable links. (pricing)
  • Then (0.8.x) — Multi-agent ingestion. Cursor, Codex, OpenCode session feeds — every agent feeds the same workspace.

See every shipped change in the changelog.

Contributing

Oyster is early, but focused contributions are welcome.

  1. Open an issue first
  2. Keep the scope tight
  3. Send a focused PR with a clear before and after

Development

git clone https://github.com/mattslight/oyster.git
cd oyster
cd web && npm install && cd ../server && npm install && cd ..
npm run dev
# → dev server at http://localhost:7337 (proxies to server at 3333)

Licence

AGPL-3.0

Copyright (c) 2026 Matthew Slight

You can use, modify, and distribute this software freely. If you run a modified version as a network service, you must make your source code available under the same licence.