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

@xiaoailazy/coexistree-cli

v0.2.0

Published

CoExistree Agent CLI — tasks, documents, and knowledge-tree ask via HTTP

Downloads

25

Readme

@xiaoailazy/coexistree-cli

CoExistree Agent CLI:产研任务、系统提问。配合 @xiaoailazy/coexistree-skills 供各类 Agent 使用。

安装

npm install -g @xiaoailazy/coexistree-cli

一键(CLI + Skills):npm install -g @xiaoailazy/coexistree

本地开发:

cd packages/cli && npm install && npm link

配置(推荐)

在 Web 密钥管理 开启并复制 Agent Key,并确认目标系统的 system code

coexistree config initial \
  --api-key "ce_从Web复制" \
  --system-code "order-service" \
  --base-url http://localhost:8080

写入 ~/.coexistree/config.json(权限 600)。之后所有子命令自动读取,无需 --env-file

| 子命令 | 说明 | |--------|------| | config initial | 创建/覆盖配置(已有文件需 --force) | | config show | 查看配置(api-key 脱敏) | | config path | 打印配置文件路径 | | task create | 创建任务并上传需求 .md | | task list | 任务列表(scope: 待开发 / 待补用例) | | task pull | 拉取 REQUIREMENT / DESIGN / TEST_CASE 到本地 | | task upload | 上传 DESIGN / TEST_CASE(必填 .md 路径) | | ask | 向系统提问 |

自定义路径:coexistree --config /path/to/config.json ...

覆盖优先级(高→低)

  1. 已存在的环境变量
  2. --env-file(仅填充尚未设置的变量)
  3. 配置文件
  4. 全局 --base-url

使用

coexistree task create --title "迭代 1" docs/req.md
coexistree task list
coexistree task pull --task-id 42 --doc-type REQUIREMENT
coexistree task upload --task-id 42 --doc-type DESIGN docs/superpowers/specs/...-design.md

coexistree ask --question "变更批次失败时有哪些 stage?"

上传需求/设计不会自动合并进知识树;合并在 Web 对任务执行「应用变更」。

发布

cd packages/cli
npm test
npm publish --access public

需已登录 npm 且对 @xiaoailazy 作用域有发布权限。