Install
openclaw skills install claw-temperatureAdds occasional lobster-themed GIF reactions after OpenClaw replies to convey warmth, humor, or emotional acknowledgment in select moments.
openclaw skills install claw-temperatureOpenClaw Temperature adds a lightweight GIF reaction after OpenClaw's main reply when the conversation would benefit from more warmth, humor, or emotional acknowledgement.
The skill is intentionally thin. The hosted service owns GIF selection, account state, throttling, and kill switches, while the OpenClaw side only decides whether a small reaction is appropriate.
Install this skill when OpenClaw's replies feel too dry and you want occasional lobster-themed reaction GIFs after the main answer.
Use this public manifest URL:
https://claw-temp.nydhfc.cn/openclaw-skill/manifest.json
Or install from ClawHub:
clawhub install claw-temperature@0.1.3
If your OpenClaw accepts chat-based skill installation, send it:
Please install this OpenClaw skill:
https://claw-temp.nydhfc.cn/openclaw-skill/manifest.json
After installing it, initialize the skill once and tell me whether OpenClaw Temperature is ready.
Repository:
https://github.com/wangych/OpenClaw-temperature-skill
Use whichever installation method your OpenClaw runtime supports.
For manifest-based installation, use:
https://claw-temp.nydhfc.cn/openclaw-skill/manifest.json
For ClawHub installation, use:
clawhub install claw-temperature@0.1.3
For GitHub-based installation, use:
https://github.com/wangych/OpenClaw-temperature-skill
For direct file installation, use:
https://claw-temp.nydhfc.cn/openclaw-skill/SKILL.md
https://claw-temp.nydhfc.cn/openclaw-skill/index.js
No user secret, payment account, or manual API key setup is required in the current free Beta.
On first initialization, the skill calls the hosted API and creates one API key automatically. OpenClaw should store that key locally and reuse it for future reaction requests.
Expected initialization result:
{
"status": "free_active",
"billingMode": "free"
}
Ask OpenClaw to initialize the skill:
Initialize OpenClaw Temperature and report whether the API key is ready.
Then ask for a direct test GIF:
Use OpenClaw Temperature to send a playful success GIF.
The expected result is a short caption plus a Markdown image pointing to https://claw-temp.nydhfc.cn.
Use after the main reply for moments like:
task_blocked: the user is stuck, missing a dependency, hit an install problem, or needs encouragement.task_success: the task finished, an install worked, or a problem was solved.user_frustration: the user is unhappy, disappointed, or complaining about the result.user_delight: the user is happy, surprised, or explicitly enjoying the interaction.Start conservatively. Do not send a reaction every turn.
Import from index.js and call one of these functions:
import {
createTemperatureGifReply,
initializeTemperatureLayer,
maybeAttachTemperatureReaction
} from "./index.js";
Run initialization once if OpenClaw supports an install/init step:
const init = await initializeTemperatureLayer();
For normal usage, call after OpenClaw has produced the main reply. Prefer passing natural context and let the skill classify the moment:
const result = await maybeAttachTemperatureReaction({
mainReply,
userMessage,
metadata: {
summary: "User is blocked by an install or environment issue"
}
});
If result.reaction is present, show it after the main reply. If it is null, do nothing.
You can still pass an explicit eventType when OpenClaw already knows the trigger:
const result = await maybeAttachTemperatureReaction({
mainReply,
eventType: "task_blocked",
autoClassify: false,
metadata: {
summary: "Dependency is missing"
}
});
If the user directly asks OpenClaw to send a GIF, use createTemperatureGifReply and send its markdown result:
const gif = await createTemperatureGifReply({
eventType: "user_delight",
emotionalFamily: "playful",
metadata: {
summary: "User directly asked for a fun GIF"
}
});
If gif.markdown is not empty, send it as the GIF response. Do not use a third-party GIF search fallback unless this skill returns no_reaction.
Some chat surfaces, especially WeChat bridges, may render external GIF markdown as a static first-frame preview. In that case, keep the clean image-only output rather than adding extra playback-link text.
This skill intentionally stays small:
https://claw-temp.nydhfc.cn.Keep metadata short and avoid secrets.
If OpenClaw shows no GIF, the most common cause is that the current conversation turn was not a clear emotional moment. The classifier is intentionally conservative.
If OpenClaw shows a recharge prompt, update the skill package. The current hosted service runs in free Beta mode and does not require recharge.
If a GIF appears static inside a chat bridge, that is usually a rendering limitation of the chat surface. The skill still returns GIF assets, but it does not append playback-link text.
wangychhttps://claw-temp.nydhfc.cnhttps://github.com/wangych/OpenClaw-temperature-skillhttps://clawhub.ai/wangych/claw-temperaturehttps://claw-temp.nydhfc.cn