Agent skill
plotly
Plotly interactive visualization library. Use for interactive charts.
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/other/other/plotly-g1joshi-agent-skills
SKILL.md
Plotly
Plotly creates interactive (zoomable, hoverable) charts in the browser. v6.0 (2025) drops big dependencies (Pandas is optional) and improves performance.
When to Use
- Dashboards: Streamlit, Dash.
- 3D Plots: Rotating 3D scatter plots.
- Interactivity: Users need to drill down into data.
Core Concepts
Plotly Express (px)
High-level API. px.scatter(df, x="a", y="b", color="c").
Graph Objects (go)
Low-level API. go.Figure(data=[go.Scatter(...)]).
Dash
The framework for building web apps with Plotly charts.
Best Practices (2025)
Do:
- Use Plotly Express: It covers 90% of use cases.
- Use WebGL:
render_mode='webgl'for large datasets (>10k points).
Don't:
- Don't use it for static papers: Use Matplotlib for print.
References
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?