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

brick-skill

v1.0.9

Published

一款专注快速完成计算机毕业设计的 AI Skills 规范库

Readme

brick-skill

一款专注快速完成计算机毕业设计的 AI Skills 规范库。

内置技能

当前 Codex skills 包含:

| 技能 | 说明 | |------|------| | json-plan-creator | 生成积木智创项目创建接口 /AiSkill/SkillCreateAsync 所需的 JSON 计划、表设计、枚举和一对一关系配置。 | | generate-task-checklist | 根据项目题目、系统名称、角色设定或简短需求,生成格式统一、内容完整的中文 任务清单.md。 | | database-generate | 根据 任务清单.md、项目需求或功能描述,生成满足固定规则的 MySQL 建表脚本。 |

安装方式

推荐全局安装 brick-skill 命令:

npm install -g brick-skill

然后在你的项目目录里执行:

brick-skill --codex

默认会安装到当前项目:

./.codex/skills

如果要安装到 Codex 用户级全局目录:

brick-skill --codex --global

全局目录是:

~/.codex/skills

常用命令

安装 Codex skills 到当前项目:

brick-skill --codex

安装 Kiro skills 到当前项目:

brick-skill --kiro

安装全部可用目标到当前项目:

brick-skill --all

临时执行,不全局安装:

npx brick-skill --codex

项目内依赖

如果希望把 brick-skill 作为项目依赖保存:

npm install -D brick-skill

然后在项目中执行:

npx brick-skill --codex

也可以在项目的 package.json 中配置脚本:

{
  "scripts": {
    "skills:install": "brick-skill --all",
    "skills:install:codex": "brick-skill --codex",
    "skills:install:codex:global": "brick-skill --codex --global",
    "skills:install:kiro": "brick-skill --kiro"
  }
}

之后执行:

npm run skills:install:codex

参数

--codex             安装 Codex skills
--kiro              安装 Kiro skills
--all               安装全部可用目标
--global            安装到用户级全局 skill 目录
--dry-run           只打印安装动作,不复制文件
--codex-dir <path>  覆盖 Codex 安装目录
--kiro-dir <path>   覆盖 Kiro 安装目录

目录约定

skills/
  codex/
    <skill-name>/
      SKILL.md
      agents/
        openai.yaml
      references/
        standard-case.md
  kiro/
    <skill-name>/
      ...

默认项目级安装目录:

./.codex/skills
./.kiro/skills

用户级全局安装目录:

~/.codex/skills
~/.kiro/skills

发布

发布前先检查 npm 包内容:

npm run pack:dry-run

确认无误后发布:

npm publish