Token导航 LogoToken导航TokenDH.com
效率需要联网clawhub未标认证来源可访问clear审计通过

superpickysuperpicky 命令行

Agent Skill

superpicky 用于补充效率相关能力,适合在 OpenClaw 中需要让 Agent 承接效率相关任务时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

4,235

周安装

173

GitHub Stars

公开资料未说明

下载量

1,370
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install superpicky

简介

CLI 自动化工具集,支持脚本化安装与多区域服务调用。

  • 适合批量部署与环境变量管理,提升运维效率。superpicky 属于效率类 Skill,可作为该场景下的辅助能力补充。
  • 包含 birdid_cli 等子模块,扩展鸟类识别等功能。
  • 运行依赖特定 shell 环境与绝对路径配置。
  • 跨区域调用可能产生额外费用,需留意计费策略。

SKILL.md

name
superpicky-cli
description
>-

SuperPicky CLI (skill)

SuperPicky — bird photo AI culling (superpicky_cli.py, birdid_cli.py). This skill only covers CLI paths under $SKILL (directory containing this file).

Three entry modes (run.sh)

All user-facing commands go through ${SKILL}/scripts/run.sh (use the absolute path when cwd is not $SKILL). There are three entry modes (plus one helper):

#How you invokeProgramWhat it is for
1"${SKILL}/scripts/run.sh" *then the same args as* superpicky_cli.pysuperpicky_cli.pyMain pipeline: process / reset / restar / info / burst / identify (folder culling, EXIF, stars, optional auto BirdID).
2"${SKILL}/scripts/run.sh" --birdid *then the same args as* birdid_cli.pybirdid_cli.pyStandalone BirdID: batch identify, organize by species, reset, list-countries; OSEA / eBird filters.
3"${SKILL}/scripts/run.sh" --region-query *then args for* ebird_region_query.pyebird_region_query.pyCode lookup only: fuzzy match place names → eBird country/region codes for use in (1) or (2) (--birdid-country, --birdid-region, -c, -r).

Helper (not a separate “product” entry): --py PATH — run a script with the same venv. PATH may be absolute, or relative to .upstream/ (internally normalized to an absolute path before exec).

Absolute paths (required for agents / cron)

  • install.sh / run.sh / capture-cli-help.sh: when another tool invokes them, use the full absolute path (e.g. ${SKILL}/scripts/run.sh, never rely on cd + ./scripts/run.sh).
  • run.sh internals: always exec Python with absolute paths for superpicky_cli.py, birdid_cli.py, ebird_region_query.py, and the --py script (relative args become ${SKILL}/.upstream/...).

Interactive (from $SKILL):

./scripts/run.sh process /photos

Automation (example):

SKILL="$(cd /path/to/superpicky-cli && pwd)"
"${SKILL}/scripts/run.sh" process /photos
"${SKILL}/scripts/run.sh" --py "${SKILL}/.upstream/scripts/download_models.py"

Layout

$SKILL = skill root.

$SKILL/
├── SKILL.md
├── .gitignore              # .upstream/
├── reference/              # CLI help + small doc set (see table below)
└── scripts/
    ├── install.sh
    ├── run.sh              # ENTRY (+ --region-query → ebird_region_query.py)
    ├── ebird_region_query.py   # fuzzy eBird country/region code lookup
    ├── ebird_region_query_test.py
    ├── capture-cli-help.sh
    └── setup-upstream-venv.sh → install.sh

$SKILL/.upstream/           # clone (gitignored)
├── .venv/
├── superpicky_cli.py
├── birdid_cli.py
└── …
ScriptRole
scripts/install.shInstall into .upstream/ + .upstream/.venv/
scripts/run.shThree entries: default → superpicky_cli.py; --birdidbirdid_cli.py; --region-queryebird_region_query.py; helper --py
scripts/ebird_region_query.pyFuzzy lookup (also via run.sh --region-query); tests: ebird_region_query_test.py
scripts/capture-cli-help.shRefresh reference/cli-help-captured.txt

Reference (minimal)

FileUse
reference/cli-help-captured.txtFlags (--help dump)
reference/docs/cli-reference.mdShort bilingual CLI notes
reference/docs/manifest机制说明.mdReset / manifest behavior
reference/docs/BIRDID_OPTIMIZATION_GUIDE.mdBirdID tuning
reference/requirements*.txtPip pins (mirror of upstream)
reference/SOURCE.mdCapture metadata, pip quirks
reference/README-INDEX.mdIndex of reference/

Install

From $SKILL (or call ${SKILL}/scripts/install.sh by absolute path):

./scripts/install.sh
"${SKILL}/scripts/install.sh" --with-models
./scripts/install.sh --skip-verify
./scripts/install.sh --no-clone
PY=python3.12 "${SKILL}/scripts/install.sh"
  1. Python 3.10–3.12 preferred; python -m venv must work.
  2. $SKILL/.upstream/ + $SKILL/.upstream/.venv/.
  3. Torch: macOS → base + PyPI torch; NVIDIA + nvidia-smirequirements_cuda.txt; else requirements.txt or fallback.
  4. verify_environment after pip unless --skip-verify / SKIP_VERIFY=1 — failures → [superpicky-cli verify] ERROR: and exit 1.

Entry details & examples

Wrapper meta-help: ${SKILL}/scripts/run.sh --help. SuperPicky top-level: ${SKILL}/scripts/run.sh -h.

"${SKILL}/scripts/run.sh" process /path/to/photos
"${SKILL}/scripts/run.sh" --birdid identify /path/to.jpg
"${SKILL}/scripts/run.sh" --py "${SKILL}/.upstream/scripts/download_models.py"
# Relative --py is OK: resolved against .upstream/, then executed as absolute path
"${SKILL}/scripts/run.sh" --py scripts/download_models.py

ebird_region_query.py (entry 3) — --region-query

Resolves country codes (e.g. AU, CN) and region codes (e.g. AU-SA, CN-31) for --birdid-country, --birdid-region, birdid_cli -c/-r, and process --birdid-*.

  • Data: .upstream/birdid/data/ebird_regions.json (EN + name_cn) + codes from birdid/avonet_filter.py REGION_BOUNDS (inline # labels for entries not in JSON).
  • Match: case-insensitive substring on code, English name, Chinese name; pinyin if optional pypinyin is installed in .venv (pip install pypinyin). Fuzzy: difflib ratio on tokens / whole fields; tune with --min-score (default 0.5).
"${SKILL}/scripts/run.sh" --region-query shanghai
"${SKILL}/scripts/run.sh" --region-query 广东 --limit 10
"${SKILL}/scripts/run.sh" --region-query guangdong
"${SKILL}/scripts/run.sh" --region-query AU-SA
"${SKILL}/scripts/run.sh" --region-query --list-countries --limit 60
"${SKILL}/scripts/run.sh" --region-query --list-all --limit 40
"${SKILL}/scripts/run.sh" --region-query texas --json

Direct: "${SKILL}/.upstream/.venv/bin/python" "${SKILL}/scripts/ebird_region_query.py" -h Tests: "${SKILL}/.upstream/.venv/bin/python" "${SKILL}/scripts/ebird_region_query_test.py"

Manual: source "${SKILL}/.upstream/.venv/bin/activate" && cd "${SKILL}/.upstream" && python "${SKILL}/.upstream/superpicky_cli.py" …

Refresh --help capture

"${SKILL}/scripts/capture-cli-help.sh"

Upstream-only install

git clone https://github.com/jamesphotography/SuperPicky.git && cd SuperPicky
pip install -r requirements.txt   # or requirements_cuda.txt
python scripts/download_models.py

Repo cwd = clone root. Models needed for real process / identify, not for -h. Pip quirks: reference/SOURCE.md.


superpicky_cli.py (entry 1)

Via skill: "${SKILL}/scripts/run.sh" … (no --birdid / --region-query prefix) Subcommands: process | reset | restar | info | burst | identify Flags: reference/cli-help-captured.txt

process: -s sharpness, -n TOPIQ, -c confidence, --flight/--no-flight, --burst/--no-burst, --xmp/--no-xmp, --no-organize, --no-cleanup, -q, -i / --auto-identify, --birdid-*, --keep-temp-files / --no-keep-temp-files, --cleanup-days, --save-crop. reset / restar: -y; restar needs .superpicky/report.db. burst: preview unless --execute. identify: single image, --top, --write-exif, etc.

birdid_cli.py (entry 2)

Via skill: "${SKILL}/scripts/run.sh" --birdid … Subcommands: identify | organize | reset | list-countries — details in cli-help-captured.txt (search birdid_cli).


Agent checklist

  1. Resolve $SKILL to an absolute directory; invoke "${SKILL}/scripts/run.sh" (and install.sh) by full path, not ./scripts/....
  2. "${SKILL}/scripts/install.sh" if .upstream/.venv missing.
  3. "${SKILL}/scripts/run.sh" --region-query … when the user gives a place name and you need an eBird -c / -r / --birdid-region code.
  4. -y on destructive reset / restar / birdid organize|reset when appropriate.
  5. Pipeline: process → optional restar; reset clears; restar needs report.db.
  6. Star folder names: English + Chinese variants in upstream.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

能力 5

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

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

平台分布

OpenClaw

98.71%
按下载量换算1,352

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills