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

cli-anythingCLI anything 搜索

Agent Skill

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

总安装

881

周安装

36

GitHub Stars

38

下载量

285
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/terrylica/cc-skills --skill cli-anything

简介

cli-anything 用于查找、检索和筛选相关信息,支持基于关键词快速定位。

  • 它适用于需要根据任务场景或来源线索筛选信息的场景。
  • 可在 Codex、Claude、Cursor、Gemini CLI 中使用。
  • 建议确认权限范围和维护状态,避免触发不必要操作。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

CLI-Anything Reference

Auto-generates production-ready, agent-controllable CLI interfaces for any GUI application with accessible source code. A 7-phase pipeline maps GUI actions to backend APIs and emits Click-based harnesses with --json output mode, interactive REPL, and pytest test suites.

Source: https://github.com/HKUDS/CLI-Anything License: MIT | Python: 3.10+ | Tests: 1,508 passing across 11 apps


Self-Evolving Skill: This skill improves through use. If instructions are wrong, parameters drifted, or a workaround was needed — fix this file immediately, don't defer. Only update for real, reproducible issues.

Installation

Method 1: Claude Code Marketplace (recommended)

/plugin marketplace add HKUDS/CLI-Anything
/plugin install cli-anything

Method 2: Manual Claude Code

git clone https://github.com/HKUDS/CLI-Anything.git
cp -r CLI-Anything/cli-anything-plugin ~/.claude/plugins/cli-anything
# Reload in Claude Code:
/reload-plugins

Method 3: OpenCode — global

git clone https://github.com/HKUDS/CLI-Anything.git
cp CLI-Anything/opencode-commands/*.md ~/.config/opencode/commands/
cp CLI-Anything/cli-anything-plugin/HARNESS.md ~/.config/opencode/commands/

Method 4: OpenCode — project-level

cp CLI-Anything/opencode-commands/*.md .opencode/commands/
cp CLI-Anything/cli-anything-plugin/HARNESS.md .opencode/commands/

Generating a New CLI Harness

# From local source path
/cli-anything ./gimp

# From GitHub URL (auto-cloned)
/cli-anything https://github.com/blender/blender

# Claude Code variant (plugin command)
/cli-anything ./inkscape

# OpenCode variant
/cli-anything ./libreoffice

All Commands

CommandPlatformPurpose
/cli-anything <path-or-url>Claude CodeBuild full 7-phase harness
/cli-anything:refine <path> [focus]Claude CodeExpand with gap analysis
/cli-anything:test <path-or-url>Claude CodeRun tests + update TEST.md
/cli-anything:validate <path-or-url>Claude CodeVerify HARNESS.md standards
/cli-anything:list [--path dir] [--depth n] [--json]Claude CodeDiscover installed CLI-Anything tools
/cli-anything./gimpOpenCodeBuild harness
/cli-anything-refine./gimpOpenCodeRefine harness
/cli-anything-test./gimpOpenCodeRun tests
/cli-anything-validate./gimpOpenCodeValidate standards
/cli-anything-listOpenCodeList installed tools

Refinement with Focus

# Broad gap analysis
/cli-anything:refine ./gimp

# Targeted domain expansion
/cli-anything:refine ./gimp "batch processing and filters"
/cli-anything:refine ./blender "rendering pipeline and animations"
/cli-anything:refine ./libreoffice "spreadsheet formulas and macros"

Installing a Generated CLI

cd <software>/agent-harness
pip install -e .

# Verify PATH entry created
which cli-anything-gimp
cli-anything-gimp --help

Using Generated CLIs

All generated CLIs share a consistent interface pattern.

GIMP Example

# Help
cli-anything-gimp --help

# Create project
cli-anything-gimp project new --width 1920 --height 1080 -o poster.json

# Machine-readable JSON output (for agent consumption)
cli-anything-gimp --json layer add -n "Background" --type solid --color "#1a1a2e"

# Interactive REPL
cli-anything-gimp

# Stateful workflow with --project flag
cli-anything-gimp --project poster.json layer add -n "Logo" --type group
cli-anything-gimp --project poster.json export render output.png --format png

LibreOffice Example

# New document
cli-anything-libreoffice document new -o report.json --type writer

# Populate document
cli-anything-libreoffice --project report.json writer add-heading -t "Q1 Report" --level 1
cli-anything-libreoffice --project report.json writer add-table --rows 4 --cols 3

# Export
cli-anything-libreoffice --project report.json export render output.pdf -p pdf --overwrite

# JSON output
cli-anything-libreoffice --json document info --project report.json

Blender Example

cli-anything-blender scene new -o scene.json
cli-anything-blender --project scene.json object add --type mesh --mesh-type CUBE
cli-anything-blender --project scene.json render image output.png --engine CYCLES
cli-anything-blender --json scene info --project scene.json

Inkscape Example

cli-anything-inkscape document new --width 800 --height 600 -o design.json
cli-anything-inkscape --project design.json shape add rect --x 10 --y 10 --w 200 --h 100
cli-anything-inkscape --project design.json export render output.svg
cli-anything-inkscape --json document info --project design.json

Output Modes

Every command supports two output modes:

ModeUsageAudience
Human-readable (default)cli-anything-gimp layer add...Terminal / humans
Machine-readable JSONcli-anything-gimp --json layer add...AI agents, scripts

The --json flag is always the first argument, before any subcommands.


Interactive REPL

Enter by running the CLI with no subcommands:

cli-anything-gimp
cli-anything-blender
cli-anything-libreoffice

REPL features:

  • 50-level undo/redo stack
  • Persistent command history
  • ANSI 256-color output (software-specific accent colors)
  • Table rendering, progress indicators
  • All subcommands available interactively

Running Tests

# Standard pytest run
cd <software>/agent-harness
python3 -m pytest cli_anything/<software>/tests/ -v

# Validate the installed binary is invoked (not just the module)
CLI_ANYTHING_FORCE_INSTALLED=1 python3 -m pytest cli_anything/<software>/tests/ -v -s

# Coverage
python3 -m pytest cli_anything/<software>/tests/ --cov=cli_anything/<software>

# Per-software examples
cd gimp/agent-harness && python3 -m pytest cli_anything/gimp/tests/ -v
cd blender/agent-harness && python3 -m pytest cli_anything/blender/tests/ -v
cd libreoffice/agent-harness && python3 -m pytest cli_anything/libreoffice/tests/ -v

Environment Variables

VariablePurpose
CLI_ANYTHING_FORCE_INSTALLED=1Forces tests to use the real installed binary (validates which cli-anything-<software> resolves correctly, not just module import)

Supported Applications (11 total, 1,508 tests)

ApplicationCategoryEntry Point
GIMPCreative (raster)cli-anything-gimp
BlenderCreative (3D)cli-anything-blender
InkscapeCreative (vector)cli-anything-inkscape
AudacityMedia (audio)cli-anything-audacity
LibreOfficeProductivitycli-anything-libreoffice
OBS StudioMedia (streaming)cli-anything-obs-studio
KdenliveMedia (video)cli-anything-kdenlive
ShotcutMedia (video)cli-anything-shotcut
ZoomCommunicationcli-anything-zoom
Draw.ioDiagrammingcli-anything-drawio
AnyGenAI Contentcli-anything-anygen

The 7-Phase Pipeline (HARNESS.md)

What /cli-anything triggers under the hood:

PhaseNameWhat happens
1Source AcquisitionAccept local path or GitHub URL; clone if needed
2Codebase AnalysisMap GUI actions → backend APIs; inventory existing CLI tools; document data model
3CLI Architecture DesignChoose interaction model (stateful REPL + subcommand); define command groups; plan --json output
4ImplementationBuild Click-based CLI with cli_anything.<software> namespace; implement REPL via shared ReplSkin
5Test PlanningWrite TEST.md with planned test inventory before code
6Test ImplementationUnit tests (synthetic data) + E2E tests (real software output) + subprocess tests
7PyPI Publishingsetup.py with find_namespace_packages(); console_scripts entry points

Fundamental Rule: The CLI MUST delegate rendering to the real software — never reimplement functionality in Python. The target software is a hard dependency.


Generated Harness Structure

Each generated CLI follows this layout (PEP 420 namespace packages):

<software>/agent-harness/
├── setup.py                          # find_namespace_packages(), entry_points
├── <SOFTWARE>.md                     # Software-specific SOP
└── cli_anything/                     # NO __init__.py (namespace package)
    └── <software>/
        ├── __init__.py
        ├── __main__.py
        ├── <software>_cli.py         # Main Click entry point
        ├── core/                     # Domain modules (project, session, export, ...)
        ├── utils/
        │   └── repl_skin.py          # Shared REPL UI (copied from plugin)
        └── tests/
            ├── TEST.md               # Test inventory (written in phase 5)
            ├── test_core.py          # Unit tests
            └── test_full_e2e.py      # E2E + subprocess tests

Why namespace packages: cli_anything/ has no __init__.py, enabling multiple separately-installed CLIs to coexist under the same cli_anything.* namespace without conflict.


Output Verification Standards

Tests verify real output using magic bytes and content analysis:

Output TypeVerification
PDF%PDF- magic bytes + non-zero size
OOXML (.docx,.xlsx)ZIP structure validation
CSVData row count + column check
ImagesPillow pixel value analysis
AudioRMS level check (non-silent)

Prerequisites Checklist

Before running /cli-anything <path>:

  • Python 3.10+ installed
  • Target software installed (hard dependency — it will be called for rendering)
  • Source code accessible (local path or public GitHub URL)
  • click>=8.0.0 available (installed via pip install -e.)
  • Pillow>=10.0.0, prompt-toolkit>=3.0.0 available
  • pytest available for running tests

Key Files Reference

FilePurpose
cli-anything-plugin/HARNESS.mdComplete methodology document (30K chars)
cli-anything-plugin/QUICKSTART.mdQuick start guide
cli-anything-plugin/repl_skin.pyShared REPL UI class (18K, ANSI 256-color)
cli-anything-plugin/commands/cli-anything.md/cli-anything slash command definition
cli-anything-plugin/commands/refine.md/cli-anything:refine command
cli-anything-plugin/commands/test.md/cli-anything:test command
cli-anything-plugin/commands/validate.md/cli-anything:validate command
cli-anything-plugin/commands/list.md/cli-anything:list command

Post-Execution Reflection

After this skill completes, check before closing:

  1. Did the command succeed? — If not, fix the instruction or error table that caused the failure.
  2. Did parameters or output change? — If the underlying tool's interface drifted, update Usage examples and Parameters table to match.
  3. Was a workaround needed? — If you had to improvise (different flags, extra steps), update this SKILL.md so the next invocation doesn't need the same workaround.

Only update if the issue is real and reproducible — not speculative.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.43%
按下载量换算104

Claude

29.97%
按下载量换算85

Cursor

16.2%
按下载量换算46

Gemini CLI

9.27%
按下载量换算26

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills