@michael-joseph-miller/ant-bot 0.1.0

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 (60) hide show
  1. package/CHANGELOG.md +40 -0
  2. package/LICENSE +21 -0
  3. package/README.md +267 -0
  4. package/dist/browser-OHRD7YI3.js +524 -0
  5. package/dist/browser-OHRD7YI3.js.map +7 -0
  6. package/dist/bundled-46DUK5PG.js +133 -0
  7. package/dist/bundled-46DUK5PG.js.map +7 -0
  8. package/dist/chunk-7BOHBPB2.js +287 -0
  9. package/dist/chunk-7BOHBPB2.js.map +7 -0
  10. package/dist/chunk-AHAON6J7.js +24 -0
  11. package/dist/chunk-AHAON6J7.js.map +7 -0
  12. package/dist/chunk-DYIJTUMY.js +321 -0
  13. package/dist/chunk-DYIJTUMY.js.map +7 -0
  14. package/dist/chunk-KSQOVWP5.js +310 -0
  15. package/dist/chunk-KSQOVWP5.js.map +7 -0
  16. package/dist/chunk-Z2YT2PZN.js +64 -0
  17. package/dist/chunk-Z2YT2PZN.js.map +7 -0
  18. package/dist/index.js +1562 -0
  19. package/dist/index.js.map +7 -0
  20. package/dist/install-IY2M3OUQ.js +36 -0
  21. package/dist/install-IY2M3OUQ.js.map +7 -0
  22. package/dist/plugin-POMHVGD4.js +53 -0
  23. package/dist/plugin-POMHVGD4.js.map +7 -0
  24. package/dist/scheduler-Q7OHNGP6.js +274 -0
  25. package/dist/scheduler-Q7OHNGP6.js.map +7 -0
  26. package/dist/server.js +3016 -0
  27. package/dist/server.js.map +7 -0
  28. package/dist/skills-66WRX64H.js +17 -0
  29. package/dist/skills-66WRX64H.js.map +7 -0
  30. package/dist/skills-spec.js +172 -0
  31. package/dist/skills-spec.js.map +7 -0
  32. package/dist/tools-P5537ASX.js +148 -0
  33. package/dist/tools-P5537ASX.js.map +7 -0
  34. package/package.json +51 -0
  35. package/skills/README.md +69 -0
  36. package/skills/SPEC.md +274 -0
  37. package/skills/bug-repro/SKILL.md +53 -0
  38. package/skills/deep-research/SKILL.md +451 -0
  39. package/skills/deep-research/references/V6_1_improvements.md +112 -0
  40. package/skills/deep-research/references/completeness_review_checklist.md +25 -0
  41. package/skills/deep-research/references/counter_review_team_guide.md +181 -0
  42. package/skills/deep-research/references/enterprise_analysis_frameworks.md +135 -0
  43. package/skills/deep-research/references/enterprise_mode.md +99 -0
  44. package/skills/deep-research/references/enterprise_quality_checklist.md +160 -0
  45. package/skills/deep-research/references/enterprise_research_methodology.md +164 -0
  46. package/skills/deep-research/references/formatting_rules.md +31 -0
  47. package/skills/deep-research/references/quality_gates.md +77 -0
  48. package/skills/deep-research/references/report_template_v6.md +82 -0
  49. package/skills/deep-research/references/research_notes_format.md +147 -0
  50. package/skills/deep-research/references/research_plan_checklist.md +26 -0
  51. package/skills/deep-research/references/research_report_template.md +49 -0
  52. package/skills/deep-research/references/source_accessibility_policy.md +179 -0
  53. package/skills/deep-research/references/source_quality_rubric.md +28 -0
  54. package/skills/deep-research/references/subagent_prompt.md +116 -0
  55. package/skills/inbox-digest/SKILL.md +51 -0
  56. package/skills/skill-author/SKILL.md +92 -0
  57. package/skills/weekly-report/SKILL.md +49 -0
  58. package/web/dist/assets/index-BLQ8rPiN.js +130 -0
  59. package/web/dist/assets/index-IEIkG_jd.css +2 -0
  60. package/web/dist/index.html +13 -0
@@ -0,0 +1,181 @@
1
+ # Counter-Review Team 使用指南
2
+
3
+ Deep Research V6 P6 阶段的专用 Agent Team,并行执行多维度审查。
4
+
5
+ ## Team 架构
6
+
7
+ ```
8
+ counter-review-coordinator (协调者)
9
+ ├── claim-validator (声明验证器)
10
+ ├── source-diversity-checker (来源多样性检查器)
11
+ ├── recency-validator (时效性验证器)
12
+ └── contradiction-finder (矛盾发现器)
13
+ ```
14
+
15
+ ## Agent 职责
16
+
17
+ | Agent | 职责 | 输出 |
18
+ |-------|------|------|
19
+ | **claim-validator** | 验证声明准确性,识别无证据/弱证据声明 | Claim Validation Report |
20
+ | **source-diversity-checker** | 检查单一来源依赖,source-type 分布 | Source Diversity Report |
21
+ | **recency-validator** | 验证时敏声明的新鲜度,AS_OF 合规 | Recency Validation Report |
22
+ | **contradiction-finder** | 发现内部矛盾,缺失的反向观点 | Contradiction and Bias Report |
23
+ | **counter-review-coordinator** | 整合所有报告,生成最终 P6 报告 | P6 Counter-Review Report |
24
+
25
+ ## 使用流程
26
+
27
+ ### 1. 准备输入材料
28
+
29
+ 在 P5 (Draft) 完成后,收集以下材料:
30
+
31
+ ```
32
+ inputs/
33
+ ├── draft_report.md # P5 起草的报告
34
+ ├── citation_registry.md # P3 的引用注册表
35
+ ├── task-notes/
36
+ │ ├── task-a.md # 子代理研究笔记
37
+ │ ├── task-b.md
38
+ │ └── ...
39
+ └── p0_config.md # P0 配置 (AS_OF 日期, Mode 等)
40
+ ```
41
+
42
+ ### 2. 并行分发任务
43
+
44
+ 向 4 个 specialist agent 同时发送任务:
45
+
46
+ ```bash
47
+ # 向 claim-validator 发送
48
+ SendMessage to: claim-validator
49
+ 输入: draft_report.md + citation_registry.md + task-notes/
50
+ 指令: 验证所有声明的证据支持
51
+
52
+ # 向 source-diversity-checker 发送
53
+ SendMessage to: source-diversity-checker
54
+ 输入: draft_report.md + citation_registry.md
55
+ 指令: 检查来源多样性和单一来源依赖
56
+
57
+ # 向 recency-validator 发送
58
+ SendMessage to: recency-validator
59
+ 输入: draft_report.md + citation_registry.md + p0_config.md
60
+ 指令: 验证时敏声明的新鲜度
61
+
62
+ # 向 contradiction-finder 发送
63
+ SendMessage to: contradiction-finder
64
+ 输入: draft_report.md + task-notes/ + citation_registry.md
65
+ 指令: 发现矛盾和缺失的反向观点
66
+ ```
67
+
68
+ ### 3. 协调汇总
69
+
70
+ 等待 4 个 specialist 完成后,发送给 coordinator:
71
+
72
+ ```bash
73
+ SendMessage to: counter-review-coordinator
74
+ 输入:
75
+ - Claim Validation Report
76
+ - Source Diversity Report
77
+ - Recency Validation Report
78
+ - Contradiction and Bias Report
79
+ 指令: 整合所有报告,生成最终 P6 Counter-Review Report
80
+ ```
81
+
82
+ ### 4. 获取最终输出
83
+
84
+ Coordinator 输出包含:
85
+ - 问题汇总(必须 ≥3 个)
86
+ - 关键争议部分(可直接复制到最终报告)
87
+ - 强制修复清单
88
+ - 质量门状态
89
+
90
+ ## 质量门要求
91
+
92
+ | 检查项 | 标准模式 | 轻量模式 | 失败处理 |
93
+ |--------|---------|---------|---------|
94
+ | 发现问题数 | ≥3 | ≥3 | 重新审查 |
95
+ | 关键声明单来源 | 0 | 0 | 补充来源或降级 |
96
+ | 官方来源占比 | ≥30% | ≥20% | 补充官方来源 |
97
+ | AS_OF 日期完整 | 100% | 100% | 补充日期 |
98
+ | 核心争议文档化 | 必填 | 必填 | 补充争议部分 |
99
+
100
+ ## 输出示例
101
+
102
+ ### Coordinator 最终报告结构
103
+
104
+ ```markdown
105
+ # P6 Counter-Review Report
106
+
107
+ ## Executive Summary
108
+ - Total issues found: 7 (critical: 2, high: 3, medium: 2)
109
+ - Must-fix before publish: 2
110
+ - Recommended improvements: 5
111
+
112
+ ## Critical Issues (Block Publish)
113
+ | # | Issue | Location | Source | Fix Required |
114
+ |---|-------|----------|--------|--------------|
115
+ | 1 | 市场份额声明无来源 | 3.2节 | 无 | 补充来源或删除 |
116
+ | 2 | 单一社区来源支持收入数据 | 4.1节 | [12] community | 找官方来源替代 |
117
+
118
+ ## 核心争议 / Key Controversies
119
+
120
+ - **争议 1:** 公司声称增长 50% vs 分析师报告增长 30%
121
+ - 证据强度: official(公司财报) vs academic(第三方研究)
122
+ - 建议: 并列呈现两种数据,说明差异原因
123
+
124
+ ## Mandatory Fixes Checklist
125
+ - [ ] 补充 3.2 节市场份额来源
126
+ - [ ] 替换 4.1 节收入数据来源
127
+ - [ ] 添加 AS_OF: 2026-04-03 到所有时敏声明
128
+
129
+ ## Quality Gates Status
130
+ | Gate | Status | Notes |
131
+ |------|--------|-------|
132
+ | P6 ≥3 issues found | ✅ | 发现 7 个问题 |
133
+ | No critical claim single-sourced | ❌ | 2 个问题待修复 |
134
+ | AS_OF dates present | ❌ | 3 处缺失 |
135
+ | Counter-claims documented | ✅ | 已添加 |
136
+ ```
137
+
138
+ ## 集成到 SKILL.md 工作流
139
+
140
+ 在 SKILL.md 的 P6 阶段,添加以下指令:
141
+
142
+ ```markdown
143
+ ## P6: Counter-Review (Mandatory)
144
+
145
+ **使用 Counter-Review Team 执行并行审查:**
146
+
147
+ 1. **准备材料**: draft_report.md, citation_registry.md, task-notes/, p0_config.md
148
+ 2. **并行分发**: 同时发送给 4 个 specialist agent
149
+ 3. **等待完成**: 收集 4 份 specialist 报告
150
+ 4. **协调汇总**: 发送给 coordinator 生成最终 P6 报告
151
+ 5. **强制执行**: 所有 Critical 问题必须在 P7 前修复
152
+ 6. **输出**: 将"核心争议"部分复制到最终报告
153
+
154
+ **Report**: `[P6 complete] {N} issues found: {critical} critical, {high} high, {medium} medium.`
155
+ ```
156
+
157
+ ## 团队管理
158
+
159
+ ### 查看团队状态
160
+ ```bash
161
+ cat ~/.claude/teams/counter-review-team/config.json
162
+ ```
163
+
164
+ ### 向 Agent 发送消息
165
+ ```bash
166
+ SendMessage to: claim-validator
167
+ message: 开始审查任务,输入文件在 ./review-inputs/
168
+ ```
169
+
170
+ ### 关闭团队
171
+ ```bash
172
+ SendMessage to: "*"
173
+ message: {"type": "shutdown_request", "reason": "任务完成"}
174
+ ```
175
+
176
+ ## 注意事项
177
+
178
+ 1. **必须发现 ≥3 个问题** - 如果 coordinator 报告 <3 个问题,需要重新审查
179
+ 2. **Critical 问题必须修复** - 才能进入 P7
180
+ 3. **保留所有审查记录** - 作为研究方法论的一部分
181
+ 4. **中文输入中文输出** - 所有 agent 支持中英文双语
@@ -0,0 +1,135 @@
1
+ # Enterprise Analysis Frameworks
2
+
3
+ Apply these frameworks after completing the six-dimension data collection. Execute in order: SWOT → Competitive Barriers → Risk Matrix → Comprehensive Scoring.
4
+
5
+ ## SWOT Analysis Template
6
+
7
+ Each SWOT entry MUST include evidence and source attribution.
8
+
9
+ ```
10
+ | | Positive Factors | Negative Factors |
11
+ |--------------|-----------------------------------|-----------------------------------|
12
+ | **Internal** | **S (Strengths)** | **W (Weaknesses)** |
13
+ | | 1. {description} | 1. {description} |
14
+ | | • Evidence: {data/fact} | • Evidence: {data/fact} |
15
+ | | • Source: {citation} | • Source: {citation} |
16
+ | | • Impact: {assessment} | • Impact: {assessment} |
17
+ | | | |
18
+ | **External** | **O (Opportunities)** | **T (Threats)** |
19
+ | | 1. {description} | 1. {description} |
20
+ | | • Evidence: {trend/policy} | • Evidence: {pressure/risk} |
21
+ | | • Source: {citation} | • Source: {citation} |
22
+ | | • Probability: {assessment} | • Probability: {assessment} |
23
+ | | • Impact: {assessment} | • Impact: {assessment} |
24
+ ```
25
+
26
+ **Requirements**:
27
+ - Each quadrant: 3-5 entries minimum
28
+ - Every entry must have evidence with source
29
+ - S/W must be data-backed (not opinions)
30
+ - O/T must include probability and impact estimates
31
+
32
+ **Strategic Implications Matrix** (generate after SWOT):
33
+ - **SO Strategy** (leverage strengths to capture opportunities): 1-2 specific recommendations
34
+ - **WO Strategy** (overcome weaknesses to seize opportunities): 1-2 specific recommendations
35
+ - **ST Strategy** (use strengths to counter threats): 1-2 specific recommendations
36
+ - **WT Strategy** (mitigate weaknesses to avoid threats): 1-2 specific recommendations
37
+
38
+ ## Competitive Barrier Quantification Framework
39
+
40
+ 7 barrier dimensions with weighted scoring:
41
+
42
+ | Dimension | Weight | Strong | Moderate | Weak |
43
+ |-----------|--------|--------|----------|------|
44
+ | **Network Effects** | 20% | 4.5 — Clear network effects (social platforms, marketplaces) | 3.0 — Exists but replaceable | 1.5 — Minimal network effects |
45
+ | **Scale Economies** | 15% | 4.0 — Unit cost drops 30%+ with scale | 2.5 — Cost drops 10-30% | 1.0 — Cost drops <10% |
46
+ | **Brand Value** | 15% | 4.0 — Category leader, high pricing power | 2.5 — Known brand, competitive | 1.0 — Commodity brand, price-sensitive |
47
+ | **Technology/Patents** | 15% | 4.0 — Core patents, hard to circumvent | 2.5 — Some patent protection | 1.0 — Peripheral patents only |
48
+ | **Switching Costs** | 15% | 4.0 — High lock-in (data, ecosystem) | 2.5 — Moderate switching friction | 1.0 — Low switching cost |
49
+ | **Regulatory Licenses** | 10% | 3.5 — Heavy regulation, hard to obtain | 2.0 — Standard regulatory requirements | 0.5 — Light regulation |
50
+ | **Data Assets** | 10% | 3.5 — Massive proprietary high-quality data | 2.0 — Some data accumulation | 0.5 — Limited or public data |
51
+
52
+ **Scoring**: Total = Σ(dimension score × weight)
53
+
54
+ **Rating Scale**:
55
+ | Score | Rating | Interpretation |
56
+ |-------|--------|---------------|
57
+ | ≥3.5 | A+ | Exceptional moat |
58
+ | ≥2.8 | A | Strong moat |
59
+ | ≥2.0 | B+ | Good moat |
60
+ | ≥1.5 | B | Moderate moat |
61
+ | ≥1.0 | C+ | Limited moat |
62
+ | <1.0 | C | Weak moat |
63
+
64
+ **Output format**: Present a scorecard table with each dimension's strength rating, raw score, justification (with evidence), and the weighted total with final rating.
65
+
66
+ ## Risk Matrix Framework
67
+
68
+ Assess 8 mandatory risk categories:
69
+
70
+ ### Risk Assessment Scales
71
+
72
+ **Probability**:
73
+ | Level | Range | Score |
74
+ |-------|-------|-------|
75
+ | High | >70% | 0.7-1.0 |
76
+ | Medium | 30-70% | 0.3-0.7 |
77
+ | Low | <30% | 0.0-0.3 |
78
+
79
+ **Impact**:
80
+ | Level | Description | Score |
81
+ |-------|-------------|-------|
82
+ | High | >30% revenue impact | 3 |
83
+ | Medium | 10-30% revenue impact | 2 |
84
+ | Low | <10% revenue impact | 1 |
85
+
86
+ **Risk Level**: Risk Value = Probability Score × Impact Score
87
+ | Color | Level | Threshold |
88
+ |-------|-------|-----------|
89
+ | Red | High risk | ≥2.5 |
90
+ | Yellow | Medium risk | 1.0 – 2.5 |
91
+ | Green | Low risk | <1.0 |
92
+
93
+ ### 8 Mandatory Risk Categories
94
+
95
+ | # | Category | Typical Triggers |
96
+ |---|----------|-----------------|
97
+ | 1 | Market risk | Industry slowdown, demand shifts |
98
+ | 2 | Competitive risk | New entrants, incumbents pivoting |
99
+ | 3 | Technology risk | Tech obsolescence, disruption |
100
+ | 4 | Regulatory risk | Policy tightening, compliance cost |
101
+ | 5 | Financial risk | Cash flow stress, debt levels |
102
+ | 6 | Operational risk | Key talent loss, supply chain |
103
+ | 7 | Talent risk | Brain drain, recruiting difficulty |
104
+ | 8 | Geopolitical risk | Trade friction, data localization |
105
+
106
+ ### Risk Table Format
107
+
108
+ | Category | Specific Risk | Probability | Impact | Risk Value | Level | Evidence/Triggers | Current Mitigations | Recommended Actions |
109
+ |----------|--------------|-------------|--------|------------|-------|-------------------|--------------------|--------------------|
110
+
111
+ **Requirements**:
112
+ - All 8 categories must be assessed (no skipping)
113
+ - Each risk entry must cite specific evidence or triggers
114
+ - Provide current mitigations AND recommended actions
115
+ - High risks: require immediate action plans
116
+ - Medium risks: require monitoring plans
117
+ - Low risks: require periodic review schedule
118
+
119
+ ## Comprehensive Scoring (Final Section)
120
+
121
+ After completing SWOT, barriers, and risk matrix, generate a comprehensive scorecard:
122
+
123
+ ```
124
+ | Dimension | Score | Weight | Weighted | Key Evidence |
125
+ |-----------|-------|--------|----------|-------------|
126
+ | Business Quality | X/10 | 25% | | |
127
+ | Competitive Position | X/10 | 20% | | |
128
+ | Financial Health | X/10 | 20% | | |
129
+ | Growth Potential | X/10 | 15% | | |
130
+ | Risk Profile | X/10 | 10% | | |
131
+ | Management Quality | X/10 | 10% | | |
132
+ | **Total** | | 100% | **X/10** | |
133
+ ```
134
+
135
+ Every score must reference specific evidence from the six-dimension data collection.
@@ -0,0 +1,99 @@
1
+ # Enterprise Research Mode (Specialized Pipeline)
2
+
3
+ Load this only when the topic is a specific company/corporation. It overlays the general
4
+ P0-P7 pipeline in SKILL.md — it does not replace it. Everything not restated here (source
5
+ governance, AS_OF policy, citation registry, counter-review, formatting) still applies.
6
+
7
+ ## Workflow overview
8
+
9
+ ```
10
+ Enterprise Research Progress:
11
+ - [ ] E1: Intake — confirm company entity, research depth, format contract
12
+ - [ ] E2: Six-dimension data collection (parallel where possible)
13
+ - [ ] D1: Company fundamentals (entity, founding, funding, ownership)
14
+ - [ ] D2: Business & products (segments, products, revenue structure)
15
+ - [ ] D3: Competitive position (industry rank, competitors, barriers)
16
+ - [ ] D4: Financial & operations (3-year financials, efficiency metrics)
17
+ - [ ] D5: Recent developments (6-month events, strategic signals)
18
+ - [ ] D6: Internal/proprietary sources (or note limitation)
19
+ - [ ] E3: Structured analysis frameworks
20
+ - [ ] SWOT analysis (evidence-backed, 4 quadrants × 3-5 entries)
21
+ - [ ] Competitive barrier quantification (7 dimensions, weighted score)
22
+ - [ ] Risk matrix (8 categories, probability × impact)
23
+ - [ ] Comprehensive scorecard (6 dimensions, weighted total)
24
+ - [ ] E4: L1/L2/L3 quality checks at each stage transition
25
+ - [ ] E5: Draft report using 7-chapter enterprise template
26
+ - [ ] E6: Multi-pass drafting + UNION merge (same as general Step 6-7)
27
+ - [ ] E7: Present draft for human review and iterate
28
+ ```
29
+
30
+ ## E1: Intake
31
+
32
+ Same as P0/P1 in SKILL.md, plus:
33
+ - Confirm the exact legal entity being researched (parent vs subsidiary)
34
+ - Select research depth: Quick scan (3-5 pages) / Standard (10-20 pages) / Deep (20-40 pages)
35
+ - Identify any specific comparison targets (benchmark companies)
36
+
37
+ ## E2: Six-dimension collection
38
+
39
+ The P1 task board maps to the six dimensions:
40
+
41
+ - Task A: Company fundamentals (entity, founding, funding, ownership)
42
+ - Task B: Business & products (segments, products, revenue structure)
43
+ - Task C: Competitive position (industry rank, competitors, barriers)
44
+ - Task D: Financial & operations (3-year financials, efficiency metrics)
45
+ - Task E: Recent developments (6-month events, strategic signals)
46
+ - Task F: Internal/proprietary sources (or document limitation)
47
+
48
+ Follow [enterprise_research_methodology.md](enterprise_research_methodology.md) for:
49
+ - Detailed collection workflow per dimension (query strategies, data fields, validation)
50
+ - Data source priority matrix (P0-P3 ranking)
51
+ - Cross-validation rules (min sources, max deviation thresholds)
52
+
53
+ **Key principles**:
54
+ - Evidence-driven: every conclusion must trace to a citable source
55
+ - Multi-source validation: key data requires ≥2 independent sources
56
+ - Restrained judgment: mark speculation explicitly, avoid unsubstantiated claims
57
+ - Structured presentation: complex information via tables, lists, hierarchies
58
+
59
+ Run the L1 quality check after completing each dimension (see
60
+ [enterprise_quality_checklist.md](enterprise_quality_checklist.md)).
61
+
62
+ ## E3: Structured analysis frameworks
63
+
64
+ Apply frameworks from [enterprise_analysis_frameworks.md](enterprise_analysis_frameworks.md)
65
+ in order:
66
+
67
+ 1. **SWOT analysis** — each entry with evidence + source + impact assessment
68
+ 2. **Competitive barrier quantification** — 7 dimensions with weighted scoring → A+/A/B+/B/C+/C rating
69
+ 3. **Risk matrix** — 8 mandatory categories, probability × impact → Red/Yellow/Green
70
+ 4. **Comprehensive scorecard** — 6-dimension weighted total → X/10
71
+
72
+ Run the L2 quality check after analysis is complete.
73
+
74
+ ## E4: Quality control
75
+
76
+ Three-level checks from [enterprise_quality_checklist.md](enterprise_quality_checklist.md):
77
+
78
+ - **L1 (Data)**: Source count, attribution, cross-validation, timeliness
79
+ - **L2 (Analysis)**: SWOT completeness, risk coverage, barrier scoring, conclusion support
80
+ - **L3 (Document)**: Structure compliance, format consistency, readability, appendices
81
+
82
+ ## E5: Draft using the enterprise template
83
+
84
+ Use the 7-chapter enterprise report template from
85
+ [enterprise_quality_checklist.md](enterprise_quality_checklist.md):
86
+
87
+ 1. Company Overview
88
+ 2. Business & Product Structure
89
+ 3. Market & Competitive Position
90
+ 4. Financial & Operations Analysis
91
+ 5. Risks & Concerns
92
+ 6. Recent Developments
93
+ 7. Comprehensive Assessment & Conclusion
94
+
95
+ Plus appendices: Data Source Index, Glossary, Disclaimer.
96
+
97
+ ## E6-E7: Multi-pass drafting and review
98
+
99
+ Same as P4-P7 in SKILL.md.
@@ -0,0 +1,160 @@
1
+ # Enterprise Research Quality Checklist
2
+
3
+ Three-level quality control executed at each stage transition.
4
+
5
+ ## L1: Data Collection Quality (after each dimension)
6
+
7
+ ### Per-Dimension Checks
8
+
9
+ | Check Item | Standard | Method | Pass Condition |
10
+ |-----------|----------|--------|---------------|
11
+ | Source count | Key data points ≥2 sources | Count source annotations | ≥90% compliance |
12
+ | Source attribution | All data has source marked | Check citations in draft | ≥95% completeness |
13
+ | Cross-validation pass rate | Data deviation ≤10% | Compare multi-source data | ≥95% validation pass |
14
+ | Timeliness | Financial: ≤2 years; News: ≤6 months | Check timestamps | 100% compliance |
15
+
16
+ **Result handling**: All pass → proceed. Partial fail → supplement sources. Critical fail → re-collect dimension.
17
+
18
+ ### Dimension-Specific Checklists
19
+
20
+ **D1 Company Fundamentals** (target: 11/11):
21
+ - [ ] Legal entity boundaries clarified
22
+ - [ ] Founding date with month/year
23
+ - [ ] Headquarters city identified
24
+ - [ ] Founder/CEO confirmed (≥2 sources)
25
+ - [ ] Employee count with year
26
+ - [ ] Listing status (exchange, ticker)
27
+ - [ ] Latest valuation/market cap with date
28
+ - [ ] Core business one-liner
29
+ - [ ] Funding history ≥3 rounds
30
+ - [ ] ≥5 milestone events in timeline
31
+ - [ ] Ownership structure: controller identified
32
+
33
+ **D2 Business & Products** (target: 7/7):
34
+ - [ ] ≥3 business segments identified
35
+ - [ ] Revenue share per segment
36
+ - [ ] ≥3 core products analyzed
37
+ - [ ] User metrics (DAU/MAU) with numbers
38
+ - [ ] Monetization model per product
39
+ - [ ] Revenue breakdown (segment/geography/customer)
40
+ - [ ] Growth/decline trend per segment
41
+
42
+ **D3 Competitive Position** (target: 7/7):
43
+ - [ ] Industry clearly defined
44
+ - [ ] Market size quantified
45
+ - [ ] Company rank established
46
+ - [ ] Market share with number
47
+ - [ ] ≥3 competitors identified
48
+ - [ ] Multi-dimension comparison table complete
49
+ - [ ] ≥5 barrier dimensions assessed with scores
50
+
51
+ **D4 Financial & Operations** (target: 9/9):
52
+ - [ ] Revenue: 3-year data
53
+ - [ ] Net income: 3-year data
54
+ - [ ] Gross margin: 3-year data
55
+ - [ ] Net margin: 3-year data
56
+ - [ ] Operating cash flow: 3-year data
57
+ - [ ] R&D expense: 3-year data
58
+ - [ ] Key financial data cross-validated (≥2 sources)
59
+ - [ ] Metric definitions consistent across years
60
+ - [ ] ≥3 efficiency metrics (ROE/ROA/etc.)
61
+
62
+ **D5 Recent Developments** (target: 5/5):
63
+ - [ ] ≥5 recent events (within 6 months)
64
+ - [ ] Events span ≥3 event types
65
+ - [ ] Each event has impact assessment
66
+ - [ ] ≥2 strategic direction signals identified
67
+ - [ ] Most recent event within 1 month
68
+
69
+ **D6 Internal/Proprietary** (target: 2/2):
70
+ - [ ] Internal knowledge base queried (or limitation noted)
71
+ - [ ] Internal document search executed (or limitation noted)
72
+
73
+ ## L2: Analysis Quality (after analysis frameworks applied)
74
+
75
+ | Check Item | Standard | Method | Pass Condition |
76
+ |-----------|----------|--------|---------------|
77
+ | SWOT completeness | Each quadrant ≥3 entries | Entry count | Full coverage |
78
+ | SWOT evidence | Every entry has data backing | Check "Evidence" fields | 100% evidenced |
79
+ | Risk matrix coverage | All 8 categories assessed | Category checklist | 100% covered |
80
+ | Barrier quantification | All 7 dimensions scored | Check scorecard completeness | 100% scored |
81
+ | Conclusion support | All conclusions trace to evidence | Trace each conclusion | 100% supported |
82
+
83
+ **Result handling**: All pass → proceed to writing. Partial fail → supplement analysis evidence. Critical fail → re-execute analysis framework.
84
+
85
+ ## L3: Document Quality (after report drafted)
86
+
87
+ | Check Item | Standard | Method | Pass Condition |
88
+ |-----------|----------|--------|---------------|
89
+ | Structure compliance | Follows 7-chapter template | Compare against template | ≥95% compliance |
90
+ | Table format consistency | All tables uniformly formatted | Visual inspection | 100% uniform |
91
+ | Readability | Paragraphs ≤450 chars; ≥3 parallel items use lists | Paragraph length check | ≥95% compliance |
92
+ | Data annotation | All data has source + year | Citation audit | 100% complete |
93
+ | Appendix completeness | Includes source index + glossary | Content check | 100% complete |
94
+
95
+ **Result handling**: All pass → deliver. Partial fail → format optimization. Critical fail → regenerate document.
96
+
97
+ ## Enterprise Report Structure (7 Chapters)
98
+
99
+ ```
100
+ # {Company Name} Research Report
101
+
102
+ > Executive Summary: {1-2 sentence core conclusion}
103
+
104
+ ---
105
+
106
+ ## 1. Company Overview
107
+ ### 1.1 Basic Information (table)
108
+ ### 1.2 Development Timeline
109
+ ### 1.3 Funding History (table)
110
+ ### 1.4 Ownership Structure & Control
111
+ ### 1.5 Core Management Team (table)
112
+
113
+ ## 2. Business & Product Structure
114
+ ### 2.1 Business Landscape Overview
115
+ ### 2.2 Core Product Matrix (table)
116
+ ### 2.3 Revenue Structure Analysis
117
+ ### 2.4 Business Development Trends
118
+
119
+ ## 3. Market & Competitive Position
120
+ ### 3.1 Industry Position Analysis
121
+ ### 3.2 Competitive Comparison (table)
122
+ ### 3.3 Competitive Barrier Assessment (scorecard)
123
+
124
+ ## 4. Financial & Operations Analysis
125
+ ### 4.1 Key Financial Metrics (3-year comparison table)
126
+ ### 4.2 Operating Efficiency Assessment
127
+ ### 4.3 Financial Health Summary
128
+
129
+ ## 5. Risks & Concerns
130
+ ### 5.1 Risk Matrix Analysis (8-category table)
131
+ ### 5.2 Key Risk Deep-Dives
132
+ ### 5.3 Risk Mitigation Recommendations
133
+
134
+ ## 6. Recent Developments
135
+ ### 6.1 Major Recent Events (table)
136
+ ### 6.2 Strategic Signal Interpretation
137
+
138
+ ## 7. Comprehensive Assessment & Conclusion
139
+ ### 7.1 SWOT Summary
140
+ ### 7.2 Comprehensive Scorecard
141
+ ### 7.3 Core Conclusions & Outlook
142
+
143
+ ---
144
+
145
+ ## Appendices
146
+ ### A. Data Source Index
147
+ ### B. Glossary
148
+ ### C. Disclaimer
149
+ ```
150
+
151
+ ## Quality Control Four Dimensions
152
+
153
+ Apply throughout all stages:
154
+
155
+ | Dimension | Focus | Key Checks |
156
+ |-----------|-------|------------|
157
+ | **Accuracy** | Data correctness | Source attribution, fact verification, cross-validation, error tolerance |
158
+ | **Completeness** | Information coverage | Dimension coverage, key element presence, conclusion support, risk coverage |
159
+ | **Timeliness** | Data currency | Data freshness, trend capture, signal detection, dynamic updates |
160
+ | **Consistency** | Uniform standards | Metric definitions aligned, format unified, style consistent, terminology standardized |