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

uxcUXC 搜索

Agent Skill

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

总安装

1,035

周安装

44

GitHub Stars

105

下载量

363
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/holon-run/uxc --skill uxc

简介

uxc 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中快速定位候选结果。

  • 适用于关键词搜索、任务场景匹配或来源线索筛选等研究检索场景。
  • 通过 npx skills add 命令从 GitHub 仓库安装并使用。
  • 安装前需确认权限范围、维护状态,以及是否涉及联网、命令执行或文件读写操作。
  • uxc 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

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.

Docs Search & Support

  • UXC docs support full-text search at https://uxc.holon.run/api/search?q=<query>.
  • Prefer searching docs first when operation names, auth flags, or protocol behavior are unclear.
  • If docs are unclear or behavior looks wrong, open an issue in holon-run/uxc:

- https://github.com/holon-run/uxc/issues/new/choose - include command, endpoint, and the JSON envelope (ok, error, meta) for faster triage.

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}} - If the link is being created as part of a wrapper skill, persist source metadata with --skill <skill_name> --skill-doc <docs_url> --skill-path <local_skill_path> so later help output preserves skill context.

  1. Validate link command:

- <link_name> -h

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

Import Existing MCP Config First

If an MCP server is already configured in a supported editor or local agent, prefer importing it before hand-writing a new link:

  • Preview imports:

- uxc config import mcp --dry-run

  • Auto-discover common MCP config sources and import them:

- uxc config import mcp --from auto

  • Import from a specific source preset:

- uxc config import mcp --from cursor - uxc config import mcp --from codex

Supported presets in v1 include:

  • auto
  • cursor
  • claude-code
  • claude-desktop
  • vscode
  • codex
  • windsurf
  • opencode

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

  • Generated runtime client flow:

- https://uxc.holon.run/ecosystem/typescript-client/

  • 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

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

39.05%
按下载量换算142

Claude

28.71%
按下载量换算104

Cursor

19.35%
按下载量换算70

Gemini CLI

8.99%
按下载量换算33

安全审计

Gen Agent Trust Hub

未通过

Socket

通过

Snyk

可疑

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills