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

agestra

v4.15.0

Published

Multi-host MCP orchestration for Claude Code, Codex CLI, Gemini CLI, and local models

Readme

Agestra

npm version license

面向 Claude Code、Codex CLI、Gemini CLI 和本地模型的多宿主 MCP 编排工具。

English | 한국어 | 日本語 | 中文

Agestra 用来让多个 AI 从不同角度审视同一个问题,并把结果整理成证据清晰的结论。它适合代码审查、QA、安全检查、设计讨论、想法探索和基于证据的共识。

快速开始

先在你已经使用的宿主里安装 Agestra。

| 宿主 | 安装 | |------|------| | Claude Code | 先执行 /plugin marketplace add mua-vtuber/Agestra,再执行 /plugin install agestra@agestra | | Codex CLI | 先执行 npm install -g agestra,再执行 agestra-install codex --assets --scope user | | Gemini CLI | 先执行 npm install -g agestra,再执行 agestra-install gemini --assets --scope user |

安装后,打开项目并发起 Agestra 工作流。

  • Claude Code: /agestra review, /agestra qa, /agestra security, /agestra design, /agestra idea
  • Gemini CLI: /agestra:review, /agestra:qa, /agestra:security, /agestra:design, /agestra:idea
  • Codex CLI: 像 Use Agestra with Gemini and Codex to review this branch. 这样明确提到 Agestra 或多个 AI

第一次运行时,它可能会询问你要启用哪些 provider。只有一个 provider 也能完成设置和宿主自有流程,但 Multi-AI 比较在两个以上 provider 时效果最好。

用它做什么

  • review: 比较多个 AI 对代码质量、回归风险、UX 和整理点的看法
  • qa: 按设计文档或计划验证实现,并收集 PASS/FAIL 证据
  • security: 专门做安全视角的检查
  • design: 在写代码前讨论结构和取舍
  • idea: 探索改进方向、备选方案和相似工具

运行时会发生什么

  1. Agestra 检查设置和可用 provider。
  2. 它把请求整理成目标和范围明确的工作流。
  3. 如果需要调查,宿主先收集并整理证据。
  4. 被选中的 provider 只讨论或审查剩下的未解决问题。
  5. Agestra 返回一份包含结论、分歧和证据的结果。

普通的 review 或 QA 请求不会自动变成 Agestra 工作流。只有当你使用 /agestra ...,或者明确要求多 AI / provider-backed 的 review、QA、安全、设计或 idea 工作时,Agestra 才会启动。

代码修改应优先由当前宿主直接完成。Agestra 最适合在修改之后审查结果、按计划验证、比较多个 provider 的意见,并记录证据。

在这个仓库里使用

如果你 clone 了这个仓库,想测试当前 checkout:

npm install
npm run bundle

然后按宿主执行安装:

npm run install:claude
npm run install:codex
npm run install:gemini

这些命令会注册当前 checkout 并安装 helper assets,不会把 npm 包装成全局安装。

如果你想让当前 checkout 像真正的全局包一样工作:

npm run bundle
npm install -g .
npm run install:codex:global

Gemini 使用 npm run install:gemini:global

进一步文档

开发

npm run build
npm test
npm run bundle
npm run lint

卸载

Claude Code:

/plugin uninstall agestra@agestra

Codex CLI:

npm run uninstall:codex
npm run uninstall:codex:assets

Gemini CLI:

npm run uninstall:gemini
npm run uninstall:gemini:assets

如果还想删除生成的项目数据,请手动删除 .agestra/

许可证

GPL-3.0