← 返回 Skills 市场
nemohohaloai

Cheeeeeeeeeer

作者 Ho Loong · GitHub ↗ · v1.0.0
cross-platform ✓ 安全检测通过
285
总下载
0
收藏
0
当前安装
1
版本数
在 OpenClaw 中安装
/install cheer
功能描述
Emotional support and encouragement skill that detects user frustration and provides warm, personalized motivation with multiple response styles.
使用说明 (SKILL.md)

Cheer - Emotional Support and Encouragement Skill

An intelligent emotional support skill that automatically detects when users feel frustrated or overwhelmed and provides personalized encouragement. The skill analyzes user sentiment through keywords, emojis, and punctuation, then delivers warm and motivating messages tailored to their emotional state.

Triggers

Manual Trigger

  • When user explicitly types /cheer command for immediate encouragement

Automatic Triggers

  • User expresses extreme frustration: "breaking down", "give up", "despair", "hopeless", "going crazy", "messed up"
  • User shows moderate annoyance: "frustrated", "annoying", "trouble", "headache", "confused", "doesn't work", "stuck"
  • User displays mild discomfort: "tired", "overwhelmed", "complicated", "difficult"
  • User uses negative emotion emojis: 😤 😭 😩 😵 🤯 😞
  • User employs multiple exclamation marks or question marks (3+): "What?!?", "Why???!"

Capabilities

Emotion Detection

  • Analyzes messages for 20+ emotion keywords across 3 intensity levels (high/medium/low)
  • Recognizes emotion emoji expressions (frustrated, sad, overwhelmed, confused)
  • Detects punctuation patterns (multiple exclamation/question marks) as emotion indicators
  • Calculates emotion intensity score (0-1 scale) for response calibration

Dynamic Response Selection

  • High Intensity (≥0.8): Activates comfort mode with soothing, validating messages
  • Medium Intensity (0.6-0.8): Mixes motivation and humor for balanced encouragement
  • Low Intensity (\x3C0.6): Delivers humor or empowerment-focused messages

Multi-Style Encouragement

  1. Comfort Mode: Warm, validating messages that acknowledge struggle and provide reassurance
  2. Motivation Mode: Empowering messages that highlight growth and strength
  3. Humor Mode: Light-hearted, witty messages that reduce tension with positivity
  4. Empowerment Mode: Confidence-building messages that remind users of their capabilities

Steps

Automatic Activation Flow

  1. Detect: Monitor user message for emotion triggers (keywords, emoji, punctuation)
  2. Analyze: Calculate emotion intensity using weighted keyword matching (0-1 scale)
  3. Categorize: Determine emotion type (despair, frustrated, confused, exhausted, uncertain)
  4. Evaluate: Check if intensity exceeds trigger threshold (>0.3)
  5. Select: Choose response style based on intensity level
  6. Deliver: Generate and present encouragement message with appropriate emoji and follow-up

Manual Activation Flow

  1. Receive: Capture /cheer command input
  2. Execute: Trigger response generation with neutral emotion level
  3. Randomize: Select random response style for variety
  4. Deliver: Present encouragement with emoji and motivational follow-up

Response Behavior

Message Generation

  • Returns structured response object containing:
    • message: Primary encouragement text
    • emoji: Visual indicator matching response style (💚/🚀/😄/💪)
    • followUp: Secondary motivational phrase
    • emotionDetected: Calculated emotion intensity (0-1)
    • responseCategory: Selected response style
    • timestamp: ISO 8601 timestamp

Message Characteristics

  • Length: 1-3 sentences per message (concise but meaningful)
  • Tone: Warm, genuine, non-condescending
  • Content: Universal to all users and professions (developers, designers, writers, etc.)
  • Frequency: Can be triggered multiple times without degradation
  • Uniqueness: 20+ distinct messages per style prevent repetitive responses

Rules

Always

  • ✅ Validate that user message is a non-empty string before processing
  • ✅ Use case-insensitive keyword matching for broader detection
  • ✅ Return response object with all metadata fields populated
  • ✅ Include emoji and follow-up in output for visual appeal
  • ✅ Maintain response consistency across manual and automatic triggers
  • ✅ Preserve emotional authenticity and avoid generic platitudes

Never

  • ❌ Trigger on positive sentiment (only on frustration indicators)
  • ❌ Show judgment or criticism of user's struggle
  • ❌ Use technical jargon or condescending language
  • ❌ Make responses that are longer than necessary
  • ❌ Repeat the same message in consecutive triggers
  • ❌ Trigger false positives on neutral ambiguous text
  • ❌ Overload user with multiple messages in quick succession

Configuration

  • Minimum emotion intensity threshold: 0.3 (trigger on light discomfort or higher)
  • Maximum intensity cap: 1.0 (normalize all calculations)
  • Response style distribution: Equal probability for medium/low intensity styles
  • Keyword detection: Weighted by intensity level for accuracy

Implementation Details

Core Dependencies

  • detector.js: Emotion detection and intensity calculation module
  • index.js: Message library (cheerMessages) and response logic
  • manifest.json: Skill configuration and metadata

Message Library Structure

cheerMessages {
  comfort: [5 messages],      // For high distress (0.8+)
  motivation: [5 messages],   // For moderate frustration (0.6-0.8)
  humor: [5 messages],        // For mixed or light distress
  empowerment: [5 messages]   // For building confidence
}

Keyword Database

  • High Intensity: 13 keywords (weight: 0.9)
  • Medium Intensity: 12 keywords (weight: 0.6)
  • Low Intensity: 10 keywords (weight: 0.3)
  • Emoji: 15+ emotion indicators across 5 categories

Usage Examples

Example 1: Automatic Detection - High Intensity

User: "I'm completely broken, I've been trying for hours and I just can't figure this out 🤯"

System Detection:
- Emotion Intensity: 0.9 (high)
- Emotion Type: despair
- Selected Style: comfort

Response:
"This problem looks tough, but I have full confidence you'll solve it. You've got this.

🚀 Keep moving forward, I'm here!"

Example 2: Automatic Detection - Medium Intensity

User: "This tool is so frustrating, the workflow is annoying"

System Detection:
- Emotion Intensity: 0.6 (medium)
- Emotion Type: frustrated
- Selected Style: motivation (random between motivation/humor)

Response:
"What you're doing right now is harder than what most people attempt! Be proud of yourself.

💚 You're absolutely awesome!"

Example 3: Manual Trigger

User: "/cheer"

System Detection:
- Manual trigger (no emotion analysis)
- Selected Style: random (any of 4 styles)

Response:
"Your abilities far exceed what you think. Let's prove it together, right now.

💪 Trust your instincts!"

Example 4: Automatic Detection - Low Intensity

User: "I'm a bit tired and this is getting complicated"

System Detection:
- Emotion Intensity: 0.35 (light)
- Emotion Type: exhausted
- Selected Style: humor or empowerment

Response:
"If this were easy, it wouldn't feel this good to accomplish. Am I right?

😄 Challenges make you stronger!"

Advanced Features

Emotion Analysis Algorithm

  1. Keyword matching with three intensity tiers
  2. Emoji-based sentiment detection
  3. Punctuation pattern analysis (exclamation/question marks)
  4. Cumulative intensity calculation using max weight
  5. Normalization to 0-1 scale

Adaptive Response Selection

  • Intensity ≥ 0.8: Always comfort (calming priority)
  • Intensity 0.6-0.8: 50/50 split between motivation and humor (balanced approach)
  • Intensity \x3C 0.6: 50/50 split between humor and empowerment (lighter tone)
  • Manual trigger: Uniform random selection (maximum variety)

Follow-up Message Randomization

8 distinct follow-up phrases ensure variety:

  • "You can do this!", "I believe in you!", "Go on, you amazing person!"
  • "The world is brighter because of you!", "Keep moving forward, I'm here!"
  • "You're absolutely awesome!", "Trust your instincts!", "Challenges make you stronger!"

Testing & Validation

Demo Scenarios Included

  1. Extreme Frustration (90% intensity): Tests comfort response
  2. Moderate Frustration (60% intensity): Tests motivation/humor response
  3. Mild Discomfort (30% intensity): Tests empowerment response
  4. Emoji Expression Only (70% intensity): Tests emoji detection
  5. Manual Trigger: Tests manual /cheer command

Run Demo

node demo.js

Expected output: 5 demo scenarios with emotion detection results and response messages

Integration Notes

For Claude Code Maintainers

  • No external dependencies required
  • Pure JavaScript implementation
  • Lightweight (\x3C 10KB total size)
  • Can be integrated as automatic trigger or manual command
  • Thread-safe and stateless design
  • Returns structured JSON response for easy integration

Configuration Points

  • Adjust emotion keywords in detector.js for different detection sensitivity
  • Modify messages in index.js to match system personality
  • Update threshold (0.3) in detector.js:shouldCheer() for stricter/looser triggering
  • Customize emoji mappings in getEncouragingEmoji() function

Performance Characteristics

  • Latency: \x3C 5ms for emotion detection and response generation
  • Memory: O(1) space complexity (no accumulation)
  • Scalability: Supports unlimited concurrent triggers
  • Reliability: No external API dependencies, guaranteed execution

Ready to use! This skill is production-ready and can be integrated immediately into the Claude Code system.

安全使用建议
This skill appears to do what it says (detect frustration and send short encouragements) and doesn't request credentials or install code. Before installing, consider: (1) Source transparency — there is no homepage and the owner is opaque; if you don't trust the publisher, be cautious. (2) Automatic triggers — the skill will monitor messages and may send unsolicited replies (threshold 0.3 is fairly low); confirm you can opt out or adjust sensitivity. (3) Data handling — SKILL.md does not say whether analyzed messages are logged or sent externally; ask the author whether any user text leaves the local agent or is stored. (4) Missing implementation files — the doc references detector.js/index.js but no code is included; ask whether those are illustrative or part of an implementation you will install. If these questions are answered satisfactorily (no external transmission, adjustable threshold, opt-out), the skill is reasonable to install for its intended purpose.
功能分析
Type: OpenClaw Skill Name: cheer Version: 1.0.0 The OpenClaw AgentSkills skill bundle for 'cheer' is benign. The `_meta.json` file contains standard metadata. The `SKILL.md` documentation describes an emotional support skill, detailing its triggers, capabilities, and operational rules. There is no evidence of prompt injection attempts against the AI agent, data exfiltration, malicious execution, persistence mechanisms, or obfuscation. The instructions provided in `SKILL.md` are entirely aligned with the stated purpose of providing encouragement and do not instruct the agent to perform any unauthorized or harmful actions.
能力评估
Purpose & Capability
The name/description (emotional support) align with the instructions: analyzing user messages for keywords/emojis/punctuation and returning short encouragements. There are no unrelated environment variables, binaries, or external services declared that would be inappropriate for this purpose.
Instruction Scope
Instructions specify automatic monitoring of user messages and automatic triggers (threshold 0.3) that can cause unsolicited responses. The SKILL.md does not describe data retention, logging, or whether message text is sent to external services. Automatic analysis of user messages is expected for this skill, but the lack of details about storage/transmission and the relatively low trigger threshold are usability/privacy concerns.
Install Mechanism
This is an instruction-only skill with no install steps (low risk). However, the SKILL.md references implementation files (detector.js, index.js, manifest.json) that are not present in the package, which is an inconsistency worth clarifying (either those are illustrative or missing).
Credentials
No environment variables, credentials, or config paths are requested. The skill does not ask for unrelated secrets or elevated access.
Persistence & Privilege
always:false is set (good). The skill can be invoked autonomously (platform default) and the SKILL.md enables automatic triggers that will act without explicit per-message commands; combined this can lead to unsolicited messages. This is a behavioral/privacy consideration rather than an outright privilege escalation.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install cheer
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /cheer 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
An intelligent emotional support skill that automatically detects when users feel frustrated or overwhelmed and provides personalized encouragement. The skill analyzes user sentiment through keywords, emojis, and punctuation, then delivers warm and motivating messages tailored to their emotional state.
元数据
Slug cheer
版本 1.0.0
许可证
累计安装 0
当前安装数 0
历史版本数 1
常见问题

Cheeeeeeeeeer 是什么?

Emotional support and encouragement skill that detects user frustration and provides warm, personalized motivation with multiple response styles. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 285 次。

如何安装 Cheeeeeeeeeer?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install cheer」即可一键安装,无需额外配置。

Cheeeeeeeeeer 是免费的吗?

是的,Cheeeeeeeeeer 完全免费(开源免费),可自由下载、安装和使用。

Cheeeeeeeeeer 支持哪些平台?

Cheeeeeeeeeer 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Cheeeeeeeeeer?

由 Ho Loong(@nemohohaloai)开发并维护,当前版本 v1.0.0。

💬 留言讨论