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 🙏

© 2025 – Pkg Stats / Ryan Hefner

workflow3

v1.0.7

Published

MCP Server for three-stage workflow prompt injection

Readme

Workflow3 MCP Server

一个为AI编程工具提供三阶段工作流提示词注入的MCP Server。 所有支持MCP配置的工具都可以使用,比如Cursor、Claude Code、Windsurf等。

提示词

完整提示词请见:src/templates/workflow3.md,可随意使用。 如果你添加到cursor rule或者CLAUDE.md中,就不需要安装mcp了。

功能特性

  • 🚀 一键激活三阶段工作流提示词
  • 🎯 内置标准工作流,开箱即用
  • 🔧 零配置使用,无需额外设置

安装配置

如果你用的是Claude Code,通过命令行添加:

claude mcp add workflow3 -s user -- npx -y workflow3

如果你用的是Cursor,配置路径是:Cursor Settings -> Tools & Integrations -> MCP Tools 添加如下代码(如果已经有了mcpServers,则只需要添加关于workflow3的内容):

{"mcpServers": {
    "workflow3": {
      "command": "npx",
      "args": ["-y", "workflow3"]
    }
  }
}

如果Cursor上显示0 tool enabled,应该是哪里出错了,这里可以看错误日志: Cursor MCP Log

如果你访问npm有困难,可以使用镜像,比如用淘宝的npm镜像:

{
  "mcpServers": {
    "workflow3": {
      "command": "npx",
      "args": [
        "-y", 
        "--registry",
        "https://registry.npmmirror.com",
        "workflow3"
      ]
    }
  }
}

其他的编程工具是类似的。

无需预先安装,npx会自动下载最新版本。

使用方法

基本用法

在对话的第一行:

use workflow3

也可用自然语言请求激活工作流:

请激活三阶段工作流
启用workflow3

Cursor等编程工具会自动识别并调用workflow3,激活完整的三阶段工作流提示词。

使用后会在用户主目录生成一个 ~/.workflow3.md 配置文件,你可以直接编辑这个文件来自定义工作流,修改后下次对话生效。这个配置文件在所有项目中共享使用。

阶段控制

激活工作流后,默认阶段是分析问题,你也可以指定阶段。

三阶段工作流说明

阶段一:分析问题 【分析问题】

  • 深入理解需求本质
  • 搜索所有相关代码
  • 识别问题根因
  • 向我提问

阶段二:制定方案 【制定方案】

  • 列出变更文件清单
  • 描述每个文件的具体变化
  • 确保方案可执行

阶段三:执行方案 【执行方案】

  • 严格按照方案实现
  • 运行必要的检查
  • 确保代码质量

许可证

MIT License

贡献

欢迎提交Issue和Pull Request!

支持

如果遇到问题,请在GitHub Issues中报告。