psyclaw 0.30.5 → 0.30.7
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.
- package/README.md +5 -5
- package/dist/src/adapters/pi/extension.js +235 -1
- package/dist/src/adapters/pi/extension.js.map +1 -1
- package/dist/src/ars/pi-panel-executor.js +14 -4
- package/dist/src/ars/pi-panel-executor.js.map +1 -1
- package/dist/src/ars/re-review.js +14 -4
- package/dist/src/ars/re-review.js.map +1 -1
- package/dist/src/index.d.ts +1 -0
- package/dist/src/index.js +1 -0
- package/dist/src/index.js.map +1 -1
- package/dist/src/observability/index.d.ts +8 -2
- package/dist/src/observability/index.js +26 -0
- package/dist/src/observability/index.js.map +1 -1
- package/dist/src/observability/llm.js +11 -4
- package/dist/src/observability/llm.js.map +1 -1
- package/dist/src/observability/node-sdks.d.ts +5 -0
- package/dist/src/observability/node-sdks.js +25 -0
- package/dist/src/observability/node-sdks.js.map +1 -1
- package/dist/src/observability/pi-rpc.d.ts +15 -0
- package/dist/src/observability/pi-rpc.js +48 -0
- package/dist/src/observability/pi-rpc.js.map +1 -0
- package/dist/src/session/help.js +1 -0
- package/dist/src/session/help.js.map +1 -1
- package/dist/src/skills/biosignal-pack.d.ts +23 -0
- package/dist/src/skills/biosignal-pack.js +93 -0
- package/dist/src/skills/biosignal-pack.js.map +1 -0
- package/dist/src/style/cli-ui.js +1 -0
- package/dist/src/style/cli-ui.js.map +1 -1
- package/dist/src/tui/biosignal-wizard.d.ts +43 -0
- package/dist/src/tui/biosignal-wizard.js +149 -0
- package/dist/src/tui/biosignal-wizard.js.map +1 -0
- package/package.json +1 -1
- package/skills/recommended/biosignal-pack.json +63 -0
- package/skills/recommended/catalog.json +179 -50
- package/skills/recommended/mcp-catalog.json +1 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"schemaVersion": "psyclaw/recommended-skills/v1",
|
|
3
|
-
"documentVersion": "0.8.
|
|
3
|
+
"documentVersion": "0.8.5",
|
|
4
4
|
"syncedAt": "2026-09-14",
|
|
5
5
|
"sourceDocument": "学术AI_Skill分享资料.pdf",
|
|
6
6
|
"sourceRef": "local-user-curated",
|
|
@@ -10,68 +10,70 @@
|
|
|
10
10
|
"name": "Mac Computer Use",
|
|
11
11
|
"kind": "skill",
|
|
12
12
|
"stage": "电脑操控",
|
|
13
|
-
"description": "
|
|
13
|
+
"description": "操控无 API 的 macOS 原生应用并留下可复现取证:指定窗口截图(含后台遮挡)、点击输入、探测是否可自动化;内嵌 Chromium 的应用可走 CDP 零焦点操控。适用于必须 GUI 操作且用户已明确授权本机辅助功能/屏幕录制的任务。浏览器内网页操作不属本技能范围。",
|
|
14
14
|
"sourceRef": "https://github.com/alchaincyf/huashu-mac-use",
|
|
15
|
-
"installHint": "
|
|
15
|
+
"installHint": "安装仓库根目录完整 Skill(上游名 huashu-mac-use)。启用前须本机辅助功能与屏幕录制权限,并经用户明确批准。"
|
|
16
16
|
},
|
|
17
17
|
{
|
|
18
18
|
"id": "scientific-visualization",
|
|
19
19
|
"name": "Scientific Visualization",
|
|
20
20
|
"kind": "skill",
|
|
21
21
|
"stage": "科研绘图",
|
|
22
|
-
"description": "
|
|
22
|
+
"description": "K-Dense 科研可视化(v1.2):用 Matplotlib / Seaborn / Plotly 创建并审计真实、可访问、可投稿图稿(多面板、不确定性与缺失展示、对比度、导出规划)。需要 Python 3.11+;Plotly 静态导出可能依赖 Chrome/Chromium + Kaleido。只安装 skills/scientific-visualization,勿整仓克隆。",
|
|
23
23
|
"sourceRef": "https://github.com/K-Dense-AI/scientific-agent-skills",
|
|
24
|
-
"installHint": "只安装仓库中的 skills/scientific-visualization
|
|
24
|
+
"installHint": "只安装仓库中的 skills/scientific-visualization 完整目录(SKILL.md、scripts、assets、references);不要安装整个 scientific-agent-skills。"
|
|
25
25
|
},
|
|
26
26
|
{
|
|
27
27
|
"id": "academic-figure-skill",
|
|
28
28
|
"name": "Academic Figure Skill",
|
|
29
29
|
"kind": "skill",
|
|
30
30
|
"stage": "科研绘图",
|
|
31
|
-
"description": "
|
|
31
|
+
"description": "面向 Nature / Cell / Science 等投稿规范的学术图稿制作、润色、复核与导出。适用于明确要出版级矢量图/图版的场景;不适用于交互仪表盘(Plotly/Bokeh)、无投稿意图的探索图、纯数学函数图或 PPT/Figma 优先流程。安装根目录完整 Skill 包。",
|
|
32
32
|
"sourceRef": "https://github.com/TingxiYu/academic-figure-skill",
|
|
33
|
-
"installHint": "
|
|
33
|
+
"installHint": "安装仓库根目录完整 Skill(SKILL.md、references、assets 与脚本)。"
|
|
34
34
|
},
|
|
35
35
|
{
|
|
36
36
|
"id": "figure-generation",
|
|
37
37
|
"name": "Scientific Figure Generation",
|
|
38
38
|
"kind": "skill",
|
|
39
39
|
"stage": "科研绘图",
|
|
40
|
-
"description": "
|
|
40
|
+
"description": "三阶段科研图生成:查询扩展 → 可执行 matplotlib/seaborn 代码 → VLM 视觉反馈迭代。覆盖柱状图、折线、热图、训练曲线、消融图等。适用于论文/实验报告需要可复现绘图脚本的场景。只安装 skills/figure-generation,勿整仓安装。",
|
|
41
41
|
"sourceRef": "https://github.com/lingzhi227/agent-research-skills",
|
|
42
|
-
"installHint": "只安装仓库中的 skills/figure-generation 完整目录,包含 scripts
|
|
42
|
+
"installHint": "只安装仓库中的 skills/figure-generation 完整目录,包含 scripts 与 references。"
|
|
43
43
|
},
|
|
44
44
|
{
|
|
45
45
|
"id": "beautify-chart",
|
|
46
46
|
"name": "Science Plot Formatter",
|
|
47
47
|
"kind": "skill",
|
|
48
48
|
"stage": "图表美化",
|
|
49
|
-
"description": "
|
|
49
|
+
"description": "在已有 Matplotlib 脚本上按目标会议/期刊版式做紧约束美化:需提供脚本路径、venue 与栏宽占比;先渲染再改、再渲染对照。适用于已有可运行绘图代码、而非从零生成图型。",
|
|
50
50
|
"sourceRef": "https://github.com/preordinary/science-plot-formatter",
|
|
51
|
-
"installHint": "
|
|
51
|
+
"installHint": "优先安装 .codex/skills/beautify-chart;若不存在再采用 .claude/skills/beautify-chart。"
|
|
52
52
|
},
|
|
53
53
|
{
|
|
54
54
|
"id": "zotero-translators",
|
|
55
55
|
"name": "Zotero Translators",
|
|
56
56
|
"kind": "skill",
|
|
57
57
|
"stage": "题录",
|
|
58
|
-
"description": "
|
|
59
|
-
"sourceRef": "https://github.com/zotero/translators"
|
|
58
|
+
"description": "Zotero 官方 translators 仓库:从网页抓取规范题录字段的翻译器集合(不是单一 PsyClaw 叶子 Skill)。适用于开发/调试网站翻译器或理解题录抓取规则;日常入库仍依赖本机 Zotero。仓库另含 .agent/skills/* 供翻译器开发,勿误当作全文检索技能。",
|
|
59
|
+
"sourceRef": "https://github.com/zotero/translators",
|
|
60
|
+
"installHint": "本条目不是可一键启用的单文件 SKILL。若只需翻译器:按 Zotero 文档使用本仓库。若开发翻译器:参考仓库 .agent/skills/(如 develop-web-translator)。不要把整个 translators 树当 PsyClaw Skill 目录安装。"
|
|
60
61
|
},
|
|
61
62
|
{
|
|
62
63
|
"id": "scansci-pdf",
|
|
63
64
|
"name": "ScanSci PDF",
|
|
64
65
|
"kind": "skill",
|
|
65
66
|
"stage": "全文获取",
|
|
66
|
-
"description": "
|
|
67
|
-
"sourceRef": "https://github.com/Rimagination/scansci-pdf"
|
|
67
|
+
"description": "学术文献检索、DOI/arXiv 校验、题录导出与经配置的开放获取/出版社/机构授权渠道取全文。适用于已有标识或清单、需合法补齐 PDF 与组织文献列表的场景;不得绕过付费墙或未经授权复用他人会话。",
|
|
68
|
+
"sourceRef": "https://github.com/Rimagination/scansci-pdf",
|
|
69
|
+
"installHint": "只安装仓库中的 skills/scansci-pdf 完整目录(含 SKILL.md 与配套脚本);不要整仓当单一 Skill 混装。"
|
|
68
70
|
},
|
|
69
71
|
{
|
|
70
72
|
"id": "paper2local",
|
|
71
73
|
"name": "paper2local",
|
|
72
74
|
"kind": "skill",
|
|
73
75
|
"stage": "全文获取",
|
|
74
|
-
"description": "
|
|
76
|
+
"description": "把用户已选定的 DOI、URL、arXiv id 或直链 PDF 下载到本地目录(PsyClaw 默认 literature/pdfs),并报告路径与哈希。轻量落盘专用:不做 Zotero 写入、不做 MinerU/OCR、不做发现与筛选流水线;付费墙无法简单 HTTP 获取时请用户本地放置或另授浏览器会话。",
|
|
75
77
|
"sourceRef": "https://github.com/Exekiel179/paper2local",
|
|
76
78
|
"installHint": "安装仓库根目录完整 Skill(SKILL.md + scripts/)。不要安装 Timisic/paper2zotero-skill 全量依赖栈。"
|
|
77
79
|
},
|
|
@@ -80,50 +82,59 @@
|
|
|
80
82
|
"name": "ScholarBridge",
|
|
81
83
|
"kind": "skill",
|
|
82
84
|
"stage": "文献质控",
|
|
83
|
-
"description": "
|
|
84
|
-
"sourceRef": "https://github.com/LHT666-hub/ScholarBridge"
|
|
85
|
+
"description": "批量发现、下载、核验并归档学术 PDF,再交接 Zotero:支持 DOI/PMCID/arXiv/PDF URL/BibTeX/RIS/CSV 等;优先 CORE、Unpaywall、arXiv、PMC、Europe PMC、OpenAlex、DOAJ 等合法开放全文,也可为知网/万方/维普等生成用户授权的可见浏览器下载队列,接管下载目录、校验 PDF、去重并生成入库任务。输出须可核验。",
|
|
86
|
+
"sourceRef": "https://github.com/LHT666-hub/ScholarBridge",
|
|
87
|
+
"installHint": "安装仓库根目录完整 Skill(SKILL.md 及配套脚本/配置说明)。"
|
|
85
88
|
},
|
|
86
89
|
{
|
|
87
90
|
"id": "mentorforge",
|
|
88
91
|
"name": "MentorForge",
|
|
89
92
|
"kind": "skill",
|
|
90
93
|
"stage": "方法蒸馏",
|
|
91
|
-
"description": "
|
|
92
|
-
"sourceRef": "https://github.com/qwqalice/MentorForge"
|
|
94
|
+
"description": "把真实学者/导师/实验室的公开论文、主页、报告与访谈蒸馏为有证据依据的「赛博导师」镜头 Skill。适用于希望按某研究者方法路径追问的场景;蒸馏结果须可回溯来源,禁止无依据人格化断言。",
|
|
95
|
+
"sourceRef": "https://github.com/qwqalice/MentorForge",
|
|
96
|
+
"installHint": "只安装仓库中的 research-mentor-distiller/ 完整目录(含 SKILL.md);不要默认安装整仓其他内容。"
|
|
93
97
|
},
|
|
94
98
|
{
|
|
95
99
|
"id": "supervisor-skills",
|
|
96
100
|
"name": "Supervisor-Skills",
|
|
97
101
|
"kind": "skill",
|
|
98
102
|
"stage": "研究写作",
|
|
99
|
-
"description": "
|
|
100
|
-
"sourceRef": "https://github.com/HKUSTDial/Supervisor-Skills"
|
|
103
|
+
"description": "港科大 Dial 实验室「科研副导师」技能套件:含 idea 评估、深研、写作/润色、图表、预投稿审阅、rebuttal 等子技能。适用于端到端导师式辅导;请按任务选用子目录,勿把整套当成单一叶子。",
|
|
104
|
+
"sourceRef": "https://github.com/HKUSTDial/Supervisor-Skills",
|
|
105
|
+
"installHint": "这是多 Skill 套件:安装仓库 skills/ 下所需子目录(各含 SKILL.md),或按用户明确要求安装整套 skills/;保留相对结构,执行 /reload。",
|
|
106
|
+
"skillLayout": "collection"
|
|
101
107
|
},
|
|
102
108
|
{
|
|
103
109
|
"id": "academic-reference-matcher",
|
|
104
110
|
"name": "Academic Reference Matcher",
|
|
105
111
|
"kind": "skill",
|
|
106
112
|
"stage": "引用核验",
|
|
107
|
-
"description": "
|
|
108
|
-
"sourceRef": "https://github.com/keros68/academic-reference-matcher"
|
|
113
|
+
"description": "针对用户提供的学术正文、既有引用或书目:做 Claim–来源匹配、引用支持核验、替换与常见格式整理。适用于投稿前核对、审稿回应;不适用于开放式「随便找文献」或一般事实核查。无法核验标 uncertain。",
|
|
114
|
+
"sourceRef": "https://github.com/keros68/academic-reference-matcher",
|
|
115
|
+
"installHint": "安装仓库根目录完整 Skill(SKILL.md 及配套文件)。"
|
|
109
116
|
},
|
|
110
117
|
{
|
|
111
118
|
"id": "journal-frontier-radar",
|
|
112
119
|
"name": "Journal Frontier Radar",
|
|
113
120
|
"kind": "skill",
|
|
114
121
|
"stage": "文献前沿",
|
|
115
|
-
"description": "
|
|
122
|
+
"description": "对用户选定期刊在固定窗口(1/2/3/6 个月或 1/2 年)做可追溯前沿分析:枚举近期文章、主题与关键词、对照领域前沿并提炼未解决问题。依赖 Kimi WebBridge;须先 status 确认 extension_connected。",
|
|
116
123
|
"sourceRef": "https://github.com/kingfly51/journal-frontier-radar",
|
|
117
|
-
"prerequisites": [
|
|
118
|
-
|
|
119
|
-
|
|
124
|
+
"prerequisites": [
|
|
125
|
+
"kimi-webbridge"
|
|
126
|
+
],
|
|
127
|
+
"requiresExternalTools": [
|
|
128
|
+
"kimi-webbridge"
|
|
129
|
+
],
|
|
130
|
+
"installHint": "安装仓库中的 skills/journal-frontier-radar 完整目录。启用前须先安装推荐外部工具 Kimi WebBridge,并用 `kimi-webbridge status` 确认 extension_connected: true;不要把本机 Downloads 解压扩展当 PsyClaw Plugin 安装。"
|
|
120
131
|
},
|
|
121
132
|
{
|
|
122
133
|
"id": "manuscript-statistical-forensics",
|
|
123
134
|
"name": "Manuscript Statistical Forensics",
|
|
124
135
|
"kind": "skill",
|
|
125
136
|
"stage": "统计审查",
|
|
126
|
-
"description": "
|
|
137
|
+
"description": "对必填论文 PDF(可选审稿材料与原始数据)做数值一致性、统计/方法问题与可疑模式筛查,服务研究诚信与投稿前后自查。单一异常不得直接判定学术不端;必须提供可读取 PDF。",
|
|
127
138
|
"sourceRef": "https://github.com/kingfly51/manuscript-statistical-forensics",
|
|
128
139
|
"installHint": "安装仓库根目录的 SKILL.md 及配套文件;使用时必须提供可读取的论文 PDF。"
|
|
129
140
|
},
|
|
@@ -132,78 +143,189 @@
|
|
|
132
143
|
"name": "Excel Research Data",
|
|
133
144
|
"kind": "skill",
|
|
134
145
|
"stage": "数据与文档",
|
|
135
|
-
"description": "
|
|
136
|
-
"sourceRef": "https://github.com/alchaincyf/huashu-excel"
|
|
146
|
+
"description": "表格数据全流程:脏表体检、清洗、定口径、算指标、对账、出报告(Excel/CSV/系统导出)。核心是让数字经得起追问;统计推断仍应委托成熟库或受信任 MCP。幻灯片/PPT 不属本技能。",
|
|
147
|
+
"sourceRef": "https://github.com/alchaincyf/huashu-excel",
|
|
148
|
+
"installHint": "安装仓库根目录完整 Skill(SKILL.md 及配套脚本)。"
|
|
137
149
|
},
|
|
138
150
|
{
|
|
139
151
|
"id": "huashu-md-html",
|
|
140
152
|
"name": "Markdown Publishing",
|
|
141
153
|
"kind": "skill",
|
|
142
154
|
"stage": "数据与文档",
|
|
143
|
-
"description": "
|
|
144
|
-
"sourceRef": "https://github.com/alchaincyf/huashu-md-html"
|
|
155
|
+
"description": "md/html/docx/pdf/epub 多向流水线:任意文件或 URL 转干净 Markdown,再导出出版级 HTML/DOCX/PDF/EPUB;含模板与设计师模式。适用于「md 生产、多端消费」;不负责新生成配图或单纯截图压缩。",
|
|
156
|
+
"sourceRef": "https://github.com/alchaincyf/huashu-md-html",
|
|
157
|
+
"installHint": "安装仓库根目录完整 Skill(SKILL.md 及配套脚本/模板)。"
|
|
145
158
|
},
|
|
146
159
|
{
|
|
147
160
|
"id": "huashu-report",
|
|
148
161
|
"name": "Research Report Pipeline",
|
|
149
162
|
"kind": "skill",
|
|
150
163
|
"stage": "研究与写作",
|
|
151
|
-
"description": "
|
|
152
|
-
"sourceRef": "https://github.com/alchaincyf/huashu-report"
|
|
164
|
+
"description": "机构级研究报告与学术文稿流水线(行业报告、白皮书、调研、数据洞察、arXiv 向论文,含 16:9 咨询 deck)。定结构、写发现、建图表视觉系统;单篇随笔或纯演示 PPT 不适用。Claim 与数值须可回溯。",
|
|
165
|
+
"sourceRef": "https://github.com/alchaincyf/huashu-report",
|
|
166
|
+
"installHint": "安装仓库根目录完整 Skill(SKILL.md 及配套脚本)。"
|
|
153
167
|
},
|
|
154
168
|
{
|
|
155
169
|
"id": "distill-scholar",
|
|
156
170
|
"name": "Distill Scholar",
|
|
157
171
|
"kind": "skill",
|
|
158
172
|
"stage": "方法蒸馏",
|
|
159
|
-
"description": "
|
|
173
|
+
"description": "PsyClaw Distill · 学者蒸馏:把学者/学派公开著作与言论提炼为可运行方法学镜头(心智模型、启发式、表达 DNA、反模式、诚实边界)。非数字分身、非治疗。只安装 distill-scholar/。",
|
|
160
174
|
"sourceRef": "https://github.com/Exekiel179/distill-skills",
|
|
161
|
-
"installHint": "
|
|
175
|
+
"installHint": "只安装仓库中的 distill-scholar/ 目录(SKILL.md + references)。"
|
|
162
176
|
},
|
|
163
177
|
{
|
|
164
178
|
"id": "distill-journal",
|
|
165
179
|
"name": "Distill Journal",
|
|
166
180
|
"kind": "skill",
|
|
167
181
|
"stage": "方法蒸馏",
|
|
168
|
-
"description": "
|
|
182
|
+
"description": "PsyClaw Distill · 期刊/文体风格蒸馏:从本地论文提炼某刊或某类文体的结构、语气、必检项与禁写项。硬门槛:本地至少 3 篇目标全文(建议 8–12 篇,覆盖类型与年份)。只安装 distill-journal/。",
|
|
169
183
|
"sourceRef": "https://github.com/Exekiel179/distill-skills",
|
|
170
|
-
"installHint": "
|
|
184
|
+
"installHint": "只安装 distill-journal/。蒸馏前在 literature/pdfs 或用户指定路径准备 ≥3 篇目标 venue 全文。"
|
|
171
185
|
},
|
|
172
186
|
{
|
|
173
187
|
"id": "psytrainer-ml",
|
|
174
188
|
"name": "PsyTrainer ML",
|
|
175
189
|
"kind": "skill",
|
|
176
190
|
"stage": "机器学习",
|
|
177
|
-
"description": "
|
|
191
|
+
"description": "检查特征/标签 CSV,配置 PsyTrainer 分类或回归,训练防泄漏表格 Pipeline(支持 group/time 划分),预测并导出实测图与 Word 报告。须 runtime.json 中 ready:true;优先 scripts/pipeline_train.py。禁止用留出集结果选模型/特征。",
|
|
178
192
|
"sourceRef": "https://github.com/Exekiel179/psytrainer-ml-skill",
|
|
179
|
-
"installHint": "
|
|
193
|
+
"installHint": "克隆仓库到目标目录后,安装阶段用 scripts/install_runtime(macOS/Linux: `python3 scripts/install_runtime.py --wheel <PsyTrainer.whl>`;Windows: install_runtime.cmd/ps1)创建 .venv 并写 runtime.json;任务中禁止再 pip install。保留 vendor/;不要嵌套进 psyclaw 源码树。"
|
|
180
194
|
},
|
|
181
195
|
{
|
|
182
196
|
"id": "literature-review",
|
|
183
197
|
"name": "Literature Review",
|
|
184
198
|
"kind": "skill",
|
|
185
199
|
"stage": "文献综述",
|
|
186
|
-
"description": "K-Dense
|
|
200
|
+
"description": "K-Dense 系统文献综述(v1.8):跨 PubMed、arXiv、bioRxiv、Semantic Scholar 等做系统综述/合成检索,产出可追溯 markdown/PDF 结构。适用于系统综述、荟萃准备或全面检索;探索性「随便找几篇」请用 paper-lookup。只安装 skills/literature-review,勿整仓安装。",
|
|
187
201
|
"sourceRef": "https://github.com/K-Dense-AI/scientific-agent-skills",
|
|
188
|
-
"installHint": "只安装仓库中的 skills/literature-review
|
|
202
|
+
"installHint": "只安装仓库中的 skills/literature-review 完整目录(SKILL.md、scripts、assets、references);不要安装整个仓库。"
|
|
203
|
+
},
|
|
204
|
+
{
|
|
205
|
+
"id": "paper-lookup",
|
|
206
|
+
"name": "Paper Lookup",
|
|
207
|
+
"kind": "skill",
|
|
208
|
+
"stage": "文献检索",
|
|
209
|
+
"description": "K-Dense 学术文献检索(v2.2):经 PubMed、Europe PMC、OpenAlex、Crossref、Semantic Scholar、arXiv/bioRxiv/medRxiv、Unpaywall 等约 18 个公开学术 API,做可复现的论文/DOI/PMID/预印本/开放获取与引用查询。适用于「找论文、查 DOI、要摘要/OA PDF、看谁引用了这篇」等定向检索;脚本仅用 Python 标准库,无强制凭据(可选 NCBI/S2/CORE/OpenAlex key 提高限额)。只安装 skills/paper-lookup;无法核验的结果标 uncertain,勿整仓安装。",
|
|
210
|
+
"sourceRef": "https://github.com/K-Dense-AI/scientific-agent-skills",
|
|
211
|
+
"installHint": "只安装仓库中的 skills/paper-lookup 完整目录,包含其 SKILL.md、scripts、assets 与 references;不要安装整个仓库。优先用捆绑脚本调用 API;可选环境变量 NCBI_API_KEY、S2_API_KEY、CORE_API_KEY、OPENALEX_API_KEY 仅用于提高限额,不是硬性准入。"
|
|
189
212
|
},
|
|
190
213
|
{
|
|
191
214
|
"id": "research-lookup",
|
|
192
215
|
"name": "Research Lookup",
|
|
193
216
|
"kind": "skill",
|
|
194
|
-
"stage": "
|
|
195
|
-
"description": "K-Dense
|
|
217
|
+
"stage": "文稿证据包",
|
|
218
|
+
"description": "K-Dense 手稿证据编译(v1.5):默认经 Parallel Search/Extract 汇编约 60 条可核验参考文献,产出 packet、evidence-matrix、claim-source-map 等结构化证据包。适用于已明确要为文稿系统搜集背景/对立证据的场景,而非轻量「查几篇论文」。需 parallel-cli(建议 parallel-web-tools[cli]==0.7.1)与 Parallel 鉴权(CLI login 或 PARALLEL_API_KEY);可选 OPENROUTER_API_KEY 仅作显式 Perplexity 回退。日常检索请优先 paper-lookup;系统综述协议请用 literature-review。只安装 skills/research-lookup,勿整仓安装。",
|
|
196
219
|
"sourceRef": "https://github.com/K-Dense-AI/scientific-agent-skills",
|
|
197
|
-
"installHint": "只安装仓库中的 skills/research-lookup 完整目录,包含其 SKILL.md、scripts、assets 与 references
|
|
220
|
+
"installHint": "只安装仓库中的 skills/research-lookup 完整目录,包含其 SKILL.md、scripts、assets 与 references;不要安装整个仓库。启用前建议 `uv tool install \"parallel-web-tools[cli]==0.7.1\"` 并完成 `parallel-cli login`(或配置 PARALLEL_API_KEY);不要在命令行参数中打印密钥。"
|
|
198
221
|
},
|
|
199
222
|
{
|
|
200
223
|
"id": "scientific-writing",
|
|
201
224
|
"name": "Scientific Writing",
|
|
202
225
|
"kind": "skill",
|
|
203
226
|
"stage": "科学写作",
|
|
204
|
-
"description": "K-Dense
|
|
227
|
+
"description": "K-Dense 科学写作(v2.1):起草/修订/审计手稿或报告,强调证据 provenance、报告规范覆盖、作者责任、保密与本地一致性检查。适用于已有结果材料、需要可追溯成稿的场景;数值与引用须可回溯。只安装 skills/scientific-writing。",
|
|
228
|
+
"sourceRef": "https://github.com/K-Dense-AI/scientific-agent-skills",
|
|
229
|
+
"installHint": "只安装仓库中的 skills/scientific-writing 完整目录(SKILL.md、scripts、assets、references);不要安装整个仓库。"
|
|
230
|
+
},
|
|
231
|
+
{
|
|
232
|
+
"id": "mne-analyst",
|
|
233
|
+
"name": "MNE Analyst",
|
|
234
|
+
"kind": "skill",
|
|
235
|
+
"stage": "生理信号",
|
|
236
|
+
"description": "经 MNE-MCP 分析人类神经生理数据(EEG/MEG/sEEG/ECoG/fNIRS):加载、预处理、ICA、epoch、ERP/频谱/时频/源定位等会话态流水线。通常与 mne-mcp 及 mne-mcp-guard 一并启用。只安装 skills/mne-analyst。",
|
|
237
|
+
"sourceRef": "https://github.com/Exekiel179/MNE-MCP",
|
|
238
|
+
"installHint": "只安装 MNE-MCP 仓库中的 skills/mne-analyst 完整目录;建议同时启用 mne-mcp 与 mne-mcp-guard。"
|
|
239
|
+
},
|
|
240
|
+
{
|
|
241
|
+
"id": "mne-mcp-guard",
|
|
242
|
+
"name": "MNE MCP Guard",
|
|
243
|
+
"kind": "skill",
|
|
244
|
+
"stage": "生理信号",
|
|
245
|
+
"description": "MNE-MCP 护栏:在 EEG/MEG/iEEG 流水线出错前拦截常见失败(单位、参考、滤波、坏道、会话态误用等),并在失败时辅助诊断。只安装 skills/mne-mcp-guard。",
|
|
246
|
+
"sourceRef": "https://github.com/Exekiel179/MNE-MCP",
|
|
247
|
+
"installHint": "只安装仓库中的 skills/mne-mcp-guard 完整目录。"
|
|
248
|
+
},
|
|
249
|
+
{
|
|
250
|
+
"id": "mne-methodology-critic",
|
|
251
|
+
"name": "MNE Methodology Critic",
|
|
252
|
+
"kind": "skill",
|
|
253
|
+
"stage": "生理信号",
|
|
254
|
+
"description": "对经 MNE 完成或拟定的 EEG/MEG/fNIRS 分析做怀疑性方法学审查:统计假设、多重比较、探索/确证边界与可解释过度。只安装 skills/mne-methodology-critic。",
|
|
255
|
+
"sourceRef": "https://github.com/Exekiel179/MNE-MCP",
|
|
256
|
+
"installHint": "只安装仓库中的 skills/mne-methodology-critic 完整目录。"
|
|
257
|
+
},
|
|
258
|
+
{
|
|
259
|
+
"id": "mne-preprocess",
|
|
260
|
+
"name": "MNE Preprocess",
|
|
261
|
+
"kind": "skill",
|
|
262
|
+
"stage": "生理信号",
|
|
263
|
+
"description": "MNE 预处理分册:滤波(FIR/IIR)、陷波、重采样、重参考、坏道与基础质检。只安装 skills/mne-preprocess。",
|
|
264
|
+
"sourceRef": "https://github.com/Exekiel179/MNE-MCP",
|
|
265
|
+
"installHint": "只安装仓库中的 skills/mne-preprocess 完整目录。"
|
|
266
|
+
},
|
|
267
|
+
{
|
|
268
|
+
"id": "mne-artifacts",
|
|
269
|
+
"name": "MNE Artifacts",
|
|
270
|
+
"kind": "skill",
|
|
271
|
+
"stage": "生理信号",
|
|
272
|
+
"description": "MNE 伪迹分册:ICA/SSP/autoreject 与眼电回归等,处理眼动、心电、肌电与线噪。只安装 skills/mne-artifacts。",
|
|
273
|
+
"sourceRef": "https://github.com/Exekiel179/MNE-MCP",
|
|
274
|
+
"installHint": "只安装仓库中的 skills/mne-artifacts 完整目录。"
|
|
275
|
+
},
|
|
276
|
+
{
|
|
277
|
+
"id": "mne-erp",
|
|
278
|
+
"name": "MNE ERP",
|
|
279
|
+
"kind": "skill",
|
|
280
|
+
"stage": "生理信号",
|
|
281
|
+
"description": "MNE ERP/ERF 分册:事件、epoch、条件平均、差分波、峰/平均波幅与潜伏期等。只安装 skills/mne-erp。",
|
|
282
|
+
"sourceRef": "https://github.com/Exekiel179/MNE-MCP",
|
|
283
|
+
"installHint": "只安装仓库中的 skills/mne-erp 完整目录。"
|
|
284
|
+
},
|
|
285
|
+
{
|
|
286
|
+
"id": "mne-spectral",
|
|
287
|
+
"name": "MNE Spectral",
|
|
288
|
+
"kind": "skill",
|
|
289
|
+
"stage": "生理信号",
|
|
290
|
+
"description": "MNE 频谱分册:Welch/多窗 PSD、频带功率、谱斜率与 1/f(specparam 等)。只安装 skills/mne-spectral。",
|
|
291
|
+
"sourceRef": "https://github.com/Exekiel179/MNE-MCP",
|
|
292
|
+
"installHint": "只安装仓库中的 skills/mne-spectral 完整目录。"
|
|
293
|
+
},
|
|
294
|
+
{
|
|
295
|
+
"id": "mne-timefreq",
|
|
296
|
+
"name": "MNE Time-Frequency",
|
|
297
|
+
"kind": "skill",
|
|
298
|
+
"stage": "生理信号",
|
|
299
|
+
"description": "MNE 时频分册:Morlet/多窗/Stockwell、ERSP、ITC、诱发 vs 诱导功率等。只安装 skills/mne-timefreq。",
|
|
300
|
+
"sourceRef": "https://github.com/Exekiel179/MNE-MCP",
|
|
301
|
+
"installHint": "只安装仓库中的 skills/mne-timefreq 完整目录。"
|
|
302
|
+
},
|
|
303
|
+
{
|
|
304
|
+
"id": "mne-source",
|
|
305
|
+
"name": "MNE Source",
|
|
306
|
+
"kind": "skill",
|
|
307
|
+
"stage": "生理信号",
|
|
308
|
+
"description": "MNE 源定位分册:噪声协方差、正向模型、最小范数/波束形成等源空间分析。只安装 skills/mne-source。",
|
|
309
|
+
"sourceRef": "https://github.com/Exekiel179/MNE-MCP",
|
|
310
|
+
"installHint": "只安装仓库中的 skills/mne-source 完整目录。"
|
|
311
|
+
},
|
|
312
|
+
{
|
|
313
|
+
"id": "neurokit2",
|
|
314
|
+
"name": "NeuroKit2",
|
|
315
|
+
"kind": "skill",
|
|
316
|
+
"stage": "生理信号",
|
|
317
|
+
"description": "K-Dense NeuroKit2(v1.2):外周生理时序预处理、事件/间期、多模态对齐、变异性与复杂度工作流(钉选 NeuroKit2 0.2.13 思路)。适用于 ECG/PPG/HRV 等,而非 EEG/MEG 主流程;不可用于临床诊断。只安装 skills/neurokit2。",
|
|
318
|
+
"sourceRef": "https://github.com/K-Dense-AI/scientific-agent-skills",
|
|
319
|
+
"installHint": "只安装仓库中的 skills/neurokit2 完整目录(SKILL.md、scripts、assets、references);不要安装整个仓库。"
|
|
320
|
+
},
|
|
321
|
+
{
|
|
322
|
+
"id": "bids",
|
|
323
|
+
"name": "BIDS",
|
|
324
|
+
"kind": "skill",
|
|
325
|
+
"stage": "生理信号",
|
|
326
|
+
"description": "K-Dense BIDS(v1.1):组织与核验脑影像/生理等 BIDS 数据集(MRI、EEG、MEG、iEEG、PET、NIRS、行为等)。适用于入库、共享与结构校验。只安装 skills/bids。",
|
|
205
327
|
"sourceRef": "https://github.com/K-Dense-AI/scientific-agent-skills",
|
|
206
|
-
"installHint": "只安装仓库中的 skills/
|
|
328
|
+
"installHint": "只安装仓库中的 skills/bids 完整目录(SKILL.md、scripts、assets、references);不要安装整个仓库。"
|
|
207
329
|
}
|
|
208
330
|
],
|
|
209
331
|
"plugins": [
|
|
@@ -239,7 +361,7 @@
|
|
|
239
361
|
"name": "K-Dense Scientific Agent Skills",
|
|
240
362
|
"kind": "plugin",
|
|
241
363
|
"stage": "科学技能库",
|
|
242
|
-
"description": "K-Dense scientific-agent-skills 是约 160+ 科研叶子技能的 monorepo Hub。PsyClaw
|
|
364
|
+
"description": "K-Dense scientific-agent-skills 是约 160+ 科研叶子技能的 monorepo Hub。PsyClaw 默认只推荐已策展叶子(scientific-visualization、paper-lookup、literature-review、research-lookup、scientific-writing、neurokit2、bids 等),请按叶子 installHint 安装 skills/<id>。不要默认安装整棵仓库;整套 Plugin 须用户显式要求。",
|
|
243
365
|
"sourceRef": "https://github.com/K-Dense-AI/scientific-agent-skills",
|
|
244
366
|
"installHint": "警告:不要默认 git clone / 安装整个仓库。优先按 catalog 中各叶子条目的 installHint,只安装 skills/<id> 对应目录。仅当用户明确要求启用整套 K-Dense 套件时,才可按 Plugin 方式安装完整仓库,并先阅读 README。"
|
|
245
367
|
}
|
|
@@ -299,7 +421,14 @@
|
|
|
299
421
|
"skillName": "psytrainer-ml",
|
|
300
422
|
"license": "MIT",
|
|
301
423
|
"target": ".psyclaw/imports/recommended/psytrainer-ml",
|
|
302
|
-
"dependencies": [
|
|
424
|
+
"dependencies": [
|
|
425
|
+
"Python 3.10+ (Windows: py launcher)",
|
|
426
|
+
"scripts/install_runtime.py|.ps1|.cmd",
|
|
427
|
+
"PsyTrainer wheel via --wheel or PSYTRAINER_WHEEL",
|
|
428
|
+
"pandas",
|
|
429
|
+
"numpy",
|
|
430
|
+
"joblib"
|
|
431
|
+
],
|
|
303
432
|
"status": "review-required",
|
|
304
433
|
"requiresApproval": true,
|
|
305
434
|
"blockedReason": "After clone, run install_runtime (py/ps1/cmd) with the PsyTrainer wheel at install time on the target OS; prediction still requires trusted local model.pkl paths."
|
|
@@ -118,7 +118,7 @@
|
|
|
118
118
|
"id": "mne-mcp",
|
|
119
119
|
"name": "MNE MCP",
|
|
120
120
|
"stage": "神经生理",
|
|
121
|
-
"description": "为 EEG、MEG、iEEG 等 MNE-Python
|
|
121
|
+
"description": "为 EEG、MEG、iEEG、fNIRS 等 MNE-Python 分析提供受控工具;也可经 /biosignal 能力包与配套 Skill 一并安装配置。",
|
|
122
122
|
"sourceRef": "https://github.com/Exekiel179/MNE-MCP",
|
|
123
123
|
"transport": "stdio",
|
|
124
124
|
"risk": "local-data-and-compute",
|