-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathskill.json
More file actions
61 lines (61 loc) · 1.5 KB
/
skill.json
File metadata and controls
61 lines (61 loc) · 1.5 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
{
"name": "research-report",
"displayName": "研报助手",
"description": "专业的行业研报撰写工具,帮助分析师从选题到成稿的全流程管理。支持从多个信息源生成选题、搭建研报框架、撰写内容并审阅完善。",
"version": "1.0.0",
"author": "Claude Code",
"category": "productivity",
"tags": ["research", "report", "writing", "analyst"],
"commands": [
{
"name": "topics",
"description": "生成研报选题方向",
"usage": "/report topics --source=twitter,wechat,telegram,search,ai"
},
{
"name": "outline",
"description": "搭建研报框架",
"usage": "/report outline \"选题名称\""
},
{
"name": "write",
"description": "撰写研报内容",
"usage": "/report write"
},
{
"name": "review",
"description": "审阅研报",
"usage": "/report review"
},
{
"name": "status",
"description": "查看项目状态",
"usage": "/report status"
},
{
"name": "help",
"description": "显示帮助信息",
"usage": "/report help"
}
],
"features": [
"多信息源选题生成",
"分阶段研报撰写流程",
"项目状态持久化",
"人工介入机制",
"审阅清单生成"
],
"supportedSources": [
"twitter",
"wechat",
"telegram",
"search",
"ai"
],
"projectDir": "projects",
"config": {
"maxTopics": 20,
"autoSave": true,
"allowHumanIntervention": true
}
}