social-media-matrix-tracker-template
社媒矩阵数据追踪面板模板(Social Media Matrix Tracker)。 Use when users ask for a cinematic, data-dense social media analytics dashboard with multi-platform metrics, interactive charts, hover insights, range compare, and dark/light theme switching in a single HTML artifact.
Install / Use
npx skills add nexu-io/open-design --skill social-media-matrix-tracker-templateInstalls into whichever agent you are using.
SKILL.md
Installable skill definition
Quality Score
Category
Data & AnalyticsSupported Platforms
Tags
Our assessment of social-media-matrix-tracker-template
social-media-matrix-tracker-template scores 90/100 on our quality scale, 21st of 142 Data & Analytics skills we index (top 15%).
Its SKILL.md is 4.5 KB long, split into 5 sections with 2 code examples: a solid amount of guidance for an agent.
With 97,896 GitHub stars, it is one of the more widely adopted skills in the catalogue.
Maintenance, license and trust
- The repository was last updated today, so social-media-matrix-tracker-template is actively maintained.
- It is released under the Apache-2.0 license, a permissive license that allows use, modification and commercial use with attribution.
- Its trust signals score 100/100, with no cautions. These come from repository metadata, not a code audit — read the skill file before letting an agent act on it.
social-media-matrix-tracker-template compared with similar skills
All 4 of these similar skills score higher than social-media-matrix-tracker-template; compare them before choosing.
| Skill | Score | Stars | Updated | Format |
|---|---|---|---|---|
| social-media-matrix-tracker-template (this skill)by nexu-io | 90 | 97.9k | today | SKILL.md |
| algorithmic-artby anthropics | 100 | 177.9k | 2d ago | SKILL.md |
| pptxby anthropics | 100 | 177.9k | 2d ago | SKILL.md |
| designby nextlevelbuilder | 100 | 130.2k | 3d ago | SKILL.md |
| ui-ux-pro-maxby nextlevelbuilder | 100 | 130.2k | 3d ago | SKILL.md |
Frequently asked questions
- How do I install social-media-matrix-tracker-template?
- Run
npx skills add nexu-io/open-design --skill social-media-matrix-tracker-template. The install tabs above show the steps for each supported agent. - Which AI agents does social-media-matrix-tracker-template work with?
- It is written for Universal, as a SKILL.md file. Other agents that read the same format can often use it too.
- Is social-media-matrix-tracker-template safe to use?
- It is Apache-2.0-licensed and scores 100/100 on trust signals. Skills are instructions an agent will follow, so read the file before installing it and do not approve commands you do not understand.
- Is social-media-matrix-tracker-template still maintained?
- The repository was last updated today, so social-media-matrix-tracker-template is actively maintained.
Skill content
View source on GitHubname: social-media-matrix-tracker-template description: | 社媒矩阵数据追踪面板模板(Social Media Matrix Tracker)。 Use when users ask for a cinematic, data-dense social media analytics dashboard with multi-platform metrics, interactive charts, hover insights, range compare, and dark/light theme switching in a single HTML artifact. triggers:
- "social media matrix tracker"
- "social media dashboard template"
- "creator analytics template"
- "live social dashboard"
- "social analytics"
- "content performance"
- "TikTok analytics dashboard"
- "Instagram analytics dashboard"
- "YouTube analytics dashboard"
- "multi-platform creator dashboard"
- "社媒矩阵数据追踪面板"
- "社媒矩阵看板模板"
- "社交媒体数据追踪模板"
- "新媒体数据看板"
- "新媒体矩阵分析"
- "内容运营数据看板"
- "抖音数据看板"
- "小红书数据看板"
od:
mode: template
platform: desktop
scenario: live-artifacts
preview:
type: html
entry: index.html
reload: debounce-100
design_system:
requires: true
sections: [color, typography, layout, components]
outputs:
primary: index.html
secondary:
- template.html
- example.html example_prompt: "Create a social media matrix tracker dashboard template using my DESIGN.md. Keep the cinematic glassmorphism style, multi-chart analytics sections, hover tooltips, pin/drag range analysis, and light/dark switching." capabilities_required:
- file_write
Social Media Matrix Tracker Template
Ship a premium, cinematic social-media analytics template with high data density and production-grade micro-interactions.
Resource map
social-media-matrix-tracker-template/
├── SKILL.md
├── assets/
│ └── template.html
├── references/
│ └── checklist.md
└── example.html
Workflow
- Read active
DESIGN.mdfirst, map tokens to CSS variables, then adaptassets/template.html. - Keep the structural information architecture intact: hero + platform matrix + KPI strip + multi-chart deep sections.
- Preserve interaction fidelity:
- dark/light theme toggle
- hover tooltip on charts (auto-clamps inside viewport)
- click-to-pin chart point
- drag interval analysis
- Shift+drag multi-range compare
- insights panel live updates on every chart (line / stack / donut / geo)
- touch + keyboard arrow-key support for line charts (a11y)
- Ensure template remains self-contained (single HTML with inline CSS/JS, no framework dependency).
- Keep default sample data realistic and internally consistent across cards/charts.
- Validate with
references/checklist.mdbefore emitting the artifact.
Adapting the sample data safely
assets/template.html ships with hand-tuned sample arrays. When swapping in real data, follow this contract so charts and insights stay coherent:
- Replace whole arrays at once, not individual indices — line charts assume
values[]andxLabels[]are the same length and aligned by index. - Match the existing unit + decimals:
hourChart(engagements /decimals: 0),slaChart(minutes /decimals: 0),roiChart(multiplier x /decimals: 1),cohortChart(% /decimals: 0). Mismatched units break tooltip + A/B insight copy. - Keep all four line series the same length (default 7 points). Different lengths leak into the A/B compare which expects shared indices.
- For
mixChart, everybars[i].stackmust remain a 3-element array ([Video, Thread, Carousel]). ForsentimentChart,arcs[]percentages should sum to 100. - Update KPI strip + platform card metrics in lock-step — the artifact's "Live overview" insight derives from the same numbers.
- Single-data-point datasets are guarded (drawn as a labelled dot) but degrade UX; prefer ≥ 3 points per chart when adapting.
Output contract
Emit one short sentence before the artifact (e.g. "Cinematic social media matrix tracker — dark theme by default, all interactions live.") and then a single self-contained HTML artifact.
- The artifact must use the
<artifact>wrapper exactly as shown below — the daemon parser keys on the wrapper element. identifier="social-media-matrix-tracker"is the canonical id (don't suffix with project name).type="text/html"andtitleare required.- Inline CSS + JS only. No external framework / CDN. No external font imports beyond what
template.htmlalready declares. - The final document is the adapted
template.html(with DESIGN.md tokens applied), not a verbatim copy and not a separateindex.html. Do not emit both.
<artifact identifier="social-media-matrix-tracker" type="text/html" title="Social Media Matrix Tracker">
<!doctype html>
<html>...</html>
</artifact>
Related Skills
algorithmic-art
177.9kCreating algorithmic art using p5.js with seeded randomness and interactive parameter exploration. Use this when users request creating art using code, generative art, algorithmic art, flow fields, or particle systems.
pptx
177.9kUse this skill any time a .pptx or .potx file is involved in any way — as input, output, or both. This includes: creating slide decks, pitch decks, or presentations; reading, parsing, or extracting text from any .pptx or .potx file (even if the extracted content will be used elsewhere, like in an em…
design
130.2kComprehensive design skill: brand identity, design tokens, UI styling, logo generation (55 styles, Gemini, Atlas Cloud, or MuAPI AI), corporate identity program (50 deliverables, CIP mockups), HTML presentations (Chart.js), banner design (22 styles, social/ads/web/print), icon design (15 styles, SVG…
ui-ux-pro-max
130.2kUI/UX design intelligence for web, mobile, and desktop. This skill should be used when designing, building, reviewing, or fixing interfaces, including pages, components, design systems, accessibility, interaction, responsive layout, typography, color, charts, and stack-specific UI implementation.
Languages
Trust signals
From repository metadata: license, adoption, age and documentation. Not a code audit — see the Safety scan above for what the skill file itself contains.
