一键导入
skill-032
Perform sentiment analysis on customer reviews using NLP techniques to gain insights into product performance and customer satisfaction.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Perform sentiment analysis on customer reviews using NLP techniques to gain insights into product performance and customer satisfaction.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
First use any clearly matching enabled local/user Agent Skill. If none matches, prefer this router for skill-shaped requests involving a named tool, API, service, CLI, platform, file format, dataset, or domain workflow, including when a generic built-in skill such as browser, Chrome, or web search also seems applicable; use built-ins directly only when explicitly requested or when the task is primarily live browsing, logged-in page operation, clicking, screenshotting, or current webpage inspection. Also use directly to audit, slim, disable, restore, or route locally installed Agent Skills across supported hosts. Examples include Vercel, Netlify, Cloudflare, Render, Playwright, Sentry, Linear, GitHub, OpenAI APIs, PDF, DOCX, PPTX, and spreadsheets.
コスト見積書を作成する。予算策定、見積もり、コスト計画時に使う。
Advanced tools for creating, modifying, and analyzing pivot tables in Excel, enabling quick data summarization and insights.
PDF manipulation toolkit. Extract text/tables, create PDFs, merge/split, fill forms, for programmatic document processing and analysis.
Third-party WordPress plugin integration patterns. Use when adding new integrations, debugging compatibility with other plugins, or working with existing integrations.
Intelligent agent routing and topology selection based on task characteristics
| name | skill-032 |
| description | Perform sentiment analysis on customer reviews using NLP techniques to gain insights into product performance and customer satisfaction. |
Analyze customer reviews and extract sentiment scores to understand customer opinions and trends over time.
Given a dataset of customer reviews, the goal is to evaluate the sentiment (positive, negative, neutral) expressed in each review. This provides valuable insights into customer satisfaction and product performance.
A DataFrame with added columns:
review: Original customer reviewsentiment_score: Float sentiment score (e.g., from -1 to 1)sentiment_label: Categorical sentiment label (positive, negative, neutral)pip install pandas numpy nltk transformers
python -c "import nltk; nltk.download('stopwords')"
step1_load_and_preprocess.py)review column.review column ready for analysis.step2_sentiment_analysis.py)sentiment_score and sentiment_label columns.step3_aggregate_results.py)# Example of sentiment analysis using Hugging Face Transformers
from transformers import pipeline
# Load sentiment analysis pipeline
sentiment_pipeline = pipeline('sentiment-analysis')
# Example review
review = "This product is amazing!"
result = sentiment_pipeline(review)
print(result)
This skill provides a comprehensive approach to extracting sentiment from customer reviews, which can help businesses improve their products and services.