Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问许可证需确认审计通过

usm-cliUSM CLI 搜索

Agent Skill

usm-cli 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

196

周安装

8

GitHub Stars

公开资料未说明

下载量

63
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:usm-cli(USM CLI 搜索)
来源仓库:https://github.com/dl-alexandre/skills
仓库路径:skills/usm-cli
安装命令:
npx skills add https://github.com/dl-alexandre/skills --skill usm-cli
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/dl-alexandre/skills --skill usm-cli

简介

用于查找、检索和筛选相关信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中根据关键词快速定位结果。
  • 通过 npx skills add 命令从指定仓库安装并使用。
  • 安装前需确认权限范围和维护状态,避免不必要的联网或文件操作。
  • usm-cli 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Skill: usm-cli

UniFi Site Manager CLI

This skill provides guidance for the usm CLI tool, a command-line interface for the UniFi Site Manager API.

Overview

usm provides cloud-based management of UniFi sites via the official Site Manager API at api.ui.com. For local controller APIs (Network, Protect), see the separate unifi CLI.

Installation

Homebrew

brew tap dl-alexandre/tap
brew install usm

Manual

Download from GitHub Releases:

# macOS (Apple Silicon)
curl -L https://github.com/dl-alexandre/UniFi-Site-Manager-CLI/releases/latest/download/usm-darwin-arm64 -o usm
chmod +x usm
sudo mv usm /usr/local/bin/

Quick Start

  1. Get API Key from unifi.ui.com → Settings → Control Plane → Integrations → API Keys
  2. Configure:
usm init
# Or: export USM_API_KEY="your-api-key"
  1. Verify:
usm whoami
  1. List sites:
usm sites list

Available Commands

usm init

Interactive configuration setup. Creates ~/.config/usm/config.yaml.

Use when:

  • First-time setup
  • Changing default settings (base URL, output format, color mode)

Flags:

  • --force - Overwrite existing config

usm sites list

List all sites with pagination and filtering.

Use when:

  • Getting an overview of all UniFi sites
  • Finding a specific site by name
  • Exporting site data

Flags:

  • --page-size=N - Number of sites per page (default: 50, 0 = fetch all)
  • --search=<term> - Filter by name/description
  • --output=json|table - Output format
  • --no-headers - Table without headers (for scripts)

Examples:

usm sites list                          # Default: 50 sites
usm sites list --page-size 0            # Fetch all sites
usm sites list --search "office"        # Filter by name
usm sites list --output json            # JSON output
usm sites list --no-headers             # For piping to other tools

usm sites get

Get detailed information about a specific site.

Use when:

  • You need details about one specific site
  • You have a site ID and want to verify it exists

Examples:

usm sites get 60abcdef1234567890abcdef
usm sites get 60abcdef1234567890abcdef --output json

usm whoami

Show authenticated user account information.

Use when:

  • Verifying API key is working
  • Checking which account you're authenticated as

Examples:

usm whoami
usm whoami --output json

usm version

Show version information.

Use when:

  • Checking installed version
  • Checking for updates (with --check)

Flags:

  • --check - Check GitHub for latest release

Configuration

Config file: ~/.config/usm/config.yaml

Note: API keys are NOT stored in config. Use environment variables or flags.

api:
  base_url: https://api.ui.com
  timeout: 30

output:
  format: table      # table, json
  color: auto        # auto, always, never
  no_headers: false

Environment Variables

VariableDescription
USM_API_KEYAPI key for authentication (required)
USM_BASE_URLAPI base URL (default: https://api.ui.com)
USM_TIMEOUTRequest timeout in seconds
USM_FORMATDefault output format
USM_COLORColor mode
USM_NO_HEADERSDisable table headers
USM_CONFIGPath to config file

Exit Codes

CodeMeaning
0Success
1General error
2Authentication failure
3Permission denied
4Validation error
5Rate limited
6Network error

API Reference

Related Tools

  • unifi CLI - For local UniFi Network and Protect APIs

Common Workflows

List all sites and export to JSON

usm sites list --page-size 0 --output json > sites.json

Find a site by name and get its details

SITE_ID=$(usm sites list --search "Office" --output json | jq -r '.[0]._id')
usm sites get "$SITE_ID"

Check authentication in CI/CD

usm whoami || exit 1

Table output for reports

usm sites list --no-headers | column -t

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

35.95%
按下载量换算23

Claude

33.05%
按下载量换算21

Cursor

18.65%
按下载量换算12

Gemini CLI

8.58%
按下载量换算5

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills