@axiom-lattice/examples-deep_research 1.0.26 → 1.0.28

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (34) hide show
  1. package/.env +6 -0
  2. package/.turbo/turbo-build.log +5 -5
  3. package/CHANGELOG.md +22 -0
  4. package/DATABASE_CONFIG_SETUP.md +290 -0
  5. package/dist/index.js +146 -22
  6. package/dist/index.js.map +1 -1
  7. package/package.json +5 -5
  8. package/src/agents/data_agent/skills/business-analytics/README.md +121 -0
  9. package/src/agents/data_agent/skills/business-analytics/SKILL.md +230 -0
  10. package/src/agents/data_agent/skills/business-analytics/examples.md +295 -0
  11. package/src/agents/data_agent/skills/business-analytics/reference.md +240 -0
  12. package/src/agents/data_agent/skills/business-analytics/resources/data/sample.json +66 -0
  13. package/src/agents/data_agent/skills/business-analytics/resources/prompts/analyze.txt +128 -0
  14. package/src/agents/data_agent/skills/business-analytics/resources/templates/report-template.md +260 -0
  15. package/src/agents/data_agent/skills/chart-markdown/SKILL.md +91 -0
  16. package/src/agents/data_agent/skills/chart-markdown/resources/best-practices/README.md +16 -0
  17. package/src/agents/data_agent/skills/chart-markdown/resources/best-practices/data-patterns.md +14 -0
  18. package/src/agents/data_agent/skills/chart-markdown/resources/best-practices/finance.md +7 -0
  19. package/src/agents/data_agent/skills/chart-markdown/resources/best-practices/formatting.md +14 -0
  20. package/src/agents/data_agent/skills/chart-markdown/resources/best-practices/hr-people.md +7 -0
  21. package/src/agents/data_agent/skills/chart-markdown/resources/best-practices/marketing-growth.md +7 -0
  22. package/src/agents/data_agent/skills/chart-markdown/resources/best-practices/operations-supply-chain.md +7 -0
  23. package/src/agents/data_agent/skills/chart-markdown/resources/best-practices/sales-retail.md +8 -0
  24. package/src/agents/data_agent/skills/chart-markdown/resources/examples.md +80 -0
  25. package/src/agents/data_agent/skills/financial-analysis/SKILL.md +268 -0
  26. package/src/agents/data_agent/skills/metrics-query/SKILL.md +296 -0
  27. package/src/agents/data_agent/skills/operations-analysis/SKILL.md +432 -0
  28. package/src/agents/data_agent/skills/sales-analysis/SKILL.md +350 -0
  29. package/src/agents/index.ts +1 -0
  30. package/src/agents/research_team/index.ts +93 -0
  31. package/src/index-with-auth.ts +122 -0
  32. package/src/index.ts +93 -3
  33. package/src/agents/data_agent/skills/sql-query/SKILL.md +0 -58
  34. package/src/agents/data_agent/skills/test/SKILL.md +0 -9
@@ -0,0 +1,91 @@
1
+ ---
2
+ name: chart-markdown
3
+ description: Selects an appropriate chart type (bar, line, pie, scatter, heatmap, funnel, gauge, radar) from data analysis or query results and generates a chart markdown block containing JSON for external chart libraries. Use when the user asks to visualize query results, analysis data, or to create bar charts, line charts, pie charts, scatter plots, or other chart types from tabular or aggregated data.
4
+ ---
5
+
6
+ # Chart Markdown Block
7
+
8
+ ## Chart type selection
9
+
10
+ Choose by data shape and question:
11
+
12
+ - **Bar** (bar): Compare categories or time periods. Use category xAxis, value yAxis. Multiple series for grouped or stacked bars.
13
+ - **Line** (line): Show trends over time. Use category or time xAxis, value yAxis. Multiple series for multiple metrics.
14
+ - **Pie** (pie): Show composition or share. No axes. Data: `[{value: number, name: string}, ...]`. Use `radius: ["40%", "70%"]` for donut.
15
+ - **Scatter** (scatter): Correlation or distribution. Use value xAxis and value yAxis. Data: `[[x, y], [x, y], ...]`.
16
+ - **Heatmap** (heatmap): Two dimensions + value. Category xAxis and yAxis. Data: `[[xIndex, yIndex, value], ...]`.
17
+ - **Funnel** (funnel): Sequential stages or conversion. Data: `[{value, name}, ...]`. Use `sort: "ascending"` or `"descending"`.
18
+ - **Gauge** (gauge): Single KPI or progress. One series with `data: [{value, name}]`.
19
+ - **Radar** (radar): Multi-dimensional comparison. Define `radar.indicator` and series with `value` arrays.
20
+
21
+ ## Output format
22
+
23
+ Emit a single fenced code block with language **chart**. Body is one JSON object:
24
+
25
+ - **table**: Array of rows (original or summary data) for reference.
26
+ - **echarts**: ECharts option object (title, tooltip, legend, xAxis, yAxis, series, etc.).
27
+
28
+ ```chart
29
+ {
30
+ "table": [["Category", "Value"], ["A", 10], ["B", 20]],
31
+ "echarts": { ... }
32
+ }
33
+ ```
34
+
35
+ ## Schema requirements
36
+
37
+ - **title**: `{"text": "Clear chart title"}`.
38
+ - **tooltip**: Use `trigger: "axis"` for bar/line; `trigger: "item"` for pie/scatter/funnel.
39
+ - **xAxis / yAxis**: Omit for pie/funnel/gauge. Use `type: "category"` or `"time"` or `"value"`; provide `data` when type is category.
40
+ - **series**: One or more items. Each has `type`, `name`, `data`. Pie data: `[{value, name}]`. Scatter data: `[[x,y], ...]`. Bar/line: array of values or category-mapped values.
41
+ - **legend**: Include when there are multiple series.
42
+
43
+ ## Best practices
44
+
45
+ - Use clear, business-facing titles and axis labels (not raw field names).
46
+ - Format numbers (percent, currency, thousands) in tooltip and axis labels.
47
+ - For time series, use `xAxis.type: "time"` and consistent date format.
48
+ - Show important values on the chart with `series.label` when useful.
49
+ - For industry- or data-type-specific guidance, see [best-practices/README.md](best-practices/README.md) (data patterns, formatting, and one file per industry: sales-retail, finance, marketing-growth, operations-supply-chain, hr-people).
50
+
51
+ ## Examples
52
+
53
+ ### Bar chart (category comparison)
54
+
55
+ ```chart
56
+ {
57
+ "table": [["Product", "Sales"], ["Product A", 320], ["Product B", 280], ["Product C", 250]],
58
+ "echarts": {
59
+ "title": {"text": "Top products by sales"},
60
+ "tooltip": {"trigger": "axis"},
61
+ "xAxis": {"type": "category", "data": ["Product A", "Product B", "Product C"], "name": "Product"},
62
+ "yAxis": {"type": "value", "name": "Sales"},
63
+ "series": [{"type": "bar", "data": [320, 280, 250], "label": {"show": true, "position": "top"}}]
64
+ }
65
+ }
66
+ ```
67
+
68
+ ### Pie chart (composition)
69
+
70
+ ```chart
71
+ {
72
+ "table": [["Channel", "Count"], ["Online", 450], ["Offline", 320], ["Partner", 180]],
73
+ "echarts": {
74
+ "title": {"text": "Customer acquisition by channel"},
75
+ "tooltip": {"trigger": "item", "formatter": "{b}: {c} ({d}%)"},
76
+ "legend": {"orient": "vertical", "right": "10%", "top": "center"},
77
+ "series": [{
78
+ "type": "pie",
79
+ "radius": ["40%", "70%"],
80
+ "data": [
81
+ {"value": 450, "name": "Online"},
82
+ {"value": 320, "name": "Offline"},
83
+ {"value": 180, "name": "Partner"}
84
+ ],
85
+ "label": {"formatter": "{b}\n{d}%"}
86
+ }]
87
+ }
88
+ }
89
+ ```
90
+
91
+ For more chart types (line, scatter, funnel, gauge, radar), see [examples.md](examples.md).
@@ -0,0 +1,16 @@
1
+ # Chart best practices by context
2
+
3
+ Use when the analysis context is clear to pick the right chart and conventions.
4
+
5
+ ## General
6
+
7
+ - [Data patterns](data-patterns.md) — Chart choice by question type (trend, comparison, share, correlation, etc.)
8
+ - [Formatting](formatting.md) — Currency, percent, time, counts; "when in doubt" rules
9
+
10
+ ## By industry
11
+
12
+ - [Sales & retail](sales-retail.md)
13
+ - [Finance & accounting](finance.md)
14
+ - [Marketing & growth](marketing-growth.md)
15
+ - [Operations & supply chain](operations-supply-chain.md)
16
+ - [HR & people](hr-people.md)
@@ -0,0 +1,14 @@
1
+ # Chart choice by data pattern
2
+
3
+ Use when the analysis question is clear but industry is generic. Pick chart by pattern:
4
+
5
+ | Pattern | Typical question | Preferred chart | Notes |
6
+ |--------|-------------------|-----------------|--------|
7
+ | **Trend over time** | How did X change over time? | Line | Use `xAxis.type: "time"` for continuous dates; category for discrete periods (month, quarter). |
8
+ | **Category comparison** | Which category is largest? Rank? | Bar | Horizontal bar if many categories or long labels. |
9
+ | **Part-to-whole** | What is the share of each part? | Pie / donut | Limit to 5–7 segments; combine small slices into "Other" if needed. |
10
+ | **Correlation / distribution** | How do two measures relate? | Scatter | Optional: size or color for a third dimension. |
11
+ | **Conversion / funnel** | How many pass each stage? | Funnel | Sort by stage order; show count and % in tooltip. |
12
+ | **Single KPI vs target** | Are we on track? | Gauge | One value; clear min/max or target bands. |
13
+ | **Two dimensions + value** | How does value vary by two categories? | Heatmap | Use for matrices (e.g. region × product, hour × day). |
14
+ | **Multi-dimensional profile** | How do entities compare on several metrics? | Radar | Same scale per dimension; 2–3 series max. |
@@ -0,0 +1,7 @@
1
+ # Finance & accounting
2
+
3
+ - **P&L / cash flow over time**: Line or stacked bar; use consistent currency and scale.
4
+ - **Expense or revenue breakdown**: Pie or horizontal bar; format as currency.
5
+ - **Variance (actual vs budget)**: Bar with two series (actual, budget) or bar with variance %.
6
+ - **Portfolio or segment weight**: Pie; keep segments readable (aggregate small ones).
7
+ - **Key ratios (e.g. current ratio)**: Gauge or single big number; show benchmark if relevant.
@@ -0,0 +1,14 @@
1
+ # Formatting conventions
2
+
3
+ - **Currency**: Use locale format (e.g. 1,234.56 or 1 234,56); indicate unit in axis title (e.g. "Revenue (CNY)").
4
+ - **Percent**: Show as "X%" in labels/tooltip; ensure sum = 100% for pie if showing share.
5
+ - **Time**: Same granularity and format across the chart (e.g. "Jan 2024" or "2024-Q1"); use `xAxis.type: "time"` for continuous.
6
+ - **Counts**: Prefer integers in labels; use K/M suffix for large numbers (e.g. "1.2M") if needed.
7
+ - **Ranking**: Sort by value (descending unless natural order e.g. funnel); limit to top N (e.g. 10) for clarity.
8
+
9
+ ## When in doubt
10
+
11
+ 1. Match the chart to the **primary question** (trend → line, compare → bar, share → pie, relation → scatter).
12
+ 2. Prefer **fewer series and categories**; aggregate or "Other" instead of cluttering.
13
+ 3. Use **consistent terminology** with the domain (e.g. "Revenue" vs "Sales" as in the data source).
14
+ 4. Add a **short, descriptive title** and axis/label names that a business user would recognize.
@@ -0,0 +1,7 @@
1
+ # HR & people
2
+
3
+ - **Headcount or turnover over time**: Line; stacked area for composition (e.g. by department).
4
+ - **Department or role mix**: Pie or horizontal bar.
5
+ - **Performance vs potential (9-box style)**: Scatter; optional quadrants.
6
+ - **Survey or engagement scores**: Bar (by dimension or question); show scale (e.g. 1–5).
7
+ - **Diversity or composition**: Pie or stacked bar; consistent categories.
@@ -0,0 +1,7 @@
1
+ # Marketing & growth
2
+
3
+ - **Traffic or conversions over time**: Line; multiple series for channels or segments.
4
+ - **Channel attribution / mix**: Pie or stacked bar.
5
+ - **Funnel (visit → signup → pay)**: Funnel; show drop-off and conversion %.
6
+ - **Cohort or retention matrix**: Heatmap (e.g. month × retention week).
7
+ - **Campaign comparison**: Bar (by campaign) or radar (multi-metric).
@@ -0,0 +1,7 @@
1
+ # Operations & supply chain
2
+
3
+ - **Throughput or utilization over time**: Line or bar; add target line if relevant.
4
+ - **Inventory or capacity by location/SKU**: Bar (ranking) or heatmap (location × SKU).
5
+ - **Lead time or cycle time distribution**: Bar (buckets) or line (over time).
6
+ - **Quality / defect rate**: Line over time; gauge for single KPI vs target.
7
+ - **Supplier or lane performance**: Bar or radar (cost, quality, delivery).
@@ -0,0 +1,8 @@
1
+ # Sales & retail
2
+
3
+ - **Revenue / volume over time**: Line; group by region or product with multiple series and legend.
4
+ - **Product or SKU ranking**: Bar (vertical for top N); show value labels on bars.
5
+ - **Channel or segment mix**: Pie or donut; label with share (%) and optionally count.
6
+ - **Sales vs margin / discount**: Scatter (e.g. volume vs margin); size by revenue if needed.
7
+ - **Pipeline or stage conversion**: Funnel; sort descending (top = first stage).
8
+ - **Target attainment**: Gauge (e.g. quota %) or bar (actual vs target by period).
@@ -0,0 +1,80 @@
1
+ # Chart markdown examples
2
+
3
+ Additional examples for line, scatter, funnel, and gauge. Replace sample data with real query or analysis results.
4
+
5
+ ## Line chart (time trend)
6
+
7
+ ```chart
8
+ {
9
+ "table": [["Month", "Revenue"], ["Jan", 120000], ["Feb", 135000], ["Mar", 142000]],
10
+ "echarts": {
11
+ "title": {"text": "Quarterly revenue trend"},
12
+ "tooltip": {"trigger": "axis"},
13
+ "legend": {"data": ["Revenue"]},
14
+ "xAxis": {"type": "category", "data": ["Jan", "Feb", "Mar"], "name": "Month"},
15
+ "yAxis": {"type": "value", "name": "Revenue"},
16
+ "series": [{"name": "Revenue", "type": "line", "data": [120000, 135000, 142000], "smooth": true}]
17
+ }
18
+ }
19
+ ```
20
+
21
+ ## Scatter chart (correlation)
22
+
23
+ ```chart
24
+ {
25
+ "table": [["Sales", "Profit"], [120, 35], [150, 42], [200, 55], [250, 68]],
26
+ "echarts": {
27
+ "title": {"text": "Sales vs profit"},
28
+ "tooltip": {"trigger": "item", "formatter": "Sales: {c0}<br/>Profit: {c1}"},
29
+ "xAxis": {"type": "value", "name": "Sales"},
30
+ "yAxis": {"type": "value", "name": "Profit"},
31
+ "series": [{"type": "scatter", "symbolSize": 12, "data": [[120, 35], [150, 42], [200, 55], [250, 68]]}]
32
+ }
33
+ }
34
+ ```
35
+
36
+ ## Funnel chart (conversion stages)
37
+
38
+ ```chart
39
+ {
40
+ "table": [["Stage", "Count"], ["Visit", 5000], ["Register", 2000], ["Activate", 1500], ["Pay", 600]],
41
+ "echarts": {
42
+ "title": {"text": "Conversion funnel"},
43
+ "tooltip": {"trigger": "item", "formatter": "{b}: {c} ({d}%)"},
44
+ "series": [{
45
+ "type": "funnel",
46
+ "left": "10%",
47
+ "width": "80%",
48
+ "sort": "descending",
49
+ "gap": 4,
50
+ "label": {"show": true, "position": "inside", "formatter": "{b}\n{c}"},
51
+ "data": [
52
+ {"value": 5000, "name": "Visit"},
53
+ {"value": 2000, "name": "Register"},
54
+ {"value": 1500, "name": "Activate"},
55
+ {"value": 600, "name": "Pay"}
56
+ ]
57
+ }]
58
+ }
59
+ }
60
+ ```
61
+
62
+ ## Gauge (single KPI)
63
+
64
+ ```chart
65
+ {
66
+ "table": [["Metric", "Value", "Target"], ["Sales", 850, 1000]],
67
+ "echarts": {
68
+ "title": {"text": "Sales target completion"},
69
+ "series": [{
70
+ "type": "gauge",
71
+ "center": ["50%", "60%"],
72
+ "radius": "90%",
73
+ "axisLine": {"lineStyle": [{"color": [[0.3, "#91c7ae"], [0.7, "#63869e"], [1, "#c23531"]]}]},
74
+ "pointer": {"itemStyle": {"color": "auto"}},
75
+ "detail": {"formatter": "{value}%", "fontSize": 24, "offsetCenter": [0, "70%"]},
76
+ "data": [{"value": 85, "name": "Completion"}]
77
+ }]
78
+ }
79
+ }
80
+ ```
@@ -0,0 +1,268 @@
1
+ ---
2
+ name: financial-analysis
3
+ description: 执行财务数据分析,包括毛利分析、财务报表分析、财务比率分析三大模块。适用于评估企业财务健康状况和盈利能力。
4
+ metadata:
5
+ category: financial_analysis
6
+ parentSkill: business-analytics
7
+ ---
8
+
9
+ ## 分析模块
10
+
11
+ ### 模块一:毛利分析
12
+
13
+ #### 分析维度
14
+ - **产品线维度**:各产品线的毛利率对比
15
+ - **客户维度**:不同客户/客户群的毛利率分析
16
+ - **时间维度**:毛利率趋势变化(月/季/年)
17
+ - **区域维度**:不同销售区域的毛利率对比
18
+
19
+ #### 关键指标
20
+ ```
21
+ 毛利率 = (销售收入 - 销售成本) / 销售收入 × 100%
22
+ 毛利额 = 销售收入 - 销售成本
23
+ 贡献毛利 = 毛利额 - 变动费用
24
+ ```
25
+
26
+ #### 分析流程
27
+
28
+ 1. **数据准备**
29
+ - 收入数据:按产品/客户/区域/时间汇总
30
+ - 成本数据:直接材料、直接人工、制造费用
31
+ - 费用数据:变动费用分摊
32
+
33
+ 2. **计算毛利率**
34
+ - 计算各维度毛利率
35
+ - 识别高/低毛利项目
36
+
37
+ 3. **对比分析**
38
+ - 同比/环比趋势
39
+ - 目标达成率
40
+ - 行业基准对比
41
+
42
+ 4. **贡献分析**
43
+ - 毛利额贡献占比
44
+ - 产品/客户组合分析
45
+ - 交叉补贴分析
46
+
47
+ 5. **输出模板**
48
+
49
+ ```markdown
50
+ ## 毛利分析报告
51
+
52
+ ### 执行摘要
53
+ - 总体毛利率:[X]%,同比[上升/下降][X]个百分点
54
+ - 关键发现:[2-3条核心发现]
55
+ - 核心建议:[2-3条具体建议]
56
+
57
+ ### 产品线毛利率分析
58
+ | 产品线 | 销售收入 | 销售成本 | 毛利额 | 毛利率 | 同比变化 |
59
+ |-------|---------|---------|-------|-------|---------|
60
+ | 产品A | | | | | |
61
+ | 产品B | | | | | |
62
+
63
+ ### 趋势分析
64
+ - 图表:毛利率月度趋势图
65
+ - 分析:[趋势解读]
66
+
67
+ ### 改进建议
68
+ 1. [具体建议1]
69
+ 2. [具体建议2]
70
+ ```
71
+
72
+ ---
73
+
74
+ ### 模块二:财务报表分析
75
+
76
+ #### 报表类型
77
+
78
+ **1. 资产负债表**
79
+ ```
80
+ 资产端:
81
+ - 流动资产:现金、应收账款、存货、预付款项
82
+ - 非流动资产:固定资产、无形资产、长期投资
83
+
84
+ 负债及权益端:
85
+ - 流动负债:短期借款、应付账款、预收款项
86
+ - 非流动负债:长期借款、应付债券
87
+ - 所有者权益:实收资本、留存收益
88
+ ```
89
+
90
+ **2. 利润表(损益表)**
91
+ ```
92
+ 营业收入
93
+ - 营业成本
94
+ = 营业毛利
95
+ - 期间费用(销售/管理/财务费用)
96
+ = 营业利润
97
+ + 营业外收支
98
+ = 利润总额
99
+ - 所得税
100
+ = 净利润
101
+ ```
102
+
103
+ **3. 现金流量表**
104
+ ```
105
+ 经营活动现金流
106
+ 投资活动现金流
107
+ 筹资活动现金流
108
+ = 现金净增加额
109
+ ```
110
+
111
+ #### 分析内容
112
+
113
+ 1. **结构分析**
114
+ - 资产负债结构
115
+ - 收入成本结构
116
+ - 现金流构成
117
+
118
+ 2. **变动分析**
119
+ - 同比变动
120
+ - 环比变动
121
+ - 重大变动说明
122
+
123
+ 3. **异常标注**
124
+ - 超出正常范围的指标
125
+ - 异常波动项
126
+ - 需关注科目
127
+
128
+ #### 输出模板
129
+
130
+ ```markdown
131
+ ## 财务报表分析
132
+
133
+ ### 资产负债表([日期])
134
+ | 项目 | 本期金额 | 上期金额 | 变动额 | 变动率 | 异常标注 |
135
+ |-----|---------|---------|-------|-------|---------|
136
+ | 流动资产 | | | | | |
137
+ | 非流动资产 | | | | | |
138
+ | 资产合计 | | | | | |
139
+
140
+ ### 利润表([期间])
141
+ | 项目 | 本期金额 | 上期金额 | 变动额 | 变动率 | 占比 |
142
+ |-----|---------|---------|-------|-------|-----|
143
+ | 营业收入 | | | | | |
144
+ | 营业成本 | | | | | |
145
+ | 毛利率 | | | | | |
146
+
147
+ ### 关键发现
148
+ - [发现1]
149
+ - [发现2]
150
+ ```
151
+
152
+ ---
153
+
154
+ ### 模块三:财务比率分析
155
+
156
+ #### 盈利能力比率
157
+
158
+ ```
159
+ 销售毛利率 = 毛利 / 营业收入 × 100%
160
+ 销售净利率 = 净利润 / 营业收入 × 100%
161
+ 净资产收益率(ROE) = 净利润 / 平均净资产 × 100%
162
+ 总资产收益率(ROA) = 净利润 / 平均总资产 × 100%
163
+ 投入资本回报率(ROIC) = 税后营业利润 / 投入资本 × 100%
164
+ ```
165
+
166
+ #### 偿债能力比率
167
+
168
+ ```
169
+ 流动比率 = 流动资产 / 流动负债
170
+ 速动比率 = (流动资产 - 存货) / 流动负债
171
+ 资产负债率 = 总负债 / 总资产 × 100%
172
+ 利息保障倍数 = 息税前利润 / 利息费用
173
+ ```
174
+
175
+ #### 运营效率比率
176
+
177
+ ```
178
+ 应收账款周转率 = 营业收入 / 平均应收账款
179
+ 存货周转率 = 营业成本 / 平均存货
180
+ 总资产周转率 = 营业收入 / 平均总资产
181
+ 固定资产周转率 = 营业收入 / 平均固定资产净值
182
+ ```
183
+
184
+ #### 分析流程
185
+
186
+ 1. **计算比率**
187
+ - 基于财务报表数据计算各项比率
188
+ - 按时间序列整理
189
+
190
+ 2. **趋势分析**
191
+ - 绘制比率趋势图
192
+ - 识别上升/下降趋势
193
+
194
+ 3. **对比分析**
195
+ - 与历史数据对比
196
+ - 与行业基准对比
197
+ - 与竞争对手对比
198
+
199
+ 4. **综合评估**
200
+ - 杜邦分析:ROE = 净利率 × 资产周转率 × 权益乘数
201
+ - 识别驱动因素
202
+
203
+ #### 输出模板
204
+
205
+ ```markdown
206
+ ## 财务比率分析报告
207
+
208
+ ### 盈利能力指标
209
+ | 指标 | 本期值 | 上期值 | 行业均值 | 评价 |
210
+ |-----|-------|-------|---------|-----|
211
+ | ROE | | | | |
212
+ | ROA | | | | |
213
+ | 毛利率 | | | | |
214
+
215
+ ### 偿债能力指标
216
+ | 指标 | 本期值 | 安全标准 | 评价 |
217
+ |-----|-------|---------|-----|
218
+ | 流动比率 | | >1.5 | |
219
+ | 资产负债率 | | <60% | |
220
+
221
+ ### 趋势分析
222
+ - 图表:关键比率趋势图
223
+ - 分析:[趋势解读]
224
+
225
+ ### 综合评价
226
+ - 优势:[优势领域]
227
+ - 劣势:[需要改善的领域]
228
+ - 建议:[改进措施]
229
+ ```
230
+
231
+ ---
232
+
233
+ ## 通用分析流程
234
+
235
+ ### 步骤 1:问题理解
236
+ - 明确分析类型(毛利/报表/比率)
237
+ - 确定分析维度(产品/客户/时间/区域)
238
+ - 明确分析期间
239
+
240
+ ### 步骤 2:数据检索
241
+ - 检索收入数据
242
+ - 检索成本数据
243
+ - 检索费用数据
244
+ - 检索资产负债数据
245
+
246
+ ### 步骤 3:计算与对比
247
+ - 计算关键指标
248
+ - 进行同比/环比分析
249
+ - 与目标/行业对比
250
+
251
+ ### 步骤 4:可视化
252
+ - 趋势图:展示时间序列变化
253
+ - 对比图:展示维度间差异
254
+ - 结构图:展示构成比例
255
+
256
+ ### 步骤 5:洞察与建议
257
+ - 识别关键发现
258
+ - 分析原因
259
+ - 提出改进建议
260
+
261
+ ## 常见问题与解决方案
262
+
263
+ | 问题 | 解决方案 |
264
+ |-----|---------|
265
+ | 成本数据不完整 | 与运营部门确认成本归集方法 |
266
+ | 毛利率异常波动 | 检查是否存在一次性收入/成本 |
267
+ | 比率与行业差异大 | 分析业务模式差异 |
268
+ | 数据口径不一致 | 统一数据定义和计算口径 |