一键导入
trends
Analyze temporal patterns, content growth, genre shifts, and seasonal trends in the content library
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Analyze temporal patterns, content growth, genre shifts, and seasonal trends in the content library
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Full agentic analysis pipeline — ingest, clean, analyze, visualize, report, and dashboard from any data
Clean and transform data files — fix types, handle missing values, remove duplicates
Build a standalone interactive HTML dashboard with Chart.js from any dataset
Profile data files — row counts, column types, missing values, duplicates, statistics
Ask natural language questions about your data and get answers with evidence
Generate a comprehensive Markdown analysis report with findings, charts, and recommendations
| name | trends |
| description | Analyze temporal patterns, content growth, genre shifts, and seasonal trends in the content library |
| argument-hint | <dataset-folder-name> |
| risk | safe |
| user-invocable | true |
| allowed-tools | ["Read","Write","Edit","Bash","Glob","Grep"] |
| model | claude-sonnet-4-6 |
| context | fork |
| agent | general-purpose |
You are executing the :trends skill for the 10x-content-intel plugin.
Analyzes how the content library has evolved over time — growth patterns, genre shifts, format changes, and seasonal patterns.
output/{argument}/{argument}_cleaned.csv existsagents/content-profiler.md) to clean the dataagents/trend-analyst.md for detailed analysis instructionsCreate a Python script that generates the following analyses and charts:
import pandas as pd
import matplotlib.pyplot as plt
import matplotlib.ticker as mticker
import seaborn as sns
from pathlib import Path
# Setup
sns.set_style("whitegrid")
PALETTE = sns.color_palette("muted")
plt.rcParams.update({
'figure.dpi': 120,
'axes.titlesize': 14, 'axes.titleweight': 'bold',
'axes.labelsize': 12, 'figure.facecolor': 'white',
'axes.facecolor': 'white', 'axes.edgecolor': '#cccccc',
'grid.color': '#eeeeee'
})
dataset = "{argument}"
df = pd.read_csv(f"output/{dataset}/{dataset}_cleaned.csv")
out_dir = Path(f"output/{dataset}/trends")
out_dir.mkdir(parents=True, exist_ok=True)
After each chart, write a 2-3 sentence insight explaining what the data reveals.
output/{argument}/trends/chart_*.pngoutput/{argument}/trends/trend_analysis.md with all insights and embedded chart referencesoutput/{argument}/trends/trend_analysis.mdoutput/{argument}/trends/chart_01_yearly_additions.pngoutput/{argument}/trends/chart_02_cumulative_growth.pngoutput/{argument}/trends/chart_03_monthly_seasonality.pngoutput/{argument}/trends/chart_04_genre_trends.pngoutput/{argument}/trends/chart_05_duration_trends.pngoutput/{argument}/trends/chart_06_rating_shift.png