-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.copilot-mode.json
More file actions
68 lines (68 loc) · 1.77 KB
/
.copilot-mode.json
File metadata and controls
68 lines (68 loc) · 1.77 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
59
60
61
62
63
64
65
66
67
68
{
"mode": "development",
"description": "Copilot 運行模式設定",
"modes": {
"development": {
"enabled_skills": "all",
"memory_bank_sync": true,
"static_analysis_tools": true,
"verbose_logging": true,
"protected_paths": [],
"description": "開發模式:啟用所有技能和工具,完整 Memory Bank 同步"
},
"normal": {
"enabled_skills": [
"literature-review",
"concept-development",
"concept-validation",
"parallel-search",
"project-management",
"draft-writing",
"reference-management",
"word-export"
],
"memory_bank_sync": "minimal",
"static_analysis_tools": false,
"verbose_logging": false,
"protected_paths": [
".claude/",
".github/",
"src/",
"tests/",
"integrations/",
"AGENTS.md",
"CONSTITUTION.md",
"ARCHITECTURE.md",
"pyproject.toml"
],
"description": "一般使用模式:僅啟用研究技能,不修改開發檔案"
},
"research": {
"enabled_skills": [
"literature-review",
"concept-development",
"concept-validation",
"parallel-search",
"project-management",
"draft-writing",
"reference-management",
"word-export"
],
"memory_bank_sync": "project_only",
"static_analysis_tools": false,
"verbose_logging": false,
"protected_paths": [
".claude/",
".github/",
"src/",
"tests/",
"integrations/",
"AGENTS.md",
"CONSTITUTION.md",
"ARCHITECTURE.md",
"pyproject.toml"
],
"description": "研究模式:專注於論文寫作,只同步專案 .memory/"
}
}
}