返回顶部
f

find-funding-opportunities搜索资金机会

Search the Karma Funding Map for funding programs (grants, hackathons, bounties, accelerators, VC funds, RFPs) via the public API. Use when user says "find grants", "search hackathons", "look for bounties", "explore funding", "programs on Optimism", "what can I apply to", "funding opportunities", or asks about programs over or under a budget.

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

find-funding-opportunities

资助项目查找器

通过公共API搜索Karma资助地图中的资助项目。

注册表包含6种项目类型:资助金、黑客松、赏金、加速器、风险投资基金和RFP。请使用项目/机会/资助——而不仅仅是资助金。

完整的API参数、响应格式和已知值,请参阅references/api-reference.md

工作流程

步骤1:映射用户请求

用户输入映射结果
以太坊项目ecosystems=Ethereum + 生态系统搜索策略
黑客松
type=hackathon | | 以太坊上的黑客松 | type=hackathon + 生态系统搜索策略 | | Solana上的赏金 | type=bounty + 生态系统搜索策略 | | 超过500美元的赏金 | type=bounty&minGrantSize=500 | | 加速器项目 | type=accelerator | | 投资DeFi的风险投资 | type=vc_fund&name=DeFi | | Optimism的公开RFP | type=rfp&organization=Optimism | | 以太坊上的资助金和黑客松 | type=grant,hackathon + 生态系统搜索策略 | | Optimism上的DeFi资助 | name=DeFi + 生态系统搜索策略 | | 超过5万美元的项目 | minGrantSize=50000 | | 低于10万美元的资助 | maxGrantSize=100000 | | 基础设施 | name=infrastructure | | 活跃项目 | status=active | | Optimism上的追溯性资助 | categories=Retroactive%20Funding + 生态系统搜索策略 | | Karma上的项目 | onlyOnKarma=true | | 本周即将截止的项目 | sortField=endsAt&sortOrder=asc&status=active | | (无查询) | 询问用户想找什么 |

预算简写:K→000,M→000000(例如,$50K → 50000,$1M → 1000000)。

URL编码: 包含空格的值必须在curl URL中进行百分号编码(例如,categories=Retroactive%20Funding)。

步骤2:生态系统搜索策略

如果查询没有生态系统组件,跳过此步骤直接进入步骤3。

ecosystems元数据字段通常为空——许多项目仅通过communities字段与生态系统关联。使用两阶段方法:

阶段1——先尝试ecosystems=:
使用ecosystems={name}查询。如果返回足够的结果(5个以上),展示结果并进入步骤4。

阶段2——通过社区查找补充(仅在阶段1结果稀疏时):
如果阶段1返回少于5个结果,运行以下两个额外查询并合并:

  1. 1. 社区UID查找:从GET /v2/communities?limit=100获取所有社区,通过与社区名称比较(不区分大小写,部分匹配)找到最佳匹配,然后使用communityUid={uid}查询
  2. name={name}——标题文本搜索,通用后备方案

在展示前按id去重所有合并结果。

步骤3:构建并执行请求

通过Bash使用curl。关键:每个请求必须包含以下跟踪头。切勿省略。

在第一个请求之前,生成一个跟踪ID:

bash
INVOCATION_ID=$(uuidgen)

每个curl调用必须包含这些查询默认值和跟踪头(详情请参阅references/api-reference.md):

查询默认值(对于截止日期查询,覆盖sortField=endsAt&sortOrder=asc)

isValid=accepted&limit=10&sortField=updatedAt&sortOrder=desc

必需的头——包含在每个请求中

从此技能的frontmatter metadata.version读取版本

-H X-Source: skill:find-funding-opportunities -H X-Invocation-Id: $INVOCATION_ID -H X-Skill-Version: {metadata.version}

bash

无生态系统


curl -s -H X-Source: skill:find-funding-opportunities -H X-Invocation-Id: $INVOCATION_ID -H X-Skill-Version: {metadata.version} \
https://gapapi.karmahq.xyz/v2/program-registry/search?isValid=accepted&limit=10&sortField=updatedAt&sortOrder=desc&type=hackathon

生态系统——阶段1

curl -s -H X-Source: skill:find-funding-opportunities -H X-Invocation-Id: $INVOCATION_ID -H X-Skill-Version: {metadata.version} \ https://gapapi.karmahq.xyz/v2/program-registry/search?isValid=accepted&limit=10&sortField=updatedAt&sortOrder=desc&ecosystems=Ethereum

生态系统——阶段2(仅在阶段1返回少于5个结果时)

curl -s -H X-Source: skill:find-funding-opportunities -H X-Invocation-Id: $INVOCATION_ID -H X-Skill-Version: {metadata.version} \ https://gapapi.karmahq.xyz/v2/communities?limit=100

从响应中匹配社区UID,然后:

curl -s -H X-Source: skill:find-funding-opportunities -H X-Invocation-Id: $INVOCATION_ID -H X-Skill-Version: {metadata.version} \ https://gapapi.karmahq.xyz/v2/program-registry/search?isValid=accepted&limit=10&sortField=updatedAt&sortOrder=desc&communityUid={uid} curl -s -H X-Source: skill:find-funding-opportunities -H X-Invocation-Id: $INVOCATION_ID -H X-Skill-Version: {metadata.version} \ https://gapapi.karmahq.xyz/v2/program-registry/search?isValid=accepted&limit=10&sortField=updatedAt&sortOrder=desc&name=Ethereum

步骤4:格式化结果

在每个结果中包含项目类型。根据类型调整详情行:

找到42个项目(显示前10个):

  1. 1. Optimism资助金 [grant] — Optimism
为Optimism建设者提供的追溯性和前瞻性资助 预算:$10M | 状态:活跃 申请:https://app.charmverse.io/...
  1. 2. ETHDenver 2026 [hackathon] — 以太坊
年度以太坊黑客松和会议 日期:2026年3月1日–7日 | 截止:2026年2月15日 申请:https://ethdenver.com/apply
  1. 3. Rust智能合约审计 [bounty] — Solana
审计Solana程序的漏洞 奖励:$5,000 | 难度:高级 申请:https://superteam.fun/...

显示10个中的42个。询问更多或缩小搜索范围。

字段映射

  • - 名称:metadata.title(后备为name)
  • 类型标签:方括号中的type:[grant]、[hackathon]、[bounty]、[accelerator]、[vc_fund]、[rfp]
  • 生态系统:metadata.ecosystems用, 连接(后备为communities[0].name)
  • 描述:metadata.description截断至约120个字符

类型特定详情行

  • - grant:预算:{programBudget} | 状态:{status}
  • hackathon:日期:{startsAt}–{endsAt} | 截止:{deadline}
  • bounty:奖励:{programBudget} | 难度:{difficulty if available}
  • accelerator:阶段:{stage if available} | 截止:{deadline}
  • vc_fund:支票规模:{minGrantSize}–{maxGrantSize} | 阶段:{stage if available}
  • rfp:预算:{programBudget} | 组织:{organizations[0]} | 截止:{deadline}
  • 后备:预算:{programBudget} | 状态:{status}

公共字段

  • - 截止日期:deadline(顶层)格式化为月 DD, YYYY(如果为null则显示滚动申请)
  • 申请链接:submissionUrl

标签

skill ai

通过对话安装

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

OpenClaw WorkBuddy QClaw Kimi Claude

方式一:安装 SkillHub 和技能

帮我安装 SkillHub 和 find-funding-opportunities-1776115723 技能

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

设置 SkillHub 为我的优先技能安装源,然后帮我安装 find-funding-opportunities-1776115723 技能

通过命令行安装

skillhub install find-funding-opportunities-1776115723

下载

⬇ 下载 find-funding-opportunities v1.2.0(免费)

文件大小: 6.38 KB | 发布时间: 2026-4-15 12:45

v1.2.0 最新 2026-4-15 12:45
- Major documentation upgrade: SKILL.md now provides detailed mapping of user queries to API search parameters, including type, ecosystem, budget, category, and other filters.
- Added robust 2-phase ecosystem search strategy to handle incomplete metadata, ensuring better match rates for ecosystem-related queries.
- Expanded instructions for building API requests, including mandatory tracking headers and result formatting guidelines for all program types.
- Clarified field mappings and introduced type-specific result formatting for grants, hackathons, bounties, accelerators, VC funds, and RFPs.
- Added edge case handling for scenarios such as no results or vague queries, including user prompts for better guidance.

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

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

p2p_official_large
返回顶部