account-research
Research a company or person and get actionable sales intel. Works standalone with web search, supercharged when you connect enrichment tools or your CRM.…
\"Implement VADER sentiment analysis for social media text scoring. Use this skill when the user needs to analyze sentiment in tweets, reviews, or social posts, compute compound sentiment scores, or classify text polarity — even if they say 'is this positive or negative',
$ npx -y skills add charlieviettq/awesome-agent-skill --skill algo-social-sentiment --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/algo-social-sentimentContext preview
The summary Claude sees to decide when to auto-load this skill.
\"Implement VADER sentiment analysis for social media text scoring. Use this skill when the user needs to analyze sentiment in tweets, reviews, or social posts, compute compound sentiment scores, or classify text polarity — even if they say 'is this positive or negative',
name: "\"algo-social-sentiment\"" description: "\"Implement VADER sentiment analysis for social media text scoring. Use this skill when the user needs to analyze sentiment in tweets, reviews, or social posts, compute compound sentiment scores, or classify text polarity — even if they say 'is this positive or negative', 'sentiment of these comments', or 'social media mood analysis'.\"." allowed-tools: Read, Glob, Grep
VADER (Valence Aware Dictionary and sEntiment Reasoner) is a lexicon and rule-based sentiment tool optimized for social media. Returns compound score [-1, +1] combining positive, negative, and neutral proportions. Runs in O(n) per text where n = word count. No training required.
**Trigger conditions:**
**When NOT to use:**
IRON LAW: VADER Is Designed for SOCIAL MEDIA Text It handles slang, emoticons, capitalization, and punctuation as sentiment modifiers. Applying it to formal documents (legal, academic, medical) produces unreliable scores. For domain-specific text, use domain-trained models instead.
Tokenize text. Preserve: capitalization (ALL CAPS = emphasis), punctuation (! amplifies), emoticons/emoji. **Gate:** Text is non-empty, encoding handled correctly.
1. Look up each token in VADER lexicon (7,500+ sentiment-rated terms) 2. Apply grammatical rules: negation ("not good" = negative), degree modifiers ("very good" > "good"), capitalization boost, punctuation amplification 3. Compute raw valence scores for positive, negative, neutral proportions 4. Compute compound score: normalized sum of all valence scores using formula: compound = sum / √(sum² + α) where α = 15
Classify: compound ≥ 0.05 → positive, ≤ -0.05 → negative, else neutral. Spot-check sample results. **Gate:** Classifications pass manual spot-check on 10-20 examples.
Return compound score and polarity classification per text.
{
"results": [{"text": "...", "compound": 0.76, "pos": 0.45, "neu": 0.55, "neg": 0.0, "label": "positive"}],
"metadata": {"texts_analyzed": 500, "distribution": {"positive": 0.45, "neutral": 0.35, "negative": 0.20}}
}**Input:** "This product is AMAZING!!! 😍" **Expected:** compound ≈ 0.87 (positive). Boosted by: CAPS, !!!, 😍 emoji.
| Input | Expected | Why | |-------|----------|-----| | "Not bad at all" | Slightly positive (~0.2) | Double negation partially handled | | "😂😂😂" | Positive | Emoji mapped in lexicon | | Empty string | Compound = 0, neutral | No tokens to score |
Curated skill pack for LLM agents in engineer and science workflow (Cursor & Claude ready).
Research a company or person and get actionable sales intel. Works standalone with web search, supercharged when you connect enrichment tools or your CRM.…
Evaluate LLM agents and tool-using workflows—task success, tool accuracy, latency/cost, safety, and regression suites. Use when shipping agent features,…
Design agent tools and CLI surfaces—schemas, naming, errors, idempotency, and discoverability for LLM callers. Use when defining tools for agents, SDKs, or…
\"Implement and select ad bidding strategies from manual CPC to automated target-CPA and target-ROAS. Use this skill when the user needs to choose a bidding…
\"Optimize advertising budget allocation across campaigns using marginal returns analysis. Use this skill when the user needs to distribute budget across…
\"Build CTR prediction models for estimating ad click-through rates from features. Use this skill when the user needs to predict click probability, build an ad…