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

@cloudtower/eagle

v490.0.11

Published

[storybook]: https://cloudtower-ui-kit.vercel.app [next storybook]: https://next-cloudtower-ui-kit.vercel.app [v3.x storybook]: https://v3xx-cloudtower-ui-kit.vercel.app [贡献代码]: ./CONTRIBUTE.md

Readme

CloudTower UI KIT

StoryBook

main 分支 storybook storyBook

next 分支 storybook next storybook

v3.x 分支 storybook v3.x storybook

发版

进入到 Create Release PR 的 workflow 界面

详见 RELEASE.md

使用

import { antdKit } from "@cloudtower/eagle";
import { initParrotI18n, UIKitProvider } from "@cloudtower/eagle";
// Set Up Style
import "@cloudtower/eagle/dist/style.css";

initParrotI18n();
// Set Up Providers
ReactDOM.render(
  <React.StrictMode>
    <UIKitProvider>
      <App />
    <UIKitProvider>
  </React.StrictMode>,
  document.getElementById("root") as HTMLElement
);
import { Button } from "@cloudtower/eagle";
import React, { useContext } from "react";

const App = () => {
  return (
    <div>
      <Button
        onClick={() => {
          alert("hello");
        }}
      >
        say hello
      </Button>
    </div>
  );
};

export default App;

AI / Agent 集成

组件库提供了机器可读的文档和 Agent Skill,方便 AI coding agent 理解和使用组件。

Agent 友好文档

文档随 npm 包发布,安装后位于 node_modules/@cloudtower/eagle/docs/

  • docs/llms.txt -- 组件索引,按分类列出所有组件及一句话描述
  • docs/<layer>/<组件名>/guide.md -- 组件详细文档(Props、用法示例、常见模式)
  • docs/<layer>/<组件名>/migrate-guide.md -- 废弃组件迁移指南(在各废弃组件目录下)

Agent Skills

Skill 遵循 Agent Skills 开放标准,兼容 Claude Code、Cursor、Copilot 等 40+ Agent 工具。

| Skill | 说明 | |-------|------| | cloudtower-eagle | 消费侧:帮助 Agent 在业务项目中正确使用组件(组件选型、废弃迁移、使用模式) | | cloudtower-eagle-dev | 生产侧:帮助 Agent 参与组件库开发(编写文档、Props 变更同步、废弃组件流程) |

安装:

# 查看可用 skill
npx skills add webzard-io/cloudtower-ui-kit --list

# 安装消费侧 skill(在业务项目中)
npx skills add webzard-io/cloudtower-ui-kit --skill cloudtower-eagle

# 安装生产侧 skill(组件库开发时)
npx skills add webzard-io/cloudtower-ui-kit --skill cloudtower-eagle-dev

如何 贡献代码

  • 快速开始
    yarn && cd packages/eagle && yarn storybook

详细参考 贡献代码