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

@fa-software/context-kit-install

v1.0.1

Published

FA Context Kit installer CLI for Claude Code, Codex, and OpenCode

Downloads

229

Readme

FA Installer

install/@fa-software/context-kit-install 的独立 npm 子项目,用于把标准安装包分发到 Claude Code、Codex、OpenCode。

安装包格式

安装源必须满足以下结构:

<root>/
  manifest.json
  skills/
  agents/
    <category>/
      <agent>.md

说明:

  • skills/ 仍按技能目录结构提供源码。
  • agents/ 支持子目录组织 canonical source,例如 agents/review/foo.mdagents/research/bar.md
  • 安装时 agent 会按目标平台要求平铺写入目标 agent 根目录,而不是保留源码子目录结构。
  • 安装后的 agent 文件名统一以 fa- 开头;若源码 basename 已带 fa-,则保持不变。
  • 因为安装产物会平铺,agents/** 下的源码 basename 必须全局唯一。

manifest.json 目前要求:

{
  "schemaVersion": 1,
  "packageName": "fa-context-kit",
  "version": "1.0.0",
  "buildType": "debug",
  "platforms": ["claude", "codex", "opencode"]
}

远程 source 必须是压缩包 URL,本地 source 必须是目录路径。

命令

node install.js --source=.. --claude --local
node install.js status --all --local
node install.js uninstall --claude --local --yes

支持的子命令:

  • install
  • status
  • uninstall

支持的核心参数:

  • --source=<url-or-path>
  • --claude
  • --codex
  • --opencode
  • --all
  • --global
  • --local
  • --dry-run
  • --yes
  • --force
  • --allow-downgrade

状态与升级

安装器会在目标目录下写入:

.fa/install-state.json

该文件记录当前版本和托管文件列表。升级时只处理托管文件,不碰未托管文件。

如果托管文件已被用户修改:

  • 默认报冲突并停止
  • --force 才覆盖或删除

开发

npm run check
npm test

发布前会执行:

npm run prepack