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

futures-ai-plugin

v1.0.7

Published

Futures Assistant plugin: Cursor/Claude coding framework and knowledge base

Downloads

15

Readme

AI Coding Project

本项目是 AI Coding 落地架构的参考项目,支持所有主流支持 Skills 的 Agent/AI Coding IDE。

项目架构

| 架构组成 | 说明 | | -------- | ----------------------------------------------------------------------------------- | | SDD | 开发流程控制,保证需求不遗漏,开发不脱节,可进行需求分析/开发规划/验收测试/复盘归档 | | MCP | 对接外部能力,如设计稿读取、浏览器访问页面查看实际效果、接口文档 | | Rules | 约定「做什么、不做什么」,如保证 AI 遵循项目结构,规范约束,代码风格 | | Skills | 约定「怎么做」,渐进披露按需指导 AI 怎么做,如怎么写UI,怎么验收UI |

使用说明

Skills、Rules 可复制到你的项目中使用,OpenSpec、MCP 只在 Cursor 下作为参考,集成到你自己的项目请根据官方文档自行集成

项目结构

项目根/
├── .agents/                    # 唯一维护的规范与技能目录
│   ├── rules/                  # 规则
│   └── skills/                 # 技能
│
├── .cursor/                    # Cursor:内部 rules、skills 软链到 .agents
├── .claude/                    # Claude:同上
├── .opencode/                  # OpenCode:同上
└── .trae/                      # Trae:同上

脚手架安装

本项目可作为 npm 脚手架使用,在目标目录中按需选择编辑器和 AI 助手能力后再复制配置。

Mac / Linux(终端):

npx futures-ai-plugin [目标目录]
# 或
npm init futures-ai-plugin

Windows(PowerShell 或 CMD):

npx futures-ai-plugin [目标目录]

或先安装再运行(适合网络受限环境):

npm init -y
npm install futures-ai-plugin
npx futures-ai-plugin [目标目录]
  • 需已安装 Node.js(>= 16)。
  • 交互会引导选择编辑器(Cursor / Claude),或使用 npx futures-ai-plugin myapp --cursor 直接生成 Cursor 知识库。
  • Windows 下若创建目录软链失败,会自动改为复制目录,不影响使用。