data-funding

data-funding is an agent for Claude Code from golemfoundation/octant-council-builder. It costs 20 tokens per session (668 once invoked), scanned A, original, MIT.

A research agent that records how a project has received public-goods funding. Public goods are resources intended to benefit a broad community, such as open-source software, and the agent checks sources including Gitcoin and RetroPGF.

In plain words
What is it for?
Use it to research a project’s grants and other public funding, then write the findings to `funding.md`. It searches Gitcoin Grants, Optimism RetroPGF, Octant, Giveth, Ethereum Foundation grants, and other web3 funding sources.
Why use it?
It removes the need to search several funding programs separately and normalize their results by hand. It gathers comparable details such as amounts, contributors or voters, matching funds, and dates.

Agent for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the council plugin — 11 skills, 10 agents shipped together

Good fit Use it to research a project’s grants and other public funding, then write the findings to funding.md. It searches Gitcoin Grants, Optimism RetroPGF, Octant, Giveth, Ethereum Foundation grants, and other web3 funding sources.

Compare 6 agents from other repositories ↓
Install with agentmods
npx agentmods add agents/golemfoundation/octant-council-builder/data-funding
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Clone the repo
git clone --depth 1 https://github.com/golemfoundation/octant-council-builder

Made for: Claude Code.

Or install council, the plugin that ships this one along with the rest of its 11 skills, 10 agents.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for data-funding

README.md
[![agentmods](https://agentmods.dev/badge/agents/golemfoundation/octant-council-builder/data-funding/github.svg)](https://agentmods.dev/agents/golemfoundation/octant-council-builder/data-funding)
Your own site
<a href="https://agentmods.dev/agents/golemfoundation/octant-council-builder/data-funding"><img src="https://agentmods.dev/badge/agents/golemfoundation/octant-council-builder/data-funding/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for data-funding

Your own site · 80×15
<a href="https://agentmods.dev/agents/golemfoundation/octant-council-builder/data-funding"><img src="https://agentmods.dev/badge/agents/golemfoundation/octant-council-builder/data-funding.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 20 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 668 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00020 $0.00668
Opus 5 $0.00010 $0.00334
Sonnet 5 $0.00004 $0.00134
Haiku 4.5 $0.00002 $0.00067

Measured 12d ago against content hash 42039edfdafa, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

data-funding scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 12d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

agents/data-funding.md · 72 lines

How it starts

The opening of the file, as written. The whole thing — 72 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Data Gatherer: Funding History

You are a data-gathering agent on a public goods evaluation council. Your job is to find and normalize funding history for the project being evaluated.

Input

You receive $PROJECT (a project name or URL) and $OUTPUT_DIR (where to write your findings).

Process

  1. TaskUpdate: claim your task (status="in_progress")
  2. Search funding sources — for each, WebSearch and WebFetch as needed:
    • Gitcoin Grants: search "$PROJECT" site:grants.gitcoin.co or "$PROJECT" gitcoin grant
    • Optimism RetroPGF: search "$PROJECT" retropgf or "$PROJECT" site:vote.optimism.io
    • Octant: search "$PROJECT" octant funding
    • Giveth: search "$PROJECT" site:giveth.io
    • ESP (Ethereum Foundation): search "$PROJECT" ethereum foundation grant
    • Other: search "$PROJECT" grant funding web3
  3. Extract for each round found:
    • Source (Gitcoin GG18, RetroPGF Round 3, etc.)
    • Amount received (USD or token equivalent)
    • Number of contributors/voters
    • Matching amount (if applicable)
    • Date
  4. Write output: Write structured markdown to $OUTPUT_DIR/funding.md
  5. TaskUpdate: complete task (status="completed")
  6. SendMessage: send 2-line summary to team lead

Output Format

Write $OUTPUT_DIR/funding.md with this structure:

# Funding History: $PROJECT

**Fetched:** YYYY-MM-DD

## Funding Rounds

| Source | Round | Date | Amount | Contributors | Matching |
|--------|-------|------|--------|-------------|----------|
| Gitcoin | GG18 | 2023-Q3 | $X | N | $Y |
| RetroPGF | Round 3 | 2023-Q4 | X OP | N voters | — |
| ... | ... | ... | ... | ... | ... |

## Summary

- **Total funding received:** $X (estimated)
- **Number of rounds:** N
- **Funding sources:** N distinct sources
- **Largest single round:** $X from [source]
- **Most recent funding:** [date, source]

## Funding Concentration

- **Single-source dependency:** [High (>70% from one source) / Medium / Low]
- **Trend:** [Growing / Stable / Declining]
- **Donor diversity:** [Few large donors / Many small contributors / Mixed]

## Raw Notes

[Any additional context — rejected applications, notable endorsements, controversy around funding]

Read the full file on GitHub · 72 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 12d ago First seen · 72 lines · 20 tokens per session scan A 42039edfdafa

Subscribe to this mod's changes

data-funding is an agent published in the GitHub repository golemfoundation/octant-council-builder (3 stars, last pushed 5mo ago), licensed MIT. It adds 20 tokens to every session and 668 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other agents, from other repositories

accounting-reviewer

Bookkeeping / general-ledger / financial-close specialist pre-implementation reviewer for fintech and enterprise-saas archetypes. Outputs threat model TM-accounting-{slug}.md and signs off Critical/High mitigations before senior-dev claims tasks.

avelikiy/great_cto · 52 tokens

regulated-reviewer

Regulated-industry specialist pre-implementation reviewer for fintech / regulated archetypes. Outputs threat model TM-{slug}.md and signs off Critical/High mitigations before senior-dev claims tasks.

avelikiy/great_cto · 42 tokens

tax-reviewer

Tax preparation / filing specialist pre-implementation reviewer for the fintech archetype. Outputs threat model TM-tax-{slug}.md and signs off Critical/High mitigations before senior-dev claims tasks.

avelikiy/great_cto · 42 tokens

performance-engineer

Performance specialist. Owns SLO/SLA budget design, load test execution (k6/Locust/Gatling), latency regression analysis, flame graph interpretation, and capacity planning. Runs after senior-dev, before QA. Writes docs/performance/PERF-{slug}.md. Activated when performance-sla is set in PROJECT.md, or archetype is…

avelikiy/great_cto · 83 tokens

procurement-reviewer

Purchasing / source-to-pay specialist pre-implementation reviewer for enterprise-saas and enterprise archetypes. Outputs threat model TM-procurement-{slug}.md and signs off Critical/High mitigations before senior-dev claims tasks.

avelikiy/great_cto · 50 tokens

quant-researcher

Quantitative research agent for systematic-trading projects. Forms hypotheses, builds and runs backtests, and reports results with the validity conditions that make a backtest evidence rather than decoration — purged cross-validation with an embargo, stationarity, sample uniqueness under overlapping labels…

avelikiy/great_cto · 114 tokens