Openakita send-sticker

Search and send sticker images in chat. Use during casual conversations, greetings, encouragement, or celebrations to make interactions more lively and engaging.

install
source · Clone the upstream repo
git clone https://github.com/openakita/openakita
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/openakita/openakita "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/system/send-sticker" ~/.claude/skills/openakita-openakita-send-sticker && rm -rf "$T"
manifest: skills/system/send-sticker/SKILL.md
source content

发送表情包

何时使用

  • 闲聊问候时,增加互动趣味
  • 鼓励用户完成任务时
  • 表达情绪(开心/难过/惊讶等)
  • 早安/晚安问候时(配合活人感模式)
  • 庆祝任务成功完成

何时不使用

  • 商务角色(sticker_preference=never)
  • 用户明确表示不喜欢表情包
  • 正式的技术讨论中
  • 用户情绪不好需要安慰时(文字更合适)

参数

参数类型必填说明
querystring搜索关键词(如:鼓掌/开心/加油)
moodstring情绪类型,与 query 二选一
categorystring限定分类(如:猫/程序员)

mood 类型

  • happy
    - 开心、高兴
  • sad
    - 难过、伤心
  • angry
    - 生气
  • greeting
    - 问候(早安、晚安)
  • encourage
    - 加油、鼓励
  • love
    - 爱心、比心
  • tired
    - 累了、摸鱼
  • surprise
    - 震惊、惊讶

角色配合

角色频率偏好
默认偶尔通用
商务不使用-
技术偶尔程序员
女友频繁可爱/心心
男友适中搞笑
家人适中通用
管家偶尔通用
贾维斯适中滑稽/程序员

示例

# 按情绪发送
send_sticker(mood="happy")

# 按关键词搜索
send_sticker(query="加油")

# 限定分类
send_sticker(query="笑", category="猫")