react-message
Add an emoji reaction to the trigger message. Use this to express quick emotions or acknowledge messages without sending a full text reply.
来源信息
- 仓库
- jim60105/AIr-Friends
- 最近来源活动
- 2026年8月28日 23:09
- 检测到的 SKILL.md 语言
- 英语
- 星标
- 6
- 分支
- 0
安装方式
默认使用会先检查来源的 Prompt;你也可以切换为直接命令,或下载本地副本。
检查来源文件
决定是否安装前,请先阅读 SKILL.md,以及 SkillsMP 当前展示的配套文件。
文件资源管理器
2 个文件正在显示 SKILL.md
SKILL.md
来源说明 · 只读预览- name
- react-message
- description
- Add an emoji reaction to the trigger message. Use this to express quick emotions or acknowledge messages without sending a full text reply.
- allowed-tools
- Bash
# React Message Skill
Add an emoji reaction to the message that triggered this conversation.
## Critical Rules
1. **Use appropriate emoji**: Choose an emoji that matches the tone and context of the conversation.
2. **Reaction is optional**: You don't have to react. Only react when it feels natural.
3. **Can be used with or without send-reply**: You may react AND send a reply, or just react without replying.
4. **Timeout**: The script won't run for more than 30 seconds. If it hangs, do stop_bash.
5. **Use the correct emoji format**: For custom emojis, use the format provided in the emoji list. For standard Unicode emojis, use the emoji character directly (e.g., "👍", "❤️").
6. **React only ONCE**: Never use this skill more than once. Each time you trigger a reaction, it will replace the previous one, as only one reaction can be displayed at a time. Think carefully and choose just one reaction.
## Usage
```
${HOME}/.agents/skills/react-message/scripts/react-message.ts \
--session-id "$SESSION_ID" \
--emoji "👍"
```
**`--session-id`**: Use the session id rendered in your system prompt. `$SESSION_ID` works only in per-spawn deployments; in shared-process mode it is not set and the skill library resolves the owning session automatically — a mismatched value is never honored.
### Examples
React with a Unicode emoji:
```
${HOME}/.agents/skills/react-message/scripts/react-message.ts \
--session-id "$SESSION_ID" \
--emoji "❤️"
```
React with a custom platform emoji (use the `useAsReaction` format from the emoji list):
```
${HOME}/.agents/skills/react-message/scripts/react-message.ts \
--session-id "$SESSION_ID" \
--emoji ":custom_emoji_name:"
```
在 GitHub 查看