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

figworkai

v2026.1.0

Published

Install and run fig — FigWorkAI CLI binary from GitHub Release artifacts.

Readme

figworkai

一键安装 FigWorkAI CLI fig 命令行工具。

npm install -g figworkai

安装后即可使用 fig 命令:

fig --help
fig chat

工作原理

本包是一个 npm 代理包,不包含 Rust 编译产物。安装时自动从 GitHub Releases 下载对应平台的预编译二进制文件。

支持的平台

| 平台 | 架构 | |------|------| | Linux | x64, arm64 | | macOS | x64, arm64 | | Windows | x64 |

环境变量

| 变量 | 说明 | |------|------| | FIG_VERSION | 指定要下载的二进制版本 | | FIG_RELEASE_REPO | 指定 GitHub 仓库 (默认: FigWorkAI/fig-release) | | FIG_FORCE_DOWNLOAD | 强制重新下载 (设为 1) | | FIG_DOWNLOAD_TIMEOUT_MS | 下载超时 (毫秒,默认 300000) | | FIG_DOWNLOAD_STALL_MS | 无数据超时 (毫秒,默认 30000) | | FIG_QUIET_INSTALL | 静默安装 (设为 1) | | FIG_DISABLE_INSTALL | 禁止安装时下载 (设为 1) | | FIG_SKIP_GLIBC_CHECK | 跳过 glibc 兼容性检查 (设为 1) | | FIG_OPTIONAL_INSTALL | 安装失败不阻断 (设为 1) | | FIG_RELEASE_BASE_URL | 自定义下载源 URL (覆盖 GitHub) |

从源码构建

git clone https://github.com/FigWorkAI/FigWorkAI.git
cd FigWorkAI
cargo build --release -p cli
./target/release/fig

发布流程

# 1. 编译 + 上传 GitHub Release
./scripts/publish-release.sh <版本号>

# 2. 发布 npm 包
cd npm/figworkai
npm publish