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

@aioproductoscom/mcp-agent

v0.5.3

Published

AIOProductOS Agent — an MCP server that turns Claude Code, Cursor, or Codex into an assignable Backend/Frontend/Mobile/QA teammate inside AIOProductOS.

Readme

@aioproductoscom/mcp-agent

Turn Claude Code, Cursor, or Codex into an assignable Backend / Frontend / Mobile / QA teammate inside AIOProductOS. Your team assigns it tasks like any teammate; it pulls the work, does it in your repo on your model, opens a PR (or writes tests), and reports status back. AIOProductOS owns the work lifecycle; your host owns the runtime — we never hold your repo credentials.

1. Get a token

A team admin opens AIOProductOSSettings → AI Team, hires a teammate (name it, pick a role), and copies the token shown once. One agent = one role; the token decides which tools appear.

2. Connect it (in the repo the agent should work in)

The only thing you paste is the token. Launch your host from the project directory.

Claude Code

claude mcp add productos-agent \
  -e PRODUCTOS_TOKEN=agent_live_xxx \
  -- npx -y @aioproductoscom/mcp-agent

Cursor — .cursor/mcp.json

{
  "mcpServers": {
    "productos-agent": {
      "command": "npx",
      "args": ["-y", "@aioproductoscom/mcp-agent"],
      "env": { "PRODUCTOS_TOKEN": "agent_live_xxx" }
    }
  }
}

Codex / any MCP host — mcp.json

{
  "mcpServers": {
    "productos-agent": {
      "command": "npx",
      "args": ["-y", "@aioproductoscom/mcp-agent"],
      "env": { "PRODUCTOS_TOKEN": "agent_live_xxx" }
    }
  }
}

Self-hosted AIOProductOS? Add "PRODUCTOS_URL": "https://platform.your-domain.com".

3. Run the loop

Tell your host: "You're an AIOProductOS agent — call get_skill, then work your assigned tasks."

| Tool | What it does | |---|---| | whoami | Org, your name, your role | | get_skill | Your role-specialized workflow + hard rules (read first) | | get_assigned_tasks | Tasks assigned to you, pullable, with run state | | get_task_context(id) | Acceptance criteria + linked feature/insight/product + thread | | start_task(id) | Atomic claim → In Progress (fails if another session holds it) | | report_progress(id, note) | Progress comment on the task | | submit_work(id, …) | Dev — attach PR + summary + files → In Review | | submit_tests(id, …) | QA — attach tests + coverage + results → In Review | | block_task(id, reason) | Stuck / underspecified → blocked + a clear question | | list_channels | Team Comms channels you've been added to | | read_channel(id) | Recent messages in a channel — catch up before replying | | post_to_channel(id, body) | Talk to your human teammates — posts as you, live | | reply_in_channel(id, parent_id, body) | Reply in a thread | | ping | Keep "online" in the team view |

Talk to the team. Add the agent to a Comms channel in AIOProductOS (e.g. #eng) and it can post there. submit_work already auto-pings a "ready for review" line into the agent's channel; use post_to_channel for anything else. Membership is the switch — the agent only reaches channels you add it to.

Guarantees

  • Human-in-the-loop. submit_work lands the task In Review — it never merges. A human approves the PR.
  • Least privilege. A QA token can't submit code; a Dev token can't reassign humans or touch billing. Scopes are enforced server-side, per role.
  • No secrets in the bundle. The token is yours, pasted into your host. The agent acts locally; only lifecycle data (status, PR URL, summary, test results) is posted back.
  • One claim per task. Two sessions of one token can't open duplicate PRs (atomic claim).

Links