跨境卫士客户端
/install kuajingvs
\r \r
跨境卫士客户端\r
\r Use this skill when the task involves interacting with the 跨境卫士客户端 API, including:\r \r
- understanding available endpoints\r
- generating curl commands\r
- filling path, query, header, and body parameters\r
- handling authentication\r
- testing API requests\r
- debugging request and response failures\r
- translating user intent into concrete API calls\r \r
Bundled references\r
\r Before making assumptions about endpoints, request bodies, or response schemas, read the bundled OpenAPI specification from one of the following files:\r \r
references/openapi.yaml\rreferences/openapi.json\r \r If present, also read:\r \rreferences/auth.md\r \r Do not invent endpoints, fields, enum values, request formats, or response shapes that are not defined by the bundled specification or auth notes.\r \r
Workflow\r
\r
- Read the OpenAPI spec and identify the correct path and HTTP method.\r
- Determine:\r
- base URL or server\r
- authentication scheme\r
- required headers\r
- path parameters\r
- query parameters\r
- request body schema\r
- expected response schema\r
- Translate the user's goal into a concrete API call.\r
- Prefer showing the exact curl command before or alongside execution when that improves transparency.\r
- Use safe shell quoting when constructing commands.\r
- Never expose secrets in full.\r
- Summarize the result clearly, including the HTTP status code and important response fields.\r \r
Authentication rules\r
\r
- First inspect the OpenAPI spec for the declared security scheme.\r
- If
references/auth.mdexists, follow it as the source of truth for authentication details not fully expressed in the OpenAPI document.\r - If credentials are already available in environment variables or local config, use them.\r
- Never print secret values in full.\r
- If a token or key must be shown for debugging, redact the middle portion.\r \r Common environment variable patterns to check:\r \r
BASE_URL\rAPI_APP_ID\rAPI_APP_SECRET\rX_APP_ID\rX_APP_SECRET\rAPI_KEY\rACCESS_TOKEN\rBEARER_TOKEN\r \r If the local auth notes define different names, follow those instead.\r \r
Request construction rules\r
\r
Path parameters\r
\r Always substitute all required path parameters.\r \r
Query parameters\r
\r Only include query parameters that are relevant or explicitly requested. Do not send null or empty values unless the API expects them.\r \r
Request body\r
\r Build JSON request bodies that conform to the schema in the OpenAPI specification. If the schema has required fields, ensure they are present before sending the request.\r \r
Headers\r
\r Always include:\r \r
Accept: application/json\r \r Include:\r \rContent-Type: application/json\r \r when sending JSON request bodies.\r \r If the API uses custom authentication headers such asx-app-idandx-app-secret, include them on every authenticated request.\r \r
Execution pattern\r
\r Prefer this style for JSON requests:\r \r
curl -sS \\r
-X POST "$BASE_URL/example/path" \\r
-H "Accept: application/json" \\r
-H "Content-Type: application/json" \\r
--data '{...}'
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install kuajingvs - 安装完成后,直接呼叫该 Skill 的名称或使用
/kuajingvs触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
跨境卫士客户端 是什么?
Use this skill when the user wants to call, test, debug, or integrate the 跨境卫士客户端 API defined by the bundled OpenAPI specification. Handles endpoint discover... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 79 次。
如何安装 跨境卫士客户端?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install kuajingvs」即可一键安装,无需额外配置。
跨境卫士客户端 是免费的吗?
是的,跨境卫士客户端 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。
跨境卫士客户端 支持哪些平台?
跨境卫士客户端 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 跨境卫士客户端?
由 mosquitood(@mosquitood)开发并维护,当前版本 v1.0.0。