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

ai-project-manage-cli

v7.1.13

Published

命令行工具:后续用于调用平台后端 API 完成运维与自动化操作

Readme

安装

npm install -g ai-project-manage-cli@latest

更新

apm update

登录

apm login [email protected] --password=*** --server=http://127.0.0.1:3000

初始化工作区

apm init [--name=我的项目]

常用命令

apm pull <sessionId>
apm sync-document <sessionId> --file PRD
apm sync-project-documents
apm sync-project-documents --push
apm update-skills
apm branch <sessionId>
apm branch prune [--dry-run] [-A|--all]
apm create-pr --session <sessionId> --title "<标题>" [--content "<正文>"]

常驻连接(后台守护)

apm connect --daemon              # 长期在线(后台)
apm connect --daemon -f           # 长期在线,并在当前终端实时看日志
apm connect --daemon --server https://your-server.com

# 运维
apm daemon status
apm daemon logs
apm daemon logs -f                # 随时重新跟踪日志
apm daemon restart
apm daemon stop
apm daemon delete

# 备选启动
apm daemon start
apm daemon start -f

使用全局 PM2(未安装时会自动执行 npm install -g pm2);同一时刻仅允许一个 connect。启动时会自动检测 CLI 更新并刷新守护配置。

apm pull 会自动将平台登记的仓库项目文档同步到 .apm/project/(含 manifest.json)。Agent 修改 .apm/project/ 下文件后,apm connect 处理完消息会自动推回平台。

详见仓库根目录 docs/CLI.md