Token导航 LogoToken导航TokenDH.com
AI 工具需要联网github未标认证来源可访问clear审计异常

content-analysis内容分析

Agent Skill

用于辅助文档、README、Markdown、说明文和内容稿件的整理与改写。它适合让 Agent 提炼结构、补齐章节、统一术语、检查链接或把零散材料整理成可读文档。使用时应保留项目已有事实、命令和路径,不要把未确认的信息写成确定结论;涉及对外文案时,还需要控制语气,避免过度营销或夸大能力。

总安装

1,469

周安装

60

GitHub Stars

183

下载量

475
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/liangdabiao/claude-data-analysis-ultra-main --skill content-analysis

简介

运用高级 NLP 和 LLM 技术分析文本情感、主题和关键洞察。

  • 适用于社交媒体分析、内容分类和病毒式传播模式识别。
  • 支持多语言处理和多种内容格式的智能分析。
  • 建议验证数据来源可靠性,避免对未经验证内容过度解读。
  • content-analysis 属于AI 工具类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Content Analysis Skill

Analyze text content using advanced NLP techniques and LLM-powered insights to extract sentiment, topics, and actionable intelligence from various content sources.

Quick Start

This skill helps you:

  1. Analyze sentiment using both traditional NLP and LLM methods
  2. Extract topics and keywords from large text datasets
  3. Classify and cluster content automatically
  4. Identify viral content patterns and characteristics
  5. Generate content insights and recommendations
  6. Support multiple languages and content formats

When to Use

  • Social Media Analysis: Facebook, Twitter, Instagram, Weibo posts
  • Content Marketing: Blog posts, articles, marketing copy analysis
  • Video Content: YouTube titles, descriptions, comments analysis
  • Product Reviews: Amazon, e-commerce customer feedback
  • News Analysis: Article categorization, sentiment tracking
  • Customer Feedback: Support tickets, surveys, reviews analysis

Key Requirements

Traditional NLP Analysis

pip install pandas numpy matplotlib seaborn nltk scikit-learn wordcloud

LLM-Enhanced Analysis (Optional)

pip install openai dashscope  # For OpenAI and Qwen API access

Setup NLTK Data

import nltk
nltk.download('vader_lexicon')
nltk.download('punkt')
nltk.download('stopwords')

Core Workflow

1. Data Preparation

Your data should include:

  • Text Content: Main text to analyze (titles, descriptions, comments, etc.)
  • Metadata: Optional (author, date, category, engagement metrics)
  • Multiple Languages: Support for English, Chinese, and other languages

2. Analysis Process

  1. Text Preprocessing: Clean, tokenize, and normalize text
  2. Sentiment Analysis: Traditional VADER + LLM-enhanced analysis
  3. Topic Extraction: TF-IDF keywords + LLM semantic topics
  4. Content Classification: Automated categorization and clustering
  5. Pattern Recognition: Identify viral content characteristics
  6. Insight Generation: Actionable recommendations

3. Output Deliverables

  • Sentiment analysis reports with confidence scores
  • Topic models and keyword extractions
  • Content classification results
  • Viral content pattern analysis
  • Optimization recommendations

Example Usage Scenarios

Social Media Content Analysis

# Analyze Twitter posts for brand sentiment
# Identify trending topics and hashtags
# Measure engagement patterns

YouTube Video Analysis

# Analyze video titles and descriptions
# Extract topics from comments
# Identify viral content patterns

Product Review Analysis

# Analyze customer feedback sentiment
# Extract product feature mentions
# Identify improvement opportunities

Key Analysis Methods

Traditional NLP Techniques

  • VADER Sentiment Analysis: Rule-based sentiment scoring
  • TF-IDF Keyword Extraction: Statistical term importance
  • Text Clustering: K-means and hierarchical clustering
  • Word Frequency Analysis: Term frequency and co-occurrence
  • Language Detection: Automatic language identification

LLM-Enhanced Analysis

  • Context-Aware Sentiment: Nuanced emotion understanding
  • Semantic Topic Extraction: Meaning-based topic identification
  • Content Summarization: Automatic text summarization
  • Multi-Language Support: Cross-lingual analysis
  • Zero-Shot Classification: Categorization without training data

Advanced Analytics

  • Time Series Analysis: Content trends over time
  • Engagement Prediction: Predict viral potential
  • Competitive Analysis: Compare content performance
  • Audience Insights: Demographic and preference analysis

Common Business Questions Answered

  1. What is the overall sentiment toward our brand?
  2. Which topics are trending in our industry?
  3. What makes content go viral?
  4. How does sentiment vary by demographic or region?
  5. What are customers saying about our products?
  6. Which content formats perform best?

Integration Examples

See examples/ directory for:

  • basic_content_analysis.py - Traditional NLP analysis
  • llm_enhanced_analysis.py - LLM-powered analysis
  • social_media_analysis.py - Social media specific analysis
  • Sample datasets for testing

LLM Configuration

Supported LLM Providers

  • OpenAI: GPT-3.5, GPT-4 models
  • Qwen (通义千问): Chinese-optimized models
  • Open Source: Local models via HuggingFace

API Setup Examples

# OpenAI Configuration
import openai
openai.api_key = 'your-api-key'

# Qwen Configuration
import dashscope
dashscope.api_key = 'your-api-key'

Best Practices

  1. Data Quality: Ensure clean, consistent text data
  2. Sampling Strategy: Use representative samples for LLM analysis
  3. Cost Management: Balance traditional NLP with LLM calls
  4. Language Handling: Configure appropriate language models
  5. Validation: Cross-validate sentiment analysis results
  6. Privacy: Ensure compliance with data protection regulations

Performance Optimization

For Large Datasets

  • Use data sampling for LLM analysis
  • Implement batch processing
  • Cache LLM responses when possible
  • Use traditional NLP for initial filtering

Cost Management

  • Prioritize important content for LLM analysis
  • Use traditional NLP for bulk processing
  • Implement smart sampling strategies
  • Monitor API usage and costs

Advanced Features

  • Real-time Analysis: Stream processing for live content
  • Multi-modal Analysis: Text + image + video content
  • Custom Models: Fine-tune models for specific domains
  • Integration APIs: Connect with content management systems
  • Automated Reporting: Scheduled analysis and reporting

Troubleshooting

Common Issues

  1. Low Sentiment Accuracy: Check language settings and text preprocessing
  2. High API Costs: Optimize sampling and caching strategies
  3. Slow Processing: Implement parallel processing and batching
  4. Language Support: Ensure appropriate models for non-English content

Performance Tips

  • Pre-process text data effectively
  • Use appropriate model sizes for tasks
  • Implement result caching
  • Monitor resource usage and optimize

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

能力 5

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

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

平台分布

Antigravity

30.18%
按下载量换算143

Claude Code

24.05%
按下载量换算114

Gemini CLI

16.36%
按下载量换算78

windsurf

11.87%
按下载量换算56

Codex

7.32%
按下载量换算35

OpenCode

3.95%
按下载量换算19

安全审计

Gen Agent Trust Hub

未通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

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

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。

来源信息

继续浏览同类 Skills