← Back to Skills Marketplace
iyunya

andrea-test-002

by iyunya · GitHub ↗ · v1.0.1 · MIT-0
cross-platform ⚠ suspicious
101
Downloads
0
Stars
0
Active Installs
2
Versions
Install in OpenClaw
/install andrea-test-002
Description
AlphaClaw 是 SkillHub 技能商店的 CLI 工具,用于搜索、安装、发布和管理 Claude Code 技能。支持 AK/SK 登录、关键词搜索技能、一键安装/发布技能包、收藏和评论等完整功能。
README (SKILL.md)

AlphaClaw - SkillHub CLI 工具

AlphaClaw 是 1688 SkillHub 技能商店的命令行工具,让你可以直接在终端搜索、安装、发布和管理openclaw的技能SKILL。

官网: https://skill.alphashop.cn/

触发条件

当用户提到以下内容时触发:

  • "安装 alphaclaw"、"安装技能商店"、"安装 skill 商店"
  • "搜索技能"、"安装技能"、"发布技能"
  • "alphaclaw login"、"alphaclaw search"、"alphaclaw install" 等命令
  • "技能管理"、"skill 管理"

前置条件

  • Node.js >= 11
  • npm

安装

npm install -g 1688alphaclaw

安装完成后,终端输入 alphaclaw --version 验证是否安装成功。

登录认证

AlphaClaw 使用 AK/SK(Access Key / Secret Key)认证。

获取密钥

访问遨虾控制台获取:https://www.alphashop.cn/seller-center/apikey-management

Secret Key 仅在创建时可见,请妥善保管!

执行登录

alphaclaw login

执行后会自动打开浏览器访问 API 密钥管理页面,然后在终端输入 Access Key 和 Secret Key(SK 输入时会被隐藏)。

凭证保存在 ~/.alphaclaw/auth.json,后续请求自动使用 JWT Token 认证(有效期 30 分钟,自动刷新)。

查看当前用户

alphaclaw whoami

完整命令参考

1. login - 登录

alphaclaw login

自动打开浏览器访问密钥管理页面,交互式输入 AK/SK。

2. whoami - 查看当前用户

alphaclaw whoami

显示当前登录用户的信息。

3. search - 搜索技能

alphaclaw search \x3C关键词>

按关键词模糊搜索技能,返回匹配的技能列表。

示例:

alphaclaw search "小红书"
alphaclaw search "数据处理"
alphaclaw search "1688"

4. info - 查看技能详情

alphaclaw info \x3C技能名称>

查看指定技能的详细信息,包括版本、描述、下载次数、收藏数等。

示例:

alphaclaw info xiaohongshu-upload
alphaclaw info 1688-ranking

5. install - 安装技能

alphaclaw install \x3C技能名称> [选项]

下载并安装技能到本地。默认安装到当前项目的 skills/ 目录下。

选项:

选项 说明
--version \x3Cver> 安装指定版本(默认最新版)
--force 强制覆盖已安装的技能
--dir \x3Cpath> 自定义安装目录

示例:

alphaclaw install xiaohongshu-upload
alphaclaw install xiaohongshu-upload --version 1.0.0
alphaclaw install xiaohongshu-upload --force
alphaclaw install xiaohongshu-upload --dir ./my-skills

安装记录保存在 ~/.skillhub/skills-lock.json

6. list - 查看已安装的技能

alphaclaw list

列出本地已安装的所有技能,显示名称、版本、安装路径和安装时间。

7. publish - 发布技能

alphaclaw publish [目录路径] [选项]

将技能目录打包为 zip 并上传到 SkillHub。目录中必须包含 SKILL.md 文件。

选项:

选项 说明
--yes, -y 跳过确认提示,直接发布

示例:

# 发布当前目录
cd my-skill/
alphaclaw publish

# 发布指定目录
alphaclaw publish ./my-skill

# 跳过确认直接发布
alphaclaw publish ./my-skill --yes

发布流程:

  1. 读取并校验 SKILL.md 的 YAML frontmatter
  2. 如果未设置 category,交互式选择分类
  3. 显示元数据预览,确认后打包上传
  4. 上传后进入"待审批"状态,管理员审批通过后上线

8. comment - 发表评论

alphaclaw comment \x3C技能名称>

对指定技能发表评论,执行后在终端输入评论内容。

示例:

alphaclaw comment xiaohongshu-upload

9. favorite - 收藏/取消收藏

alphaclaw favorite \x3C技能名称> [选项]

选项:

选项 说明
--remove 取消收藏

示例:

alphaclaw favorite xiaohongshu-upload          # 收藏
alphaclaw favorite xiaohongshu-upload --remove  # 取消收藏

全局选项

所有命令均支持以下全局选项:

选项 说明
--api \x3Curl> 覆盖 API 基础 URL
--version, -v 显示版本号
--help, -h 显示帮助信息
--debug 显示调试信息(排查问题时使用)

技能包格式

发布技能时,目录中必须包含 SKILL.md,格式如下:

---
name: my-skill
version: 1.0.0
type: SKILL
category: other
description: "技能描述"
github-url: https://github.com/example/repo
---

# 技能标题

详细说明...

字段说明

字段 必填 说明
name Y 技能名称,小写字母+数字+连字符,3-50字符
description Y 技能描述
version N 语义化版本号,如 1.0.0(省略则自动递增)
type N SKILL(默认)或 EXPERIENCE
category N 分类编码(发布时可交互选择)
github-url N GitHub 仓库链接

技能分类

分类编码 名称
official-1688 官方
product-selection 选品
pricing 定价
inquiry 询盘
material 素材
distribution 铺货
other 其他

目录结构推荐

my-skill/
├── SKILL.md              # 必需 - 技能声明和指令
├── scripts/              # 可选 - 可执行脚本
├── references/           # 可选 - 参考文档
├── assets/               # 可选 - 模板、资源文件
└── prompts/              # 可选 - Prompt 模板

配置文件位置

文件 路径 说明
认证凭证 ~/.alphaclaw/auth.json AK/SK 存储
安装锁文件 ~/.skillhub/skills-lock.json 已安装技能记录
技能目录 ./skills/ 默认安装位置

环境变量

变量 说明 默认值
SKILLHUB_API API 地址 https://api.alphashop.cn
NO_COLOR 禁用彩色输出 -

常见工作流

安装一个技能

alphaclaw login                          # 首次使用需要登录
alphaclaw search "小红书"                 # 搜索技能
alphaclaw info xiaohongshu-upload         # 查看详情
alphaclaw install xiaohongshu-upload      # 安装
alphaclaw list                            # 确认已安装

创建并发布一个技能

mkdir my-skill && cd my-skill

# 创建 SKILL.md(包含 frontmatter 和指令内容)
cat > SKILL.md \x3C\x3C 'EOF'
---
name: my-skill
version: 1.0.0
type: SKILL
description: "我的技能描述"
---

# My Skill

技能使用说明...
EOF

# 添加脚本等资源
mkdir scripts
# ... 添加你的文件

# 发布
alphaclaw login    # 确保已登录
alphaclaw publish  # 发布到 SkillHub

故障排查

遇到问题时,使用 --debug 查看详细信息:

alphaclaw install some-skill --debug
alphaclaw publish --debug

常见问题:

  • 认证失败:重新执行 alphaclaw login
  • 安装失败:检查网络连接,或加 --force 重试
  • 发布被拒绝:检查 SKILL.md 格式是否正确,name 字段是否符合命名规范
Usage Guidance
This bundle is an instruction-only wrapper that tells you to install an external npm package (1688alphaclaw) and to store AK/SK credentials in ~/.alphaclaw/auth.json. Before installing or using it: 1) Look up the npm package 1688alphaclaw on the npm registry and confirm the maintainer and source code (review the package contents and recent publish history). 2) Verify the official homepage/API endpoints (alphashop/skill.alphashop.cn) independently. 3) Check how auth.json is stored (file permissions, whether secret is encrypted) and avoid entering long-lived secrets unless you trust the package. 4) Consider installing in an isolated environment (container or VM) and reviewing the installed package code before granting sensitive credentials. If you cannot confirm the npm package source and code, treat this as higher risk.
Capability Analysis
Type: OpenClaw Skill Name: andrea-test-002 Version: 1.0.1 The skill bundle instructs the AI agent to perform a global installation of an external npm package (1688alphaclaw) and manage sensitive Access/Secret Keys stored in ~/.alphaclaw/auth.json. There is a notable discrepancy between the 'official-1688' branding in SKILL.md and the 'andrea-test-002' slug in _meta.json, which may indicate impersonation. While the described functionality is consistent with a CLI tool for the alphashop.cn service, the requirement for global system modification and credential handling via an AI agent presents a high risk of supply chain attack or credential theft.
Capability Assessment
Purpose & Capability
The name/description (SkillHub CLI for searching/installing/publishing skills) match the runtime instructions. However the skill is instruction-only and instructs users to install an external npm package (1688alphaclaw) and uses an API host (alphashop.cn) while the registry metadata lists no homepage/source — the external dependency and missing source attribution are notable.
Instruction Scope
Instructions correctly describe CLI commands and explicitly instruct storing credentials in ~/.alphaclaw/auth.json, opening a browser for AK/SK entry, installing packages, and writing an install lock at ~/.skillhub/skills-lock.json. These actions are consistent with a CLI but involve storing sensitive secrets locally and invoking an external npm package the skill bundle does not contain.
Install Mechanism
There is no install spec for the skill bundle itself (instruction-only), but the documentation instructs users to run `npm install -g 1688alphaclaw`. That means code will come from the npm registry (not included in this package) and the skill metadata provides no authoritative source/homepage for that package — moderate risk until you verify the npm package and its publisher.
Credentials
The SKILL.md references an environment variable SKILLHUB_API (defaulting to https://api.alphashop.cn) and file paths for storing credentials, but the registry requirements list no required env vars. The AK/SK credential flow is reasonable for this CLI, but the undeclared SKILLHUB_API and local storage of Secret Key (sensitive) should be verified (encryption, permissions, and retention).
Persistence & Privilege
The skill does not request always:true and does not modify other skills; it instructs writing its own config files under the user's home directory (~/.alphaclaw and ~/.skillhub), which is expected for a CLI. Autonomous invocation defaults are normal and not by themselves a concern here.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install andrea-test-002
  3. After installation, invoke the skill by name or use /andrea-test-002
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.1
- 技能名称由 "alphaclaw" 取代了原有的 "alphaclaw",其余功能和描述未发生变化 - 元数据和命令功能保持一致 - 未检测到任何文件变更,说明代码功能未做修改 - 文档内容与上一个版本完全一致,唯一差异为 SKILL.md 文件中的 name 字段更正
v1.0.0
No file changes detected. Version number updated from 1.0.0 to 1.0.1. No other changes in functionality or documentation.
Metadata
Slug andrea-test-002
Version 1.0.1
License MIT-0
All-time Installs 0
Active Installs 0
Total Versions 2
Frequently Asked Questions

What is andrea-test-002?

AlphaClaw 是 SkillHub 技能商店的 CLI 工具,用于搜索、安装、发布和管理 Claude Code 技能。支持 AK/SK 登录、关键词搜索技能、一键安装/发布技能包、收藏和评论等完整功能。 It is an AI Agent Skill for Claude Code / OpenClaw, with 101 downloads so far.

How do I install andrea-test-002?

Run "/install andrea-test-002" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is andrea-test-002 free?

Yes, andrea-test-002 is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does andrea-test-002 support?

andrea-test-002 is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created andrea-test-002?

It is built and maintained by iyunya (@iyunya); the current version is v1.0.1.

💬 Comments