Install
openclaw skills install cli-anything-xingyue基于 HKUDS/CLI-Anything 仓库重构的 OpenClaw Skill。为任意软件生成 CLI 工具,让 AI Agent 可以控制它。通过分析软件源代码,自动生成可被 AI 调用的命令行接口。支持 GIMP、Blender、LibreOffice、OBS 等软件。
openclaw skills install cli-anything-xingyue🔧 基于 HKUDS/CLI-Anything 仓库重构
让任意软件都能被 AI Agent 驱动。
今天的软件为人而生,明天的用户是 Agent。
CLI-Anything 连接 AI Agent 与全世界软件的桥梁,通过一行命令让任意软件变成 Agent 可控的工具。
--help 自动生成文档/cli-list
当前可用的 CLI:
/cli-install gimp
/cli-install blender
安装后即可使用:
cli-anything-gimp --help
cli-anything-blender --help
/cli-build ./my-software
/cli-build https://github.com/user/repo
⚠️ 完整构建需要在 Claude Code 或 Codex 环境中进行。
/cli-refine ./gimp
/cli-refine ./gimp "添加图像批处理功能"
/cli-validate ./gimp
# 查看帮助
cli-anything-gimp --help
# 创建新项目
cli-anything-gimp project new --width 1920 --height 1080 -o poster.json
# 添加图层
cli-anything-gimp --json layer add -n "Background" --type solid --color "#1a1a2e"
# 导出
cli-anything-gimp export png -o output.png
# 交互式 REPL
cli-anything-gimp
# 创建场景
cli-anything-blender scene new -o scene.json
# 添加立方体
cli-anything-blender object add cube --location 0 0 0
# 渲染
cli-anything-blender render output.png --samples 128
# 打开文档
cli-anything-libreoffice document open report.odt
# 添加内容
cli-anything-libreoffice text add "Hello World"
# 导出 PDF
cli-anything-libreoffice export pdf -o report.pdf
CLI-Anything 自动执行 7 阶段流水线:
/cli-list 会自动克隆 CLI-Anything 仓库pip uninstall 卸载