Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计通过

sentiment-analyzer情绪分析器

Agent Skill

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

总安装

11,483

周安装

402

GitHub Stars

3

下载量

4,381
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:sentiment-analyzer(情绪分析器)
来源仓库:https://github.com/jmsktm/claude-settings
仓库路径:skills/sentiment-analyzer
安装命令:
npx skills add https://github.com/jmsktm/claude-settings --skill 'Sentiment Analyzer'
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/jmsktm/claude-settings --skill 'Sentiment Analyzer'

简介

sentiment-analyzer 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中快速定位候选结果。

  • 适用于根据关键词、任务场景或来源线索进行信息聚合与初步筛选的场景。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装并使用。
  • 安装前需确认权限范围和维护状态,注意可能触发联网或文件读写操作。
  • 建议结合原始 README 文档进一步验证具体功能和使用边界。

SKILL.md

Sentiment Analyzer

The Sentiment Analyzer skill guides you through implementing sentiment analysis systems that understand the emotional tone and opinion in text. From simple positive/negative classification to nuanced aspect-based sentiment and emotion detection, this skill covers the full spectrum of sentiment analysis capabilities.

Sentiment analysis is deceptively complex. Sarcasm, context, domain-specific language, and cultural nuances all challenge simple approaches. This skill helps you choose the right techniques for your accuracy requirements, whether that's fast rule-based systems, fine-tuned classifiers, or LLM-based analysis.

Whether you're analyzing customer reviews, social media mentions, support tickets, or survey responses, this skill ensures your sentiment analysis captures the true voice of your users.

Core Workflows

Workflow 1: Choose Sentiment Analysis Approach

  1. Define requirements:

- Granularity: Binary, ternary, or continuous? - Aspects: Overall or aspect-based? - Emotions: Sentiment or specific emotions? - Languages: Single or multilingual? - Volume: Batch or real-time?

  1. Evaluate options: Approach Speed Accuracy Customizable Best For Rule-based (VADER) Very fast Moderate Limited Social media, quick analysis Pre-trained (RoBERTa) Fast Good Fine-tunable General text Fine-tuned Fast Best Requires data Domain-specific LLM (GPT-4, Claude) Slow Excellent Prompt-based Nuanced, complex
  2. Select based on tradeoffs
  3. Plan implementation

Workflow 2: Implement Sentiment Pipeline

  1. Preprocess text: def preprocess_for_sentiment(text): # Preserve sentiment-relevant features text = normalize_unicode(text) # Handle social media conventions text = expand_contractions(text) # don't -> do not text = normalize_elongation(text) # loooove -> love text = handle_negation(text) # Mark negation scope # Preserve but normalize emoji/emoticons text = convert_emoji_to_text(text) #:) -> [HAPPY] return text
  2. Analyze sentiment: class SentimentAnalyzer: def __init__(self, model_type="transformer"): if model_type == "transformer": self.model = pipeline("sentiment-analysis", model="cardiffnlp/twitter-roberta-base-sentiment") elif model_type == "vader": self.model = SentimentIntensityAnalyzer() def analyze(self, text): preprocessed = preprocess_for_sentiment(text) result = self.model(preprocessed) return {"text": text, "sentiment": result["label"], "confidence": result["score"]}
  3. Aggregate for insights:

- Overall sentiment distribution - Sentiment over time - Sentiment by segment/topic

  1. Validate results

Workflow 3: Aspect-Based Sentiment Analysis

  1. Identify aspects to track:

- Product features (price, quality, service) - Experience dimensions (speed, accuracy, friendliness) - Custom aspects for your domain

  1. Extract aspects from text: def extract_aspects(text, aspect_list): # Find mentions of known aspects found_aspects = [] for aspect in aspect_list: if aspect.lower() in text.lower(): found_aspects.append(aspect) # Also extract using NER or LLM for unknown aspects extracted = extract_noun_phrases(text) return found_aspects + extracted
  2. Analyze sentiment per aspect: def aspect_sentiment(text, aspects): results = {} for aspect in aspects: # Extract sentences mentioning aspect relevant = extract_aspect_context(text, aspect) # Analyze sentiment of relevant text if relevant: sentiment = analyze_sentiment(relevant) results[aspect] = sentiment return results
  3. Aggregate aspect sentiments across documents

Quick Reference

ActionCommand/Trigger
Analyze sentiment"Analyze sentiment of [text]"
Choose approach"Best sentiment analysis for [use case]"
Aspect-based"Sentiment by feature for [reviews]"
Detect emotions"Detect emotions in [text]"
Handle sarcasm"How to handle sarcasm in sentiment"
Aggregate results"Summarize sentiment trends"

Best Practices

  • Preserve Sentiment Signals: Don't preprocess away important cues

- Keep punctuation (!! vs.) - Preserve capitalization patterns - Keep emoji/emoticons (convert to text) - Handle negation explicitly

  • Match Model to Domain: Pre-trained models have domain bias

- Twitter models work differently than product review models - Fine-tune or select domain-appropriate models - Test on your actual data before deploying

  • Handle Negation Properly: "Not bad" isn't negative

- Rule-based: Mark negation scope - Neural models: Usually handle automatically - Test negation cases explicitly

  • Consider Context: Sentiment depends on context

- "Cheap" is positive for budget items, negative for luxury - Use aspect-based analysis for nuance - Include surrounding context when possible

  • Validate with Humans: Machine sentiment!= human sentiment

- Sample and manually verify results - Calculate agreement metrics - Iterate on disagreements

  • Report Uncertainty: Not all text has clear sentiment

- Neutral is a valid class - Low confidence predictions should be flagged - Consider abstaining on ambiguous cases

Advanced Techniques

LLM-Based Nuanced Sentiment

Use language models for complex analysis:

def llm_sentiment_analysis(text, aspects=None):
    prompt = f"""Analyze the sentiment of the following text.

Text: "{text}"

Provide:
1. Overall sentiment (positive/negative/neutral/mixed)
2. Confidence (0-1)
3. Key positive aspects mentioned
4. Key negative aspects mentioned
5. Notable emotional tones (joy, frustration, surprise, etc.)

{"Also rate sentiment specifically for these aspects: " + ", ".join(aspects) if aspects else ""}

Respond in JSON format."""

    response = llm.complete(prompt)
    return json.loads(response)

Emotion Detection

Beyond positive/negative to specific emotions:

from transformers import pipeline

# Multi-label emotion classification
emotion_classifier = pipeline(
    "text-classification",
    model="SamLowe/roberta-base-go_emotions",
    top_k=None
)

def detect_emotions(text):
    results = emotion_classifier(text)[0]
    # Filter to significant emotions
    significant = [r for r in results if r["score"] > 0.1]
    return sorted(significant, key=lambda x: x["score"], reverse=True)

# Example output:
# [{"label": "admiration", "score": 0.45},
#  {"label": "joy", "score": 0.32},
#  {"label": "gratitude", "score": 0.28}]

Comparative Sentiment

Detect sentiment comparisons:

def comparative_sentiment(text):
    """
    Detect: "A is better than B" patterns
    """
    prompt = f"""Analyze this text for comparative sentiment.

Text: "{text}"

If the text compares entities, identify:
1. Entity A (the preferred/better one)
2. Entity B (the less preferred/worse one)
3. Dimension of comparison (price, quality, etc.)
4. Strength of preference (slight, moderate, strong)

If no comparison, respond with: {{"comparison": false}}

Respond in JSON."""

    return llm.complete(prompt)

Temporal Sentiment Tracking

Analyze sentiment over time:

def sentiment_timeline(documents, time_field, window="day"):
    """
    Track sentiment trends over time.
    """
    # Analyze each document
    results = []
    for doc in documents:
        sentiment = analyze_sentiment(doc["text"])
        results.append({
            "timestamp": doc[time_field],
            "sentiment": sentiment["score"],
            "text": doc["text"]
        })

    # Aggregate by time window
    df = pd.DataFrame(results)
    df["window"] = df["timestamp"].dt.floor(window)

    trends = df.groupby("window").agg({
        "sentiment": ["mean", "std", "count"],
        "text": lambda x: list(x)[:3]  # Sample texts
    })

    return trends

Sarcasm Detection

Handle sarcasm before sentiment analysis:

def detect_sarcasm(text):
    """
    Detect potential sarcasm indicators.
    """
    indicators = {
        "exaggeration": bool(re.search(r'\b(best|worst|ever|always|never)\b', text.lower())),
        "air_quotes": '"' in text,
        "ellipsis": "..." in text,
        "positive_negative_mix": has_mixed_signals(text),
        "hashtags": "#sarcasm" in text.lower() or "#not" in text.lower()
    }

    # Use model for detection
    sarcasm_score = sarcasm_model.predict(text)

    return {
        "is_sarcastic": sarcasm_score > 0.5,
        "confidence": sarcasm_score,
        "indicators": indicators
    }

def sentiment_with_sarcasm(text):
    sarcasm = detect_sarcasm(text)
    base_sentiment = analyze_sentiment(text)

    if sarcasm["is_sarcastic"] and sarcasm["confidence"] > 0.7:
        # Flip sentiment
        return flip_sentiment(base_sentiment)
    return base_sentiment

Common Pitfalls to Avoid

  • Using generic models on domain-specific text
  • Preprocessing away sentiment-relevant features (emoji, punctuation)
  • Ignoring negation handling
  • Treating neutral as absence of opinion vs explicit neutrality
  • Not validating model outputs against human judgment
  • Assuming sarcasm doesn't exist in your data
  • Over-weighting extreme sentiments in aggregation
  • Reporting sentiment without confidence/uncertainty

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.86%
按下载量换算1,527

Claude

31.22%
按下载量换算1,368

Cursor

16.61%
按下载量换算728

Gemini CLI

8.45%
按下载量换算370

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills