Token导航 LogoToken导航TokenDH.com
研究检索敏感数据clawhub未标认证来源可访问clear审计提醒

uxcUXC 搜索

Agent Skill

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

总安装

16,823

周安装

674

GitHub Stars

公开资料未说明

下载量

5,446
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install uxc

简介

发现并调用远程模型公开的接口,扩展代理的操作能力边界。

  • 适用于客服系统与技能协同场景,动态加载可用操作与参数说明。
  • 列出所有支持的操作模式,支持 OpenAPI 风格的请求构造与执行。
  • 安装命令为 openclaw skills install uxc,需网络连通至 UXC 服务端点。
  • 调用第三方接口存在安全风险,请验证来源可信后再启用。

SKILL.md

name
uxc
description
Discover and call remote schema-exposed interfaces with UXC. Use when an agent or skill needs to list operations, inspect operation schemas, and execute OpenAPI, GraphQL, gRPC, MCP, or JSON-RPC calls via one CLI contract.
metadata
short-description
Discover and call remote schema APIs via UXC

UXC Skill

Use this skill when a task requires calling a remote interface and the endpoint can expose machine-readable schema metadata.

When To Use

  • You need to call APIs/tools from another skill and want one consistent CLI workflow.
  • The interface may be OpenAPI, GraphQL, gRPC reflection, MCP, or JSON-RPC/OpenRPC.
  • You need deterministic, machine-readable output (ok, kind, data, error).

Do not use this skill for pure local file operations with no remote interface.

Prerequisites

  • uxc is installed and available in PATH.
  • For gRPC runtime calls, grpcurl is installed and available in PATH.

Install uxc

Choose one of the following methods:

Homebrew (macOS/Linux):

brew tap holon-run/homebrew-tap
brew install uxc

Install Script (macOS/Linux, review before running):

curl -fsSL https://raw.githubusercontent.com/holon-run/uxc/main/scripts/install.sh -o install-uxc.sh
# Review the script before running it
less install-uxc.sh
bash install-uxc.sh

Cargo:

cargo install uxc

For more options, see the Installation section in the UXC README.

Core Workflow

  1. Discover operations:

- uxc <host> -h

  1. Inspect a specific operation:

- uxc <host> <operation> -h

  1. Execute with structured input:

- uxc <host> <operation> key=value - uxc <host> <operation> '<payload-json>'

  1. Parse result as JSON envelope:

- Success: .ok == true, consume .data - Failure: .ok == false, inspect .error.code and .error.message

  1. For disambiguation, use operation-level help first:

- uxc <host> <operation> -h

  1. For auth-protected endpoints, use the right auth track:

- simple bearer / single-secret API key: see references/auth-configuration.md - multi-field auth or request signing: see references/auth-configuration.md - OAuth flows: see references/oauth-and-binding.md

Link-First Workflow For Wrapper Skills

Wrapper skills should default to a fixed local link command instead of calling uxc <host> ... directly on every step.

  1. Pick a fixed command name during skill development:

- naming convention: <provider>-mcp-cli - examples: notion-mcp-cli, context7-mcp-cli, deepwiki-mcp-cli

  1. Check whether the command already exists:

- command -v <link_name>

  1. If command is missing, create it:

- uxc link <link_name> <host> - For OpenAPI services whose schema is hosted at a separate fixed URL, create the link with uxc link <link_name> <host> --schema-url <schema_url> - For stdio hosts that need credential-driven child env auth, create the link with uxc link <link_name> <host> --credential <credential_id> --inject-env NAME={{secret}}

  1. Validate link command:

- <link_name> -h

  1. Use only the link command for the rest of the skill flow.

Naming Governance

  • Link naming is a skill author decision, not a runtime agent decision.
  • Resolve ecosystem conflicts during skill development/review.
  • Do not implement dynamic rename logic inside runtime skill flow.
  • If runtime detects a command conflict that cannot be safely reused, stop and ask for skill maintainer intervention.

Equivalence Rule

  • <link_name> <operation> ... is equivalent to uxc <host> <operation> ....
  • If the link was created with --schema-url <schema_url>, it is equivalent to uxc <host> --schema-url <schema_url> <operation> ....
  • If the link was created with --credential <credential_id> --inject-env NAME={{secret}}, it is equivalent to uxc --auth <credential_id> --inject-env NAME={{secret}} <host> <operation> ....
  • Callers can still override that persisted schema by passing --schema-url <other_url> explicitly at runtime.
  • Use uxc <host> ... only as a temporary fallback when link setup is unavailable.

Input Modes

  • Preferred (simple payload): key/value

- uxc <host> <operation> field=value

  • Bare JSON positional:

- uxc <host> <operation> '{"field":"value"}' Do not pass raw JSON through --args; use positional JSON.

Output Contract For Reuse

Other skills should treat this skill as the interface execution layer and consume only the stable envelope:

  • Success fields: ok, kind, protocol, endpoint, operation, data, meta
  • Failure fields: ok, error.code, error.message, meta

Default output is JSON. Do not use --text in agent automation paths.

Reuse Rule For Other Skills

  • If a skill needs remote API/tool execution, reuse this skill instead of embedding protocol-specific calling logic.
  • Wrapper skills should adopt a fixed link command (<provider>-mcp-cli) as the default invocation path.
  • Upstream skill inputs should be limited to:

- target host - operation id/name - JSON payload - required fields to extract from .data

Reference Files (Load On Demand)

  • Workflow details and progressive invocation patterns:

- references/usage-patterns.md

  • Protocol operation naming quick reference:

- references/protocol-cheatsheet.md

  • Public endpoint examples and availability notes:

- references/public-endpoints.md

  • Authentication configuration (simple secret, named fields, headers/query params, and request signers):

- references/auth-configuration.md

  • OAuth and credential/binding lifecycle:

- references/oauth-and-binding.md

  • Failure handling and retry strategy:

- references/error-handling.md

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

能力 5

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

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

平台分布

OpenClaw

87.45%
按下载量换算4,763

安全审计

VirusTotal

可疑

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills