返回顶部
c

cross-disciplinary-bridge-finder跨学科桥接器

Use when identifying collaboration opportunities across fields, finding experts in complementary disciplines, translating methodologies between scientific domains, or building interdisciplinary research teams. Identifies synergies between scientific disciplines, matches researchers with complementary expertise, and facilitates cross-domain collaborations. Supports interdisciplinary grant applications and innovative research team formation.

作者: admin | 来源: ClawHub
源自
ClawHub
版本
V 0.1.0
安全检测
已通过
154
下载量
免费
免费
0
收藏
概述
安装方式
版本历史

cross-disciplinary-bridge-finder

跨学科研究合作发现器

何时使用此技能

  • - 识别跨领域的合作机会
  • 寻找互补学科的专家
  • 在科学领域间转化方法论
  • 组建跨学科研究团队
  • 发现跨学科项目资助
  • 绘制知识转移路径

快速开始

python
from scripts.interdisciplinary import CollaborationFinder

finder = CollaborationFinder()

在不同领域寻找合作者

collaborators = finder.find_experts( myexpertise=machinelearning, target_field=immunology, collaborationtype=coauthorship, min_publications=10, hindexthreshold=15 )

if not collaborators:
print(未找到合作者——请尝试降低 minpublications 或 hindex_threshold。)
else:
# 在继续前验证质量:仅考虑 complementarity_score > 0.7
qualified = [e for e in collaborators if e.complementarity_score > 0.7]
print(f找到 {len(collaborators)} 位候选人;{len(qualified)} 位达到质量阈值(评分 > 0.7):)
for expert in qualified[:5]:
print(f - {expert.name} ({expert.institution}))
print(f 研究方向:{expert.research_focus})
print(f 互补性评分:{expert.complementarity_score})

识别可转移的方法

methods = finder.identifytransferablemethods( from_field=physics, to_field=biology, applicationarea=systemsmodeling )

if not methods:
print(未找到可转移的方法——请考虑扩大 application_area。)
else:
# 在继续前验证适用性:审查 transfer_potential
for method in methods:
print(f方法:{method.name})
print(f 在源领域的成功率:{method.success_rate})
print(f 应用潜力:{method.transfer_potential})
if method.transfer_potential < 0.6:
print(f ⚠ 转移潜力较低——请考虑不同的 application_area。)

寻找跨学科资助

grants = finder.findinterdisciplinaryfunding( fields=[AI, medicine, ethics], fundertypes=[NIH, NSF, privatefoundation], deadlinewithinmonths=6 )

if not grants:
print(未找到资助——请尝试延长 deadlinewithinmonths 或扩大 funder_types。)

生成合作提案大纲

proposaloutline = finder.generatecollaboration_proposal( partnerexpertise=clinicaltrial_design, myexpertise=datascience, researchquestion=precisionmedicine )

命令行使用

bash
python scripts/main.py --my-field machine_learning --target-field immunology --find-collaborators --output matches.json

处理不佳结果

  • - 合作者列表为空:降低 minpublications 或 hindexthreshold;扩大 collaborationtype。
  • 无可转移方法:将 applicationarea 扩大至更高级别的领域(例如,使用 modeling 替代 systemsmodeling)。
  • 无资助结果:延长 deadlinewithinmonths 或在 fundertypes 中添加更多条目。
  • 提案大纲薄弱:确保 researchquestion 是描述性字符串而非简短关键词。

参考资料

  • - references/guide.md - 综合用户指南
  • references/examples/ - 可运行的代码示例
  • references/api-docs/ - 完整 API 文档

标签

skill ai

通过对话安装

该技能支持在以下平台通过对话安装:

OpenClaw WorkBuddy QClaw Kimi Claude

方式一:安装 SkillHub 和技能

帮我安装 SkillHub 和 cross-disciplinary-bridge-finder-1776162182 技能

方式二:设置 SkillHub 为优先技能安装源

设置 SkillHub 为我的优先技能安装源,然后帮我安装 cross-disciplinary-bridge-finder-1776162182 技能

通过命令行安装

skillhub install cross-disciplinary-bridge-finder-1776162182

下载

⬇ 下载 cross-disciplinary-bridge-finder v0.1.0(免费)

文件大小: 12.73 KB | 发布时间: 2026-4-17 14:32

v0.1.0 最新 2026-4-17 14:32
Initial release of cross-disciplinary-bridge-finder:

- Identifies collaboration opportunities across scientific fields.
- Matches researchers with complementary expertise for interdisciplinary teams.
- Recommends transferable methodologies between domains.
- Helps discover grants supporting multi-field research.
- Generates outlines for collaborative research proposals.
- Includes command line and Python SDK usage examples.

Archiver·手机版·闲社网·闲社论坛·羊毛社区· 多链控股集团有限公司 · 苏ICP备2025199260号-1

Powered by Discuz! X5.0   © 2024-2025 闲社网·线报更新论坛·羊毛分享社区·http://xianshe.com

p2p_official_large
返回顶部