Customer Feedback Aggregation
by a5c-ai
Aggregate and analyze customer feedback from multiple sources for product insights
Skill Details
Repository Files
2 files in this skill directory
name: Customer Feedback Aggregation description: Aggregate and analyze customer feedback from multiple sources for product insights allowed-tools:
- Read
- Write
- Glob
- Grep
- Bash
Customer Feedback Aggregation Skill
Overview
Specialized skill for aggregating and analyzing customer feedback from multiple sources. Enables product teams to synthesize voice-of-customer data into actionable insights for product decisions.
Capabilities
Data Collection
- Parse support tickets for feature requests
- Analyze NPS/CSAT verbatim responses
- Extract themes from sales call notes
- Monitor app store reviews
- Aggregate feedback from Intercom/Zendesk
- Process customer interview transcripts
Analysis
- Calculate feature request frequency
- Track sentiment trends over time
- Identify emerging themes and patterns
- Segment feedback by customer type
- Correlate feedback with customer attributes
- Detect urgency and impact signals
Synthesis
- Generate feedback summary reports
- Create feature request rankings
- Build customer pain point matrices
- Generate insight recommendations
- Create feedback-to-feature mapping
Target Processes
This skill integrates with the following processes:
jtbd-analysis.js- Voice of customer for jobs analysisfeature-definition-prd.js- Customer-driven requirementsrice-prioritization.js- Reach and impact scoringcustomer-advisory-board.js- CAB feedback synthesis
Input Schema
{
"type": "object",
"properties": {
"sources": {
"type": "array",
"items": {
"type": "object",
"properties": {
"type": { "type": "string", "enum": ["support-tickets", "nps-verbatim", "sales-calls", "app-reviews", "interviews", "surveys"] },
"data": { "type": "array", "items": { "type": "object" } },
"dateRange": { "type": "object" }
}
},
"description": "Feedback data sources"
},
"analysisScope": {
"type": "string",
"enum": ["all", "feature-requests", "pain-points", "sentiment", "trends"],
"description": "Focus area for analysis"
},
"segmentation": {
"type": "array",
"items": { "type": "string" },
"description": "Dimensions to segment feedback by"
},
"timeRange": {
"type": "object",
"properties": {
"start": { "type": "string", "format": "date" },
"end": { "type": "string", "format": "date" }
}
}
},
"required": ["sources"]
}
Output Schema
{
"type": "object",
"properties": {
"summary": {
"type": "object",
"properties": {
"totalFeedbackItems": { "type": "number" },
"sourceBreakdown": { "type": "object" },
"dateRange": { "type": "object" },
"overallSentiment": { "type": "string" }
}
},
"themes": {
"type": "array",
"items": {
"type": "object",
"properties": {
"theme": { "type": "string" },
"frequency": { "type": "number" },
"sentiment": { "type": "string" },
"examples": { "type": "array", "items": { "type": "string" } },
"segments": { "type": "object" }
}
}
},
"featureRequests": {
"type": "array",
"items": {
"type": "object",
"properties": {
"feature": { "type": "string" },
"requestCount": { "type": "number" },
"customerSegments": { "type": "array", "items": { "type": "string" } },
"urgencyScore": { "type": "number" },
"impactEstimate": { "type": "string" },
"representativeQuotes": { "type": "array", "items": { "type": "string" } }
}
}
},
"painPoints": {
"type": "array",
"items": {
"type": "object",
"properties": {
"painPoint": { "type": "string" },
"severity": { "type": "string" },
"frequency": { "type": "number" },
"customerImpact": { "type": "string" }
}
}
},
"trends": {
"type": "object",
"properties": {
"emerging": { "type": "array", "items": { "type": "string" } },
"declining": { "type": "array", "items": { "type": "string" } },
"sentimentTrend": { "type": "string" }
}
},
"recommendations": {
"type": "array",
"items": {
"type": "object",
"properties": {
"recommendation": { "type": "string" },
"priority": { "type": "string" },
"evidence": { "type": "array", "items": { "type": "string" } }
}
}
}
}
}
Usage Example
const feedbackAnalysis = await executeSkill('feedback-aggregation', {
sources: [
{
type: 'support-tickets',
data: supportTickets,
dateRange: { start: '2026-01-01', end: '2026-01-24' }
},
{
type: 'nps-verbatim',
data: npsResponses
},
{
type: 'app-reviews',
data: appStoreReviews
}
],
analysisScope: 'all',
segmentation: ['plan_type', 'company_size', 'tenure']
});
Dependencies
- NLP capabilities
- Support platform APIs (Intercom, Zendesk)
- App store APIs
Related Skills
Attack Tree Construction
Build comprehensive attack trees to visualize threat paths. Use when mapping attack scenarios, identifying defense gaps, or communicating security risks to stakeholders.
Grafana Dashboards
Create and manage production Grafana dashboards for real-time visualization of system and application metrics. Use when building monitoring dashboards, visualizing metrics, or creating operational observability interfaces.
Matplotlib
Foundational plotting library. Create line plots, scatter, bar, histograms, heatmaps, 3D, subplots, export PNG/PDF/SVG, for scientific visualization and publication figures.
Scientific Visualization
Create publication figures with matplotlib/seaborn/plotly. Multi-panel layouts, error bars, significance markers, colorblind-safe, export PDF/EPS/TIFF, for journal-ready scientific plots.
Seaborn
Statistical visualization. Scatter, box, violin, heatmaps, pair plots, regression, correlation matrices, KDE, faceted plots, for exploratory analysis and publication figures.
Shap
Model interpretability and explainability using SHAP (SHapley Additive exPlanations). Use this skill when explaining machine learning model predictions, computing feature importance, generating SHAP plots (waterfall, beeswarm, bar, scatter, force, heatmap), debugging models, analyzing model bias or fairness, comparing models, or implementing explainable AI. Works with tree-based models (XGBoost, LightGBM, Random Forest), deep learning (TensorFlow, PyTorch), linear models, and any black-box model
Pydeseq2
Differential gene expression analysis (Python DESeq2). Identify DE genes from bulk RNA-seq counts, Wald tests, FDR correction, volcano/MA plots, for RNA-seq analysis.
Query Writing
For writing and executing SQL queries - from simple single-table queries to complex multi-table JOINs and aggregations
Pydeseq2
Differential gene expression analysis (Python DESeq2). Identify DE genes from bulk RNA-seq counts, Wald tests, FDR correction, volcano/MA plots, for RNA-seq analysis.
Scientific Visualization
Meta-skill for publication-ready figures. Use when creating journal submission figures requiring multi-panel layouts, significance annotations, error bars, colorblind-safe palettes, and specific journal formatting (Nature, Science, Cell). Orchestrates matplotlib/seaborn/plotly with publication styles. For quick exploration use seaborn or plotly directly.
