-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdoc-map.json
More file actions
58 lines (58 loc) · 1.95 KB
/
Copy pathdoc-map.json
File metadata and controls
58 lines (58 loc) · 1.95 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"mappings": [
{
"id": "ast-rules",
"paths": ["ast/**/*.ts"],
"docs": ["docs/DESIGN.md"],
"reason": "AST 规则变更需同步 Harness 设计文档"
},
{
"id": "ci-config",
"paths": ["ci/**/*", ".github/workflows/*.yml", "kimi-code-swarm/package.json"],
"docs": ["docs/DESIGN.md", "docs/FRONTEND.md"],
"reason": "CI/依赖配置变更需同步技术栈说明"
},
{
"id": "frontend-components",
"paths": ["kimi-code-swarm/src/components/*.vue"],
"docs": ["docs/COMPONENT_PATTERNS.md", "docs/FRONTEND.md"],
"reason": "组件变更需同步编码规范"
},
{
"id": "frontend-store",
"paths": ["kimi-code-swarm/src/store/*.ts", "kimi-code-swarm/src/types/*.ts"],
"docs": ["docs/ARCHITECTURE.md"],
"reason": "状态管理/类型变更需同步架构文档"
},
{
"id": "frontend-app",
"paths": ["kimi-code-swarm/src/App.vue", "kimi-code-swarm/src/main.ts"],
"docs": ["docs/ARCHITECTURE.md", "docs/FRONTEND.md"],
"reason": "入口文件变更需同步架构和前端指南"
},
{
"id": "harness-templates",
"paths": ["harness/*.yaml"],
"docs": ["docs/DESIGN.md"],
"reason": "工作流模板变更需同步设计文档"
},
{
"id": "scripts-automation",
"paths": ["scripts/*.ts"],
"docs": ["docs/DESIGN.md"],
"reason": "自动化脚本变更需同步设计文档"
},
{
"id": "constraints",
"paths": ["ast/**/*.ts", "ci/**/*", "eslint.config.mjs", "kimi-code-swarm/package.json"],
"docs": ["docs/CONSTRAINTS.md"],
"reason": "约束体系变更需同步约束文档"
},
{
"id": "agent-engine-core",
"paths": ["agent-engine/src/**/*.ts"],
"docs": ["docs/ARCHITECTURE.md", "docs/STATUS.md", "docs/product-specs/index.md"],
"reason": "Agent Engine 核心逻辑变更需同步架构、功能状态和产品规格"
}
]
}