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

agentifyer

v0.2.1

Published

File-backed workspace for orchestrating coding agents - use as a shared backend for AI coding tools

Readme

Agentifyer

A file-backed workspace for orchestrating AI coding agents. Acts as a shared backend for Claude Code, Aider, Cursor, and other AI coding tools.

Quick Start

# Install globally
npm install -g agentifyer

# Configure your AI coding tools
agentifyer setup

# Initialize a project
cd your-project
agentifyer init

What It Does

Agentifyer provides:

  • Multi-agent messaging - Send messages between agents
  • Task management - Create tasks with todos and acceptance criteria
  • Memory - Persistent notes per agent
  • Workspace state - File-backed storage for all agent data
  • MCP integration - Tools available to Claude Code via MCP server

Usage

# Initialize workspace (creates .agentifyer/ and CLAUDE.md)
agentifyer init

# Spawn an agent
agentifyer spawn researcher researcher

# Send a task
agentifyer send --to researcher --subject "Research APIs" --body "Find best HTTP libraries"

# Check inbox
agentifyer inbox researcher

# Create a task
agentifyer task create --owner implementer --title "Build API" --body "Implement REST endpoints"

# Manage todos
agentifyer todo add --task task-id --item "Write tests"

# Workspace status
agentifyer status

# Start MCP server for Claude Code
agentifyer mcp

MCP Server (Claude Code)

Add to ~/Library/Application Support/Claude/mcp_servers.json:

{
  "mcpServers": {
    "agentifyer": {
      "command": "node",
      "args": ["~/.agentifyer/bin/cli.js", "mcp"]
    }
  }
}

Available MCP tools:

  • agentifyer_init - Initialize workspace
  • agentifyer_spawn - Spawn agent
  • agentifyer_send - Send message
  • agentifyer_reply - Reply to message
  • agentifyer_inbox - Check inbox
  • agentifyer_status - Workspace status
  • agentifyer_task_create - Create task
  • agentifyer_task_list - List tasks
  • agentifyer_task_status - Update task status
  • agentifyer_todo - Manage todos
  • agentifyer_memory - Agent memory notes
  • agentifyer_recover - Recover state

Supported Agent CLIs

  • Claude Code (claude)
  • Aider (aider)
  • Cursor (cursor)
  • Windsurf (windsurf)
  • Roo Code (roocode)
  • OpenCode (opencode)
  • Cline (cline)

File Structure

project/
├── .agentifyer/           # Workspace data
│   ├── orchestrator/      # Orchestrator agent
│   ├── agents/            # Spawned agents
│   └── shared/            # Shared config
├── CLAUDE.md              # Instructions (or AGENT.md)
└── agentifyer.md          # Fallback instructions

License

MIT