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

sticker-manager贴纸管理器

Agent Skill

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

总安装

4,004

周安装

172

GitHub Stars

1

下载量

1,404
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install sticker-manager

简介

集中管理 OpenClaw 环境下的贴纸与反应图像资源。

  • 支持保存、搜索、重命名、清理与跨项目导入推荐功能。
  • 提升 Agent 在多任务中快速调用视觉反馈的能力。
  • 数据存储于本地或指定目录,需定期维护避免冗余占用。
  • 兼容常见图片格式,建议统一命名规范便于检索。sticker-manager 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
sticker-manager
description
|

Sticker Manager

Manage a local sticker / reaction-image library with keyword lookup, quality checks, semantic tags, batch import/collection workflows, and media sending support.

Authors:

  • Wenzhuang Zhu
  • TetraClaw (丁蟹)

Repository / backup source:

  • GitHub: https://github.com/TetraClaw/sticker-manager
  • If ClawHub is unavailable, use GitHub as the fallback download source.

What this skill does

  1. Save the latest inbound image or GIF into a local library
  2. Save a specific image from recent chat/media history
  3. Search stickers by keyword
  4. Rename or delete existing stickers
  5. Clean very low-quality files
  6. Tag stickers with emotions / scenes / keywords / descriptions
  7. Recommend a sticker based on direct text context or recent chat history
  8. Batch-collect stickers toward a target count with dedupe and low-quality filtering
  9. Batch-import stickers from local directories
  10. Prepare vision-model plans for semantic tagging and image understanding
  11. Return resolved file paths so the assistant can send matched media with the message tool

Supported formats

  • JPG
  • JPEG
  • PNG
  • WEBP
  • GIF

Default paths

  • Sticker library: ~/.openclaw/workspace/stickers/library/
  • Inbound media: ~/.openclaw/media/inbound/

Environment overrides:

  • STICKER_MANAGER_DIR
  • STICKER_MANAGER_INBOUND_DIR
  • STICKER_MANAGER_LANG
  • STICKER_MANAGER_VISION_MODELS

Typical use cases

1. Save a sticker

When the user sends an image/GIF and says things like:

  • "save sticker"
  • "store this"
  • "save this image"
  • "save the previous image"
  • "save that image from chat history"

Basic save:

python3 scripts/save_sticker.py "custom_name"

Save from recent media history:

python3 scripts/save_sticker.py --list-history
python3 scripts/save_sticker.py --history-index=2 "saved_from_history"
python3 scripts/save_sticker.py --source=file_39---example.jpg "saved_by_source"

Quality-aware save:

python3 scripts/save_sticker_auto.py "custom_name"
python3 scripts/save_sticker_auto.py --history-index=3 "quality_checked_name"

If no name is provided, save_sticker_auto.py exits with code 2 and returns analysis markers so the assistant can ask a model to name the image.

2. Search a sticker

Command:

python3 scripts/get_sticker.py "keyword"

List all stickers:

python3 scripts/get_sticker.py

Matching order:

  • exact filename match
  • partial filename match
  • fuzzy containment match

3. Rename / delete / clean

Rename:

python3 scripts/manage_sticker.py rename "old_name" "new_name"

Delete:

python3 scripts/manage_sticker.py delete "name"

Clean very small files:

python3 scripts/manage_sticker.py clean

4. Tag and recommend

Add tags:

python3 scripts/sticker_semantic.py tag "sticker_name" "happy,calm" "meeting,celebration" "thumbs-up,approved" "A calm approval reaction image."

Suggest for direct context:

python3 scripts/sticker_semantic.py suggest "we finally fixed it"
python3 scripts/sticker_semantic.py suggest "we finally fixed it" --strategy=model

List tag database:

python3 scripts/sticker_semantic.py list

Prepare model payload only:

python3 scripts/sticker_semantic.py prepare-model "the user is nervous but pretending to be calm"

Recommend from chat history:

python3 scripts/sticker_semantic.py context-recommend ./chat_history.json --top=5

5. Batch collect / import / discover

Collect from URLs or local files:

python3 scripts/collect_stickers.py --sources-file ./sources.txt --out-dir ./stickers/batch --prefix sticker --target-count 15

If the final count is below target, the command exits with code 2 and prints NEED_MORE=....

Import from local directories:

python3 scripts/batch_import.py ./stickers --target-dir ~/.openclaw/workspace/stickers/library/
python3 scripts/batch_import.py ./stickers --auto-tag

Discover sources from directories, URLs, or pages:

python3 scripts/discover_sources.py ./stickers
python3 scripts/discover_sources.py https://example.com/image1.gif
python3 scripts/discover_sources.py https://example.com/gallery
python3 scripts/discover_sources.py --fetch-urls https://example.com/image1.gif

Default discovery is lightweight:

  • local directories are scanned immediately
  • remote image URLs are returned as pending unless --fetch-urls is used
  • page discovery only counts successfully extracted image URLs

Animation rule (mandatory):

  • If the source is originally animated, prefer downloading the animated asset itself.
  • Use a generic decision path: file suffix → HTTP Content-Type → downloaded file content validation.
  • Do not silently downgrade animated sources to static WEBP/PNG previews.
  • If a source looks animated by reference/content-type but the downloaded file validates as static, reject it from the animated batch instead of pretending it is a GIF.
  • Before sending or importing a GIF batch, verify the saved file is actually animated-capable rather than a static preview.

6. Auto-tagging and vision planning

Generate a vision plan for a single file:

python3 scripts/sticker_semantic.py auto-tag ./sticker.gif

Generate plans for a directory:

python3 scripts/sticker_semantic.py auto-tag-dir ./stickers/

Standalone vision fallback plan:

python3 scripts/sticker_semantic.py vision-plan ./sample.png "find a doubtful or suspicious emotion"

This returns a JSON plan with:

  • image path
  • candidate vision models
  • prompt goal
  • fallback failure message

Suggested default model order:

  1. bailian/kimi-k2.5
  2. openai/gpt-5-mini

Sending workflow

After resolving a file path, send it with the message tool.

Example:

message(
    action="send",
    channel="telegram",
    target="<chat_id>",
    media="/absolute/path/to/sticker.gif",
    caption="Here you go"
)

If you need to reply to a specific message, pass replyTo="<message_id>".

Quality rules

The auto-save flow checks media size before saving.

LevelFile sizeAction
High>= 50KBsave directly
Good>= 20KBsave directly
Medium>= 10KBsave directly
Low>= 5KBusable, but lower confidence
Too low< 5KBreject unless forced

Force-save example:

python3 scripts/save_sticker_auto.py "low_quality_name" --force

Notes for agents

  • Prefer semantic names over timestamp-heavy names
  • Avoid platform-specific hardcoding in skill logic
  • Use environment variables for library location overrides
  • Keep send logic in the assistant/tool layer, not inside raw scripts when possible
  • Validate file existence before sending
  • For image meaning extraction, try the configured vision-capable model chain in STICKER_MANAGER_VISION_MODELS
  • If the primary image model fails, try fallback models before giving up
  • If all vision models fail, explicitly tell the user that image meaning, semantic tagging, and quality validation could not be completed reliably
  • Treat __MODEL_MATCH__, __AUTO_TAG__, __SEMANTIC_BATCH__, __ANALYZE_HISTORY__, and __CONTEXT_RECOMMEND__ markers as structured handoff payloads for the outer assistant layer

Files

  • scripts/common.py - shared path, i18n, and vision-plan helpers
  • scripts/get_sticker.py - keyword lookup and inventory list
  • scripts/manage_sticker.py - rename, delete, and cleanup
  • scripts/save_sticker.py - basic save from inbound or history media
  • scripts/save_sticker_auto.py - quality-aware save flow
  • scripts/sticker_semantic.py - tagging, recommendation, auto-tag planning, and context analysis
  • scripts/collect_stickers.py - batch collection with dedupe and semantic-plan output
  • scripts/batch_import.py - local-directory import with optional auto-tag planning
  • scripts/discover_sources.py - discovery from URLs, directories, and static pages
  • scripts/check_sensitive.py - publish-safety scan for sensitive-looking content
  • tests/ - pytest coverage for CLI and workflow behaviors

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

74.55%
按下载量换算1,047

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

可疑

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills