返回顶部
🇺🇸 English
🇨🇳 简体中文
🇨🇳 繁體中文
🇺🇸 English
🇯🇵 日本語
🇰🇷 한국어
🇫🇷 Français
🇩🇪 Deutsch
🇪🇸 Español
🇷🇺 Русский
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
安全检测
已通过
144
下载量
0
收藏
概述
安装方式
版本历史

cross-disciplinary-bridge-finder

# Cross-Disciplinary Research Collaboration Finder ## When to Use This Skill - identifying collaboration opportunities across fields - finding experts in complementary disciplines - translating methodologies between scientific domains - building interdisciplinary research teams - discovering funding for interdisciplinary projects - mapping knowledge transfer pathways ## Quick Start ```python from scripts.interdisciplinary import CollaborationFinder finder = CollaborationFinder() # Find collaborators in different field collaborators = finder.find_experts( my_expertise="machine_learning", target_field="immunology", collaboration_type="co_authorship", min_publications=10, h_index_threshold=15 ) if not collaborators: print("No collaborators found — try lowering min_publications or h_index_threshold.") else: # Validate quality before proceeding: only consider complementarity_score > 0.7 qualified = [e for e in collaborators if e.complementarity_score > 0.7] print(f"Found {len(collaborators)} candidates; {len(qualified)} meet quality threshold (score > 0.7):") for expert in qualified[:5]: print(f" - {expert.name} ({expert.institution})") print(f" Research: {expert.research_focus}") print(f" Complementarity score: {expert.complementarity_score}") # Identify transferable methods methods = finder.identify_transferable_methods( from_field="physics", to_field="biology", application_area="systems_modeling" ) if not methods: print("No transferable methods found — consider broadening the application_area.") else: # Validate applicability before proceeding: review transfer_potential for method in methods: print(f"Method: {method.name}") print(f" Success in source field: {method.success_rate}") print(f" Application potential: {method.transfer_potential}") if method.transfer_potential < 0.6: print(f" ⚠ Low transfer potential — consider a different application_area.") # Find interdisciplinary funding grants = finder.find_interdisciplinary_funding( fields=["AI", "medicine", "ethics"], funder_types=["NIH", "NSF", "private_foundation"], deadline_within_months=6 ) if not grants: print("No grants found — try extending deadline_within_months or broadening funder_types.") # Generate collaboration proposal outline proposal_outline = finder.generate_collaboration_proposal( partner_expertise="clinical_trial_design", my_expertise="data_science", research_question="precision_medicine" ) ``` ## Command Line Usage ```bash python scripts/main.py --my-field machine_learning --target-field immunology --find-collaborators --output matches.json ``` ## Handling Poor Results - **Empty collaborator list**: Lower `min_publications` or `h_index_threshold`; broaden `collaboration_type`. - **No transferable methods**: Widen `application_area` to a higher-level domain (e.g., `"modeling"` instead of `"systems_modeling"`). - **No funding results**: Extend `deadline_within_months` or add more entries to `funder_types`. - **Weak proposal outline**: Ensure `research_question` is a descriptive string rather than a short keyword. ## References - `references/guide.md` - Comprehensive user guide - `references/examples/` - Working code examples - `references/api-docs/` - Complete API documentation

标签

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

下载 Zip 包

⬇ 下载 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
返回顶部