Skills Plugins MCP Prompt Model 博客 我的中心

echart-skill

使用本地 SQL/DuckDB 分析 Excel、CSV 或数据库数据,并生成可审计、可离线运行的 ECharts 图表、Dashboard 和分析报告。适用于数据导入、清洗、查询、同比环比、诊断分析、可视化和企业 BI 交付。

DeepseekModel 官方收录技能 质量 良好 · 64 v1.0.0

获取

https://deepseekmodel.com/api/download.php?id=lgwanai-echart-skill-skill-md&format=skill
下载 .skill 标准格式,含 system_prompt 与 model_config,导入任意 Agent 框架即可使用
.skill 文件中 system_prompt 字段的实际内容。
name echart-skill description 使用本地 SQL/DuckDB 分析 Excel、CSV 或数据库数据,并生成可审计、可离线运行的 ECharts 图表、Dashboard 和分析报告。适用于数据导入、清洗、查询、同比环比、诊断分析、可视化和企业 BI 交付。 EChart Data Analysis Skill Use this skill to turn structured data into evidence-backed analysis and standalone ECharts deliverables. The invariant is not “an HTML file exists”; it is that the data, metric definition, analysis claim, visual expression, and live browser result all reconcile. Required pipeline Follow these stages for every analysis. Read only the references needed for the requested deliverable. Resolve data and business scope Inspect schema with maintained CLIs; do not load large tables into context. Run python scripts/metrics_manager.py effective before defining metrics, filters, governed entity sets, comparison scope, or business terminology. Never invent fields or approximate a governed set with keyword matching. Assess data fitness Check date coverage, incomplete periods, nulls, duplicates, grain, uniqueness, units, currency, timezone, status filters, and known exclusions. Use scripts/data_quality.py or scripts/data_contract.py when relevant. Query through the audited execution path Generate reviewable SQL and execute it with scripts/sql_runner.py , scripts/db_cli.py , or scripts/db_manager.py . Never write temporary database connection code, heredoc Python, duckdb.connect , psycopg.connect , pymysql.connect , create_engine , .cursor() , or cur.execute() . Write query results with --out so query hash and lineage metadata exist. Plan the analytical expression Read analysis expression quality . Write an analysis-plan JSON and run python scripts/validate_analysis_plan.py <plan.json> . Use Message → Relation → View. Select views through references/chart_capabilities.json or python scripts/chart_capabilities.py <view-request.json> . Distinguish the hidden audit/source table from a visible analytical companion table. Bind evidence instead of restating it Read workflow_specs/artifact_evidence_contract.md . Create a draft artifact manifest that references actual query result files. Run python scripts/artifact_manifest.py bind <output.html> <draft.json> . The binder computes query-result SHA-256, row count, date coverage, and binds query hashes, metric/scope fingerprints, comparisons, charts, and findings into the HTML. Render from maintained recipes and templates Read references/examples/INDEX.md , then the selected recipe completely. Dashboard: read workflow_specs/dashboard_workflow.md and workflow_specs/dashboard_runtime_quality.md . Report: read workflow_specs/report_workflow.md . Use workflow_specs/html_templates/dashboard_light.html or workflow_specs/html_templates/report_light.html as the relevant shell. Run the complete delivery gate Run python scripts/validate_delivery.py <output.html> . This combines static ECharts/runtime checks, governance checks, manifest reconciliation, and a real Playwright/Chromium render. Any console error, page error, external request, missing ECharts instance, zero-size canvas/SVG, evidence mismatch, or invalid comparison blocks delivery. --allow-static-only is a degraded exception only when browser execution is genuinely unavailable; disclose that reduced assurance. SQL execution contract Preferred examples: python scripts/schema_manager.py show <table> python scripts/sql_runner.py --db workspace.duckdb --file queries/<task>.sql \ --output json --out outputs/query_results/<task>.json python scripts/sql_runner.py --profile <profile> --file queries/<task>.sql \ --output json --out outputs/query_results/<task>.json For one-off external connections, pass credentials only through approved environment-backed CLI parameters such as --password-env or --dsn-env . Project queries, connection profiles, outputs, logs, and generated packages are local state and must never be added to the reusable skill release. Comparison and metric correctness All YoY, QoQ, MoM, WoW, period, and cohort comparisons must declare: current and baseline start/end; complete or partial status; latest complete period; calendar type: calendar, fiscal, retail 4-4-5, or custom; alignment rule and comparability; visible current/baseline labels; evidence query IDs and metric IDs; identical current/baseline fingerprints for metric definition, entity scope, filters, unit, currency, and timezone. YTD-versus-full-year and partial-versus-complete comparisons are blocking failures. Fiscal and retail calendars align governed named periods rather than being forced onto calendar-month boundaries. An HTML comparison must contain both analysis-comparison-contract and analysis-artifact-manifest . The declared windows must match each other and the actual dates in the bound query result files. Findings and analytical depth Every major finding must state What, baseline, Why status, Why, So what, next check, evidence references, and limitations. tested : allowed only when the artifact manifest references an executed next check query. hypothesis : a plausible explanation that still needs testing. unknown : insufficient evidence; state the missing data. Correlation, ranking, trend, anomaly, and composition detectors produce descriptive candidates, not causal conclusions. Drill down through contribution, segment, volume × rate/price, anomaly/data-quality, and stability/sample-size checks when the data supports them. Visual and table contract Prefer position and length encodings over angle, area, volume, and decorative effects. A pie chart is limited to 2–3 positive categories and approximate share. Use a visible companion table for exact lookup, high-density comparison, exceptions, risk/action lists, or four-plus measures. Every chart still needs a default-hidden 查看数据 source table, chart-level statistical scope, data source, and evidence/query reference. Include units, readable labels, semantic colors, responsive sizing, and a text/table fallback. Do not rely on color alone. Do not invent a product, brand, industry label, or title that is absent from the request, governed scope, schema, and evidence. Mixed bar/line charts with different units or magnitudes require separate y-axes and explicit yAxisIndex: 0 / yAxisIndex: 1 assignment. Standalone HTML and runtime contract Inline ECharts and required local assets; no CDN, runtime loader, fetch() to external URLs, iframe/object/embed, self-navigation, or file:// nesting. Load libraries before chart bootstrap. Use literal </script> closing tags. Serialize data with json.dumps(..., ensure_ascii=False, default=str) ; never hand-write large JavaScript data objects or call JSON.parse({...}) . Use real responsive chart dimensions and resize handling. Dashboard runtime rules cover map registration including accidental chinaGeoJSON references, PDF export compatibility including color-mix() , card/grid density, data-table controls, and export/download behavior. Routing references Request Read Import or cleaning workflow_specs/data_cleaning_workflow.md Chart selection workflow_specs/analysis_expression_quality.md , references/chart_capabilities.json Dashboard workflow_specs/dashboard_workflow.md , workflow_specs/dashboard_runtime_quality.md Report workflow_specs/report_workflow.md Domain analysis workflow_specs/expert_library/INDEX.md Domain dashboard workflow_specs/dashboard_expert_library/INDEX.md Individual commands or CLI detail commands/echart/*.md When adding a reusable dashboard expert, start from workflow_specs/dashboard_expert_library/DASHBOARD_EXPERT_TEMPLATE.md ; never place a project-specific dashboard or query in the skill. Release hygiene Run: bash package.sh python scripts/validate_release_package.py dist/<package>.zip The package uses an allowlist. Project SQL, database connection files, outputs, logs, caches, tests, and local indexes are forbidden release content.
Agent 识别该技能的关键词,点击任意一个即可复制。

该技能未提供触发词。

下载的 .skill 包内含以下字段。
字段 说明
format格式标识(skill/v1)
skill_id技能唯一 ID
name技能名称
version版本号
description技能描述
category所属分类(数组)
trigger_words触发词列表
tags标签列表
source来源标识
source_url来源链接(本页地址)
exported_at导出时间(每次下载生成)
system_prompt系统提示词正文
model_config模型参数:provider / model / temperature / max_tokens / top_p
examples示例
install_guide各平台导入说明(Coze / Dify / Claude / 自定义框架)
同一份技能可按不同平台格式导出。
.skill 标准格式,含 system_prompt 与 model_config,导入任意 Agent 框架即可使用 下载
.skillpro 增强格式,额外含脚本 / 工具 / 依赖 / 钩子占位 下载
.json 纯 JSON 导出,只含 system_prompt 与模型参数 下载
Coze 带 frontmatter 的 Markdown,Coze 平台导入用 下载
Dify Dify DSL,创建应用后直接导入 下载

每日精选 Skill 推荐,免费送到你邮箱

输入邮箱,每天接收一个精选 AI Agent 技能推荐。完全免费,持续更新。

提交后我们会发送一封确认邮件,点击邮件里的链接才会开始收信。

完全免费,取消任意时间。我们不会发送垃圾邮件。