首页龙虾技能列表 › OpenAPI to CLI — OpenAPI工具

🔧 OpenAPI to CLI — OpenAPI工具

v1.0.0

[AI辅助] Generate CLI tools from OpenAPI specs. Built for AI agents who hate writing curl commands.

3· 1,600·1 当前·1 累计
by @awlevin (Aaron Levin)·MIT-0
下载技能包
License
MIT-0
最后更新
2026/2/28
安全扫描
VirusTotal
无害
查看报告
OpenClaw
可疑
high confidence
The skill's runtime instructions match its stated purpose, but the install spec points to a mismatched/ambiguous pip package ('uv' → provides 'uvx') instead of the referenced 'openapi2cli' project, creating a supply-chain / incoherence risk.
评估建议
This skill's behavior (using 'uvx' to generate CLIs from OpenAPI specs) is coherent with its description, but the install spec is inconsistent: it asks to pip-install a package named 'uv' while the README/links reference 'openapi2cli' on PyPI/GitHub. Before installing, verify the correct package name and origin: search PyPI for 'openapi2cli' and for 'uv' and inspect the package owner/release files. If you cannot confirm that the 'uv' package is the official provider of the 'uvx' tool linked in t...
详细分析 ▾
用途与能力
Name and SKILL.md describe generating CLIs from OpenAPI specs and show using a 'uvx openapi2cli generate' command — that aligns with requiring a 'uvx' binary. However the install metadata asks to install a pip package named 'uv', while the SKILL.md links to a PyPI/GitHub project called 'openapi2cli'. The package name mismatch is unexpected and unexplained.
指令范围
Instructions are focused on running 'uvx openapi2cli generate' against local files or remote OpenAPI URLs and using generated CLIs with env/flag-based auth. The SKILL.md does not instruct reading unrelated system files or secrets beyond user-provided API keys. It does require network fetches of specs (expected for this purpose).
安装机制
Install uses pip to install a package named 'uv' which will create a 'uvx' binary. This is moderate-risk (pip packages run arbitrary code at install time). More importantly, the 'uv' package name does not match the referenced project ('openapi2cli') or the GitHub/PyPI links in SKILL.md, which suggests either a typo, a misconfiguration, or a potential typosquat/supply-chain vector. No direct download URLs are used, which is better than arbitrary archives, but the package name ambiguity is problematic.
凭证需求
The skill declares no required environment variables or credentials. The SKILL.md shows how a generated CLI could accept API keys via env vars or flags, which is reasonable and not a mismatch. The skill does not request unrelated credentials or paths.
持久化与权限
Skill does not request always:true and does not modify other skills or system-wide settings. Normal autonomous invocation is allowed (default). No additional persistence or elevated privileges are requested.
安全有层次,运行前请审查代码。

License

MIT-0

可自由使用、修改和再分发,无需署名。

运行时依赖

无特殊依赖

版本

latestv1.0.02026/2/6

Initial release - generate CLIs from OpenAPI specs

● 无害

安装命令 点击复制

官方npx clawhub@latest install openapi2cli
镜像加速npx clawhub@latest install openapi2cli --registry https://cn.clawhub-mirror.com

技能文档

Generate command-line tools from OpenAPI/Swagger specs. Perfect for AI agents that need to interact with APIs without writing curl commands.

Quick 开始

# generate a CLI from any OpenAPI spec
uvx openapi2cli generate https://api.example.com/openapi.json --output my-api

# use the generated CLI python my-api.py users list python my-api.py users get --id 123 python my-api.py posts create --title "Hello" --body "World"

Features

  • Auto-generates CLI 从 OpenAPI 3.x specs
  • Supports auth: API keys, Bearer tokens, Basic auth
  • Rich help: --help 在...上 任何 command shows params
  • JSON 输出: Structured responses 对于 parsing
  • Dry-run mode: See 请求 没有 sending

Usage

# from URL
uvx openapi2cli generate https://api.example.com/openapi.json -o my-cli

# from local file uvx openapi2cli generate ./spec.yaml -o my-cli

# with base URL override uvx openapi2cli generate ./spec.json -o my-cli --base-url https://api.prod.com

Generated CLI

# set auth via env
export MY_CLI_API_KEY="sk-..."

# or via flag python my-cli.py --api-key "sk-..." users list

# see available commands python my-cli.py --help

# see command options python my-cli.py users create --help

示例: GitHub API

uvx openapi2cli generate https://raw.githubusercontent.com/github/rest-api-description/main/descriptions/api.github.com/api.github.com.json -o github-cli

python github-cli.py repos list --owner octocat

为什么?

AI agents work better with CLIs than raw HTTP:

  • Discoverable commands 通过 --help
  • 标签页 completion friendly
  • 否 需要 到 construct JSON payloads
  • Easy 到 chain 带有 pipes

Links

数据来源:ClawHub ↗ · 中文优化:龙虾技能库
OpenClaw 技能定制 / 插件定制 / 私有工作流定制

免费技能或插件可能存在安全风险,如需更匹配、更安全的方案,建议联系付费定制

了解定制服务