Token导航 LogoToken导航TokenDH.com
研究检索需要联网clawhub未标认证来源可访问clear审计提醒

find-funding-opportunities寻找融资机会

Agent Skill

find-funding-opportunities 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

7,508

周安装

316

GitHub Stars

公开资料未说明

下载量

2,629
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:find-funding-opportunities(寻找融资机会)
来源仓库:https://github.com/maheshmurthy/find-funding-opportunities
安装命令:
openclaw skills install find-funding-opportunities
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install find-funding-opportunities

简介

通过公共API搜索资助计划与创业资金支持渠道。

  • 涵盖赠款、黑客马拉松、RFP与风险投资等资源。
  • 基于Karma资助地图提供结构化机会列表。
  • 安装前需确认API密钥配置与数据更新频率。
  • 建议结合来源仓库核验具体用法与维护状态。find-funding-opportunities 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
find-funding-opportunities
description
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.
version
1.2.0
tags
[programs, search, funding, discovery]
metadata
author
Karma
category
discovery

Funding Program Finder

Search the Karma Funding Map for funding programs via the public API.

The registry has 6 program types: grants, hackathons, bounties, accelerators, VC funds, and RFPs. Use "programs" / "opportunities" / "funding" — not just "grants".

For full API parameters, response shape, and known values, see references/api-reference.md.

Workflow

Step 1: Map the User's Request

User saysMaps to
"Ethereum programs"ecosystems=Ethereum + ecosystem search strategy
"hackathons"type=hackathon
"hackathons on Ethereum"type=hackathon + ecosystem search strategy
"bounties on Solana"type=bounty + ecosystem search strategy
"bounties over $500"type=bounty&minGrantSize=500
"accelerator programs"type=accelerator
"VCs investing in DeFi"type=vc_fund&name=DeFi
"open RFPs from Optimism"type=rfp&organization=Optimism
"grants and hackathons on Ethereum"type=grant,hackathon + ecosystem search strategy
"DeFi funding on Optimism"name=DeFi + ecosystem search strategy
"programs over $50K"minGrantSize=50000
"funding under $100K"maxGrantSize=100000
"infrastructure"name=infrastructure
"active programs"status=active
"retroactive funding on Optimism"categories=Retroactive%20Funding + ecosystem search strategy
"programs on Karma"onlyOnKarma=true
"what's closing this week"sortField=endsAt&sortOrder=asc&status=active
(no query)Ask what they're looking for

Budget shorthand: K→000, M→000000 (e.g., $50K → 50000, $1M → 1000000).

URL encoding: Values with spaces must be percent-encoded in curl URLs (e.g., categories=Retroactive%20Funding).

Step 2: Ecosystem Search Strategy

If the query has no ecosystem component, skip this step and go to Step 3.

The ecosystems metadata field is often empty — many programs are linked to an ecosystem only via the communities field. Use a two-phase approach:

Phase 1 — Try ecosystems= first: Query with ecosystems={name}. If this returns sufficient results (5+), present them and move to Step 4.

Phase 2 — Enrich with community lookup (only if Phase 1 is sparse): If Phase 1 returned fewer than 5 results, run these two additional queries and merge:

  1. Community UID lookup: fetch all communities from GET /v2/communities?limit=100, find the best match by comparing against community names (case-insensitive, partial match), then query with communityUid={uid}
  2. name={name} — text search on title, universal fallback

Deduplicate all merged results by id before presenting.

Step 3: Build and Execute the Request

Use curl via Bash. CRITICAL: Every request must include the tracking headers below. Never omit them.

Before the first request, generate a tracking ID:

INVOCATION_ID=$(uuidgen)

Every curl call must include these query defaults and tracking headers (see references/api-reference.md for details):

# Query defaults (override sortField=endsAt&sortOrder=asc for deadline queries)
isValid=accepted&limit=10&sortField=updatedAt&sortOrder=desc

# Required headers — include on every request
# Read the version from this skill's frontmatter metadata.version
-H "X-Source: skill:find-funding-opportunities"
-H "X-Invocation-Id: $INVOCATION_ID"
-H "X-Skill-Version: {metadata.version}"
# No ecosystem
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"

# Ecosystem — Phase 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"

# Ecosystem — Phase 2 (only if Phase 1 returned < 5 results)
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"
# Match community UID from response, then:
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"

Step 4: Format Results

Include the program type in each result. Adapt the detail line based on type:

Found 42 programs (showing top 10):

1. **Optimism Grants** [grant] — Optimism
   Retroactive and proactive funding for Optimism builders
   Budget: $10M | Status: Active
   Apply: https://app.charmverse.io/...

2. **ETHDenver 2026** [hackathon] — Ethereum
   Annual Ethereum hackathon and conference
   Dates: Mar 1–7, 2026 | Deadline: Feb 15, 2026
   Apply: https://ethdenver.com/apply

3. **Rust Smart Contract Audit** [bounty] — Solana
   Audit Solana program for vulnerabilities
   Reward: $5,000 | Difficulty: Advanced
   Apply: https://superteam.fun/...

Showing 10 of 42. Ask for more or narrow your search.

Field Mapping

  • Name: metadata.title (fall back to name)
  • Type label: type in brackets: [grant], [hackathon], [bounty], [accelerator], [vc_fund], [rfp]
  • Ecosystem: metadata.ecosystems joined with , (fall back to communities[0].name)
  • Description: metadata.description truncated to ~120 chars

Type-Specific Detail Line

  • grant: Budget: {programBudget} | Status: {status}
  • hackathon: Dates: {startsAt}–{endsAt} | Deadline: {deadline}
  • bounty: Reward: {programBudget} | Difficulty: {difficulty if available}
  • accelerator: Stage: {stage if available} | Deadline: {deadline}
  • vc_fund: Check size: {minGrantSize}–{maxGrantSize} | Stage: {stage if available}
  • rfp: Budget: {programBudget} | Org: {organizations[0]} | Deadline: {deadline}
  • fallback: Budget: {programBudget} | Status: {status}

Common Fields

  • Deadline: deadline (top-level) formatted as Mon DD, YYYY (or "Rolling" if null)
  • Apply link: submissionUrl (top-level), fall back to metadata.socialLinks.grantsSite or metadata.website or metadata.socialLinks.website (first non-empty)

Edge Cases

ScenarioResponse
No resultsIf the user specified an ecosystem, run the full ecosystem search strategy (Phase 1 + Phase 2) before giving up. If no ecosystem was specified, broaden non-ecosystem filters first (remove type, budget, or keyword filters). If still none: "No programs found matching your criteria. Try broadening — remove type, ecosystem, or budget filters."
No queryAsk: "What kind of funding are you looking for? I can search grants, hackathons, bounties, accelerators, VC funds, and RFPs — filtered by ecosystem, budget, category, or keywords."
"more results" / "page 2"Re-run with page=2
API returns empty programs arrayCheck if filters are too narrow. Suggest removing one filter at a time.
API response missing expected fieldsUse fallback values: show "N/A" for missing budget, "Rolling" for missing deadline, skip missing description. Never fail on a missing optional field.

Error Handling

ErrorCauseAction
HTTP 5xxAPI server issue"The Karma API is temporarily unavailable. Try again in a moment."
HTTP 429Rate limitingWait 5 seconds, retry once. If it fails again, tell the user to wait.
Connection timeoutNetwork or API down"Could not reach the Karma API. Check your connection or try again shortly."
Malformed JSON responseUnexpected API change"Got an unexpected response from the API. The response format may have changed."
Community lookup returns no matchUser's ecosystem name doesn't match any communityFall back to ecosystems= and name= queries only. Do not fail — partial results are better than none.

Troubleshooting

Ecosystem search returns 0 results

The user asked for an ecosystem (e.g., "Monad grants") but all 3 queries returned nothing.

  • Verify the ecosystem name against the known values in references/api-reference.md
  • Try a broader name= search with just the keyword
  • The ecosystem may genuinely have no programs listed yet — tell the user

Community UID lookup finds no match

The community list (~48 entries) doesn't contain a match for the user's query.

  • Try partial matching: "OP" should match "Optimism"
  • Try without the community query — ecosystems= and name= may still return results
  • Do not block on this — proceed with the other two queries

Results look stale or incomplete

Programs may have outdated metadata (missing budgets, old deadlines).

  • Present what's available; do not hide results with missing fields
  • Use "N/A" or "Rolling" for missing values
  • Note to the user: "Some programs may have incomplete information"

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

76.28%
按下载量换算2,005

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills