Consolidates market and data analysis skills; adds chart viz (#36)

Unifies market analysis, data analysis, and consulting reporting into a comprehensive consulting-analysis skill, enabling a two-phase workflow from analysis framework design to professional report generation. Introduces a DuckDB-based data analysis utility for Excel/CSV files and a chart-visualization skill with a flexible JS interface and extensive chart type documentation. Removes the legacy market analysis skill to streamline report generation and improve extensibility for consulting and data-driven workflows.
This commit is contained in:
JeffJiang
2026-02-12 11:08:09 +08:00
committed by GitHub
parent 300e5a519a
commit 4d5fdcb8db
33 changed files with 2326 additions and 206 deletions

View File

@@ -0,0 +1,22 @@
# generate_network_graph — 网络关系图
## 功能概述
以节点与连线呈现实体之间的连接关系,适合社交网络、系统依赖、知识图谱等场景。
## 输入字段
### 必填
- `data`: object必填包含节点与连线。
- `data.nodes`: array<object>,至少 1 条,需提供唯一 `name`
- `data.edges`: array<object>,至少 1 条,包含 `source``target`string可选 `name` 说明关系。
### 可选
- `style.texture`: string默认 `default`,可选 `default`/`rough`
- `theme`: string默认 `default`,可选 `default`/`academy`/`dark`
- `width`: number默认 `600`
- `height`: number默认 `400`
## 使用建议
节点数量保持在 10~50 之间以避免拥挤;确保 `edges` 中的 `source/target` 对应已存在的节点;可在 `label` 中注明关系含义。
## 返回结果
- 返回网络图 URL并提供 `_meta.spec` 以便后续增删节点。