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

@shirayner/ace

v1.1.1

Published

AI Coding Environment - One command to set up your Claude Code harness

Readme

ACE — AI Coding Environment


什么是 ACE?

ACE 是一个 AI 编码环境,为 Coding Agent 提供 14 个专业 skill + 8 个共享认知协议 + 10 条编码规则,覆盖编码全生命周期:

  • 认知基础设施 — 理解协议、对齐协议、验证铁律,确保 AI 做对事
  • 14 个专业 Skill — 从PRD撰写到需求理解到代码实现到复盘归档的完整能力
  • 规范驱动工作流 — 门禁系统确保每个决策经过对齐确认
  • 经验进化 — 项目级经验积累,跨会话持续成长

核心理念

| 原则 | 含义 | | ---------------------- | ---------------------------------------------------- | | 深度思考 | 理解先于规划,规划先于行动。用事实闭环,不以假设收尾 | | 对齐优先 | 准确完成用户真正想要的,胜过高效完成 agent 以为的 | | Clean Code | 正确性 > 可读性 > 清晰 > 简单 > 显式 | | 规范先于代码 | 决策先于实现,验证闭环先于归档 |


Skill 概览

一、核心编码流水线

| Skill | 命令 | 说明 | | -------------- | ----------------------- | ---------------------------------------------------- | | auto-goal | /ace:auto-goal | 自主目标编排——万能通用,设定定一个目标,AI努力完成 | | spec-coding | /ace:spec-coding | 全生命周期规范驱动编码(6 Phase + 门禁系统) | | spechub-coding | /ace:spechub-coding | 基于 SpecHub 平台产物的本地编码 |

二、质量保障

| Skill | 命令 | 说明 | | ----------- | -------------------- | --------------------------------------------- | | code-review | /ace:code-review | 代码审查(正确性→设计→风格三层分析) | | ut | /ace:ut | 单元测试生成/修复(行覆盖 ≥80%、分支 ≥70%) | | verify | /ace:verify | 横切验证门控(无证据不可声称通过) |

三、知识与分析

| Skill | 命令 | 说明 | | -------------------- | ----------------------------- | ---------------------- | | init | /ace:init | 项目技术画像初始化 | | requirement-analysis | /ace:requirement-analysis | 需求分析流水线 | | llm-wiki-generator | /ace:llm-wiki-generator | 为仓库生成 LLM 知识库 | | llm-wiki-reader | /ace:llm-wiki-reader | 渐进式消费 wiki 知识库 |

四、元工具

| Skill | 命令 | 说明 | | ----------------- | -------------------------- | ------------------ | | skill-creator | /ace:skill-creator | 创建新 skill | | skill-optimize | /ace:skill-optimize | 深度优化现有 skill | | parallel-dispatch | /ace:parallel-dispatch | 并行代理调度 |


快速开始

1. 安装

# 安装最新版本到本地
# 如果之前安装过,会用最新版本覆盖(因此当 ace upgrade 命令不存在时,也可以执行此命令来升级ace)
npm install -g @shirayner/ace --registry=https://registry.npmjs.org/

2. 初始化环境

ace init

ACE 自动配置:全局规则、Skills 插件、CLAUDE.md 索引。

3. 开始使用

开放式目标(万能通用)

/ace:auto-goal  描述你的目标

规范驱动开发

/ace:spec-coding  描述需求/或飞书需求链接/或文件

SpecHub接力开发

/ace:spechub-coding spechub需求ID

CLI 命令

| 命令 | 说明 | | ----------------- | -------------------------------------------- | | ace init | 初始化 AI 编码环境(全局配置 + 规则 + 插件) | | ace doctor | 检查安装完整性 | | ace list | 查看已安装组件状态 | | ace upgrade | 升级到最新版本 | | ace uninstall | 卸载所有 ace 管理的组件 |


文档

| 文档 | 说明 | | ----------------------------------------- | ------------------------ | | 系统架构 | 三层架构设计与协作模型 | | 安装与快速上手 | 详细安装步骤与典型工作流 | | Skill 使用手册 | 14 个 skill 的分类详解 | | 产物目录规范 | .ace/ 目录组织约定 |


项目结构

ace/
├── bin/                  # CLI 入口
├── src/                  # CLI 源码
│   ├── commands/         #   命令实现
│   ├── core/             #   核心逻辑
│   └── utils/            #   工具函数
├── plugin/               # Claude Code 插件(安装到 ~/.claude/plugins/)
│   ├── shared/           #   共享协议层
│   ├── skills/           #   14 个 skill
│   └── commands/         #   插件命令
├── docs/                 # 文档库
└── package.json

License

MIT