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

lobster-factory-cli

v0.1.0

Published

CLI for cloning and deploying Lobster Factory agents

Readme

lobster-factory-cli

lobster-factory-cli 是龙虾工厂的一键克隆命令行工具。

当前版本已支持最小可用链路:

  • 根据 agent_code 查找龙虾
  • 读取真实 package_url
  • 下载 ZIP
  • 解压到目标目录
  • 写入 .lobster/meta.json

安装

本地开发

cd packages/lobster-factory-cli
npm install
npm link

发布后安装

npm install -g lobster-factory-cli

用法

lobster-factory clone <agent_code> [--base-url https://longxiazip.com] [--dir /target/path]

示例:

lobster-factory clone A011 --base-url https://longxiazip.com --dir ~/Downloads/a011-test

当前行为

  • 默认从 https://longxiazip.com 拉取龙虾信息
  • 仅在存在真实 package_url 时才允许克隆
  • 默认优先列出本机 OpenClaw workspaces 供选择
  • 也支持:
    • 在当前目录创建同名目录
    • 手动输入绝对路径
  • 若目标目录已有内容,会展示目录预览,并要求输入 YES 才继续
  • 成功后会在目标目录写入 .lobster/meta.json

常见错误

未找到龙虾编号

请确认 agent_code 是否正确,以及该龙虾是否已在平台上线。

没有真实配置包

说明该龙虾还没有可用的 package_url,需要先在平台补齐打包文件。

下载失败

通常是配置包链接不可访问,或目标环境无法连接平台。

用户取消覆盖

当目标目录已有内容时,如果没有输入 YES,CLI 会主动中止。

发布前检查

npm install
npm run check
npm pack
npm link

然后做一次真实克隆验证:

lobster-factory clone A011 --base-url https://longxiazip.com --dir ~/Downloads/a011-test

发布命令

npm login
npm publish --access public