🚀 Socket Launch Week Day 5:Introducing Repository Access Permissions and Custom Roles.Learn more
Sign In

skill-base-cli

Package Overview
Dependencies
Maintainers
1
Versions
14
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

skill-base-cli

Skill Base CLI - 命令行工具,用于搜索、安装、更新和发布 AI Agent Skills

Source
npmnpm
Version
1.0.4
Version published
Weekly downloads
50
42.86%
Maintainers
1
Weekly downloads
 
Created
Source

Skill Base CLI

命令行工具,用于搜索、安装、更新和发布 AI Agent Skills。

安装

npm install -g skill-base-cli

或使用 npx 直接运行:

npx skill-base-cli <command>

环境配置

CLI 默认连接 http://localhost:8000,可通过环境变量修改:

export SKB_BASE_URL=https://your-skill-base-server.com

命令

认证

# 登录
skb login

# 登出
skb logout

Skill 管理

# 搜索 Skill
skb search <keyword>

# 安装 Skill
skb install <skill_id>
skb install <skill_id>@<version>
skb install <skill_id> -d ./target-dir

# 更新 Skill
skb update <skill_id>
skb update <skill_id> -d ./target-dir

# 发布 Skill
skb publish <directory>
skb publish <directory> --name "Skill Name" --description "Description"
skb publish <directory> --changelog "版本说明"

快速开始

# 1. 登录
skb login

# 2. 搜索
skb search vue

# 3. 安装
skb install vue-best-practices

# 4. 发布自己的 Skill
skb publish ./my-skill --changelog "初始版本"

发布要求

  • 目录必须包含 SKILL.md 文件
  • 文件夹名称将作为 skill_id
  • namedescription 可从 SKILL.md 自动提取

系统要求

  • Node.js >= 18.0.0

License

MIT

Keywords

skill

FAQs

Package last updated on 27 Mar 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts