Token导航 LogoToken导航TokenDH.com
待分类操作浏览器github未标认证来源可访问许可证需确认审计通过

cli-anything-cloudanalyzerCLI anything cloudanalyzer 命令行

Agent Skill

cli-anything-cloudanalyzer 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

1,858

周安装

79

GitHub Stars

32,909

下载量

651
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/hkuds/cli-anything --skill cli-anything-cloudanalyzer

简介

cli-anything-cloudanalyzer 为 CloudAnalyzer QA 平台提供命令行接口。

  • 支持点云评估、定位映射和感知输出分析。
  • 需准备项目 JSON 配置文件并安装 cloudanalyzer 包。
  • 共 27 个命令分布在 8 个功能组中。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

cli-anything-cloudanalyzer

Agent-friendly command-line harness for CloudAnalyzer — a QA platform for mapping, localization, and perception point cloud outputs.

27 commands across 8 groups.

Installation

pip install cli-anything-cloudanalyzer

Prerequisites:

  • Python 3.10+
  • CloudAnalyzer: pip install cloudanalyzer

Global Options

cli-anything-cloudanalyzer [--project FILE] [--json] COMMAND [ARGS]...
OptionDescription
-p, --project TEXTPath to project JSON file
--jsonOutput results as JSON (for agent consumption)

Command Groups

1. evaluate — Point Cloud Evaluation (6 commands)

evaluate run

Evaluate a point cloud against a reference (Chamfer, F1, AUC, Hausdorff).

cli-anything-cloudanalyzer evaluate run source.pcd reference.pcd
cli-anything-cloudanalyzer --json evaluate run source.pcd reference.pcd

Options: --plot TEXT, --threshold FLOAT

evaluate compare

Compare two point clouds with optional registration.

cli-anything-cloudanalyzer evaluate compare src.pcd tgt.pcd --register gicp

Options: --register TEXT (icp/gicp/none)

evaluate diff

Quick distance statistics between two point clouds.

cli-anything-cloudanalyzer evaluate diff a.pcd b.pcd --threshold 0.1

evaluate batch

Batch evaluation of multiple point clouds against a reference.

cli-anything-cloudanalyzer --json evaluate batch results/ reference.pcd --min-auc 0.95

Options: --min-auc FLOAT, --max-chamfer FLOAT

evaluate ground

Evaluate ground segmentation quality (precision, recall, F1, IoU).

cli-anything-cloudanalyzer --json evaluate ground est_ground.pcd est_ng.pcd ref_ground.pcd ref_ng.pcd --min-f1 0.9

Options: --voxel-size FLOAT, --min-precision FLOAT, --min-recall FLOAT, --min-f1 FLOAT, --min-iou FLOAT

evaluate pipeline

Filter, downsample, evaluate in one command.

cli-anything-cloudanalyzer evaluate pipeline input.pcd reference.pcd -o output.pcd

2. trajectory — Trajectory Evaluation (3 commands)

trajectory evaluate

Evaluate estimated vs reference trajectory (ATE, RPE, drift, lateral, longitudinal).

cli-anything-cloudanalyzer --json trajectory evaluate est.csv gt.csv --max-ate 0.5 --max-lateral 0.3

Options: --max-ate FLOAT, --max-rpe FLOAT, --max-drift FLOAT, --min-coverage FLOAT, --max-lateral FLOAT, --max-longitudinal FLOAT, --align-origin, --align-rigid

trajectory batch

Batch trajectory evaluation.

cli-anything-cloudanalyzer trajectory batch runs/ --reference-dir gt/ --max-drift 1.0

trajectory run-evaluate

Integrated map + trajectory evaluation.

cli-anything-cloudanalyzer trajectory run-evaluate map.pcd map_ref.pcd traj.csv traj_ref.csv

Options: --min-auc FLOAT, --max-ate FLOAT


3. check — Config-Driven Quality Gate (2 commands)

check run

Run unified QA from a config file.

cli-anything-cloudanalyzer --json check run cloudanalyzer.yaml

Options: --output-json TEXT

check init

Generate a starter config file.

cli-anything-cloudanalyzer check init cloudanalyzer.yaml --profile integrated

Options: --profile TEXT (mapping/localization/perception/integrated), --force


4. baseline — Baseline Evolution (3 commands)

baseline decision

Decide whether to promote, keep, or reject a candidate baseline.

cli-anything-cloudanalyzer --json baseline decision qa/summary.json --history-dir qa/history/

Options: --history TEXT (repeatable), --history-dir TEXT, --output-json TEXT

baseline save

Save a QA summary to the history directory.

cli-anything-cloudanalyzer baseline save qa/summary.json --history-dir qa/history/ --keep 10

Options: --history-dir TEXT, --label TEXT, --keep INTEGER

baseline list

List saved baselines.

cli-anything-cloudanalyzer --json baseline list --history-dir qa/history/

5. process — Point Cloud Processing (6 commands)

process downsample

Voxel grid downsampling.

cli-anything-cloudanalyzer process downsample cloud.pcd -o down.pcd -v 0.05

process sample

Random point sampling.

cli-anything-cloudanalyzer process sample cloud.pcd -o sampled.pcd -n 10000

process filter

Statistical outlier removal.

cli-anything-cloudanalyzer process filter cloud.pcd -o filtered.pcd

process split

Split point cloud into grid tiles (writes metadata.yaml).

cli-anything-cloudanalyzer process split large.pcd -o tiles/ -g 100

process merge

Merge multiple point clouds.

cli-anything-cloudanalyzer process merge a.pcd b.pcd -o merged.pcd

process convert

Convert between point cloud formats.

cli-anything-cloudanalyzer process convert input.las -o output.pcd

6. inspect — Visualization (3 commands)

inspect view

Open a point cloud viewer.

cli-anything-cloudanalyzer inspect view cloud.pcd

inspect web

Interactive browser inspection.

cli-anything-cloudanalyzer inspect web map.pcd ref.pcd --heatmap

inspect web-export

Export a static HTML inspection bundle.

cli-anything-cloudanalyzer inspect web-export map.pcd ref.pcd -o bundle/

7. info — Metadata (2 commands)

info show

Show point cloud metadata.

cli-anything-cloudanalyzer --json info show cloud.pcd

info version

Show CloudAnalyzer version.


8. session — Session Management (2 commands)

session new

Create a new harness project JSON file.

cli-anything-cloudanalyzer session new -o project.json -n my-run

session history

Show recent operations for the project given with -p / --project.

cli-anything-cloudanalyzer --project project.json session history --last 20

Typical Agent Workflows

Workflow 1: Evaluate and gate a point cloud

cli-anything-cloudanalyzer --json evaluate run output.pcd reference.pcd

Workflow 2: Config-driven QA pipeline

cli-anything-cloudanalyzer check init cloudanalyzer.yaml --profile integrated
cli-anything-cloudanalyzer --json check run cloudanalyzer.yaml

Workflow 3: Baseline management

cli-anything-cloudanalyzer --json check run cloudanalyzer.yaml --output-json qa/summary.json
cli-anything-cloudanalyzer baseline save qa/summary.json --history-dir qa/history/
cli-anything-cloudanalyzer --json baseline decision qa/summary.json --history-dir qa/history/

Workflow 4: Ground segmentation QA

cli-anything-cloudanalyzer --json evaluate ground \
  est_ground.pcd est_ng.pcd ref_ground.pcd ref_ng.pcd --min-f1 0.9

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.83%
按下载量换算227

Claude

28.22%
按下载量换算184

Cursor

18.4%
按下载量换算120

Gemini CLI

8.88%
按下载量换算58

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

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

来源信息

继续浏览同类 Skills