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

@lsddream/platform-cli

v0.1.8

Published

AgentScope Platform CLI (asp) — pre-release platform

Readme

AgentScope Platform CLI (asp)

AgentScope Platform 命令行工具。默认对接:https://platform-pre.agentscope.io

| Platform URL | | --- | | https://platform-pre.agentscope.io |

如需指向其他地址,可通过 ASP_PLATFORM_URL--platform-url 覆盖。

安装

npm install -g @lsddream/platform-cli

环境变量

| 变量 | 说明 | | --- | --- | | ASP_TOKEN | 访问令牌 | | ASP_PLATFORM_URL | 自定义 Platform 地址(高级) | | ASP_CONFIG_DIR | 凭证目录,默认 ~/.asp |

全局选项

asp --token <token>
asp --verbose
asp --json
asp --version
asp --help

鉴权

| 命令 | 说明 | | --- | --- | | asp auth login | 登录 | | asp auth status | 查看状态 | | asp auth refresh | 刷新 token | | asp auth logout | 退出 | | asp auth logs | 查看 CLI 请求留痕 |

登录方式

支持两种登录方式(与后端 /api/cli/v1 联调文档一致):

| 方式 | 命令 | 说明 | | --- | --- | --- | | 浏览器授权(推荐) | asp auth login → 选 1--browser | 打开 {platform_url}/cli/login,OAuth PKCE 授权后回调本机 | | 账号密码 | asp auth login → 选 2--password | POST /auth/login |

# 交互式选择登录方式(浏览器 / 账号密码)
asp auth login

# 浏览器授权登录(类似 gh auth login --web)
asp auth login --browser

# 账号密码登录
asp auth login --password
asp auth login --password --account [email protected] --pass 'your-password'

典型工作流

asp auth login
asp auth status

Plugin 命令

# 搜索 / 查看
asp plugin search qwen
asp plugin info <plugin_id>
asp plugin versions <plugin_id>

# 安装(通过 qwenpaw)
asp plugin install <plugin_id>

# 发布:本地 zip(zip 模式下 artifact_id/version 由 complete 阶段从包内解析)
asp plugin publish ./my-plugin.zip

# 发布:URL(会优先从 URL 自动识别 category,识别不到再交互选择)
asp plugin publish --url "https://github.com/org/repo/releases/download/v1.0.0/plugin.zip" --category tool

# 查询发布进度 / 日志(支持 plugin_id;已发布插件会走 GET /plugins/{id})
asp plugin publish status plugin_id --watch
asp plugin publish logs plugin_id

Skill 命令

# 搜索 / 查看
asp skill search web
asp skill info <skill_id>
asp skill versions <skill_id>

# 安装(通过 qwenpaw)
asp skill install <skill_id>

# 发布:本地 zip(未传 --category 会交互选择)
asp skill publish ./my-skill.zip --category document

# 发布:URL(未传 --category 会交互选择)
asp skill publish --url "https://github.com/org/repo/releases/download/v1.0.0/skill.zip" --category document

# 查询发布进度 / 日志
asp skill publish status <skill_id> --watch
asp skill publish logs <skill_id>