web3-grant-tracker
v1.0.0Track active Web3 grant rounds, get deadline alerts, estimate quadratic funding matches, check project eligibility, and monitor applications across major DAO...
MIT-0
Security Scan
OpenClaw
Suspicious
high confidencePurpose & Capability
The name/description promise live grant scanning, deadline alerts, eligibility checks, application tracking and messaging integration. However the package contains no code, no binaries, and no declared environment variables or install steps—yet the SKILL.md repeatedly references a 'web3-grant-tracker' CLI and integrations that would legitimately require API keys (messaging, GitHub, wallet providers). The declared requirements (none) do not match the stated capabilities.
Instruction Scope
SKILL.md instructs running CLI commands (scan, alerts-setup, add-project, estimate-match) and guidance to connect GitHub and wallets and set up WhatsApp/Telegram alerts. It does not supply implementation or detail how to authenticate those external services, nor does it request or declare the necessary credentials. The instructions therefore cannot be executed as-is by an agent and obscure where sensitive data or external endpoints would be used.
Install Mechanism
There is no install spec and no code files (instruction-only). That is low disk/execution risk. However, because there is no shipped binary or script, the CLI referenced in the documentation is absent—so the skill is effectively a user-facing guide rather than an executable integration.
Credentials
The skill requests no environment variables or credentials, yet its described features (messaging alerts, GitHub/project analysis, wallet interactions) would normally require API keys, webhooks, or wallet access. This mismatch is disproportionate and leaves open where or how the skill would obtain or use sensitive credentials.
Persistence & Privilege
always is false and there is no install script or persistent configuration in the package. The skill does not request elevated or persistent platform privileges in its metadata.
What to consider before installing
This package is only documentation (SKILL.md) describing a 'web3-grant-tracker' CLI and integrations, but it does not include any executable code, installers, or declared credentials. Treat it as a how-to or product spec, not a working skill. Before installing or trusting it: 1) ask the author for the actual implementation (binary/source) and a clear list of required API keys and webhooks; 2) do not supply private keys or wallet seed phrases—alerts require messaging APIs (e.g., Twilio/WhatsApp API tokens) which should be scoped and audited; 3) verify where any outgoing network traffic would go (published repo, known release URLs) and inspect the code for endpoints before providing credentials; 4) if you only want the guidance, run the suggested commands/tools locally rather than granting agent autonomous access. The primary risk here is misrepresentation (claims vs. no-code) and unclear handling of sensitive credentials — proceed cautiously and request the missing implementation and security details.Like a lobster shell, security has layers — review code before you run it.
latest
License
MIT-0
Free to use, modify, and redistribute. No attribution required.
SKILL.md
Web3 Grant Tracker — Gitcoin, Giveth & DAO Funding Monitor
Track active Web3 grant rounds, deadlines, and funding opportunities across Gitcoin, Giveth, Optimism RPGF, Arbitrum, and other DAO treasuries. Get alerts before rounds close.
What It Does
- Live grant round scanning — checks Gitcoin GG rounds, Giveth, Octant, and more
- Deadline alerts — WhatsApp/Telegram warning 48h and 24h before round ends
- Matching fund calculator — estimates your potential QF match based on donor count
- Project eligibility checker — analyzes your GitHub/project against round requirements
- Application tracker — tracks which rounds you've applied to and their status
- Portfolio dashboard — shows all active + upcoming rounds with deadlines
- Round history — historical data on past rounds and typical funding amounts
Quick Start
# Scan all active grant rounds right now
web3-grant-tracker scan
# Check what's closing soon (next 7 days)
web3-grant-tracker urgent
# Add your project for tracking
web3-grant-tracker add-project \
--name "OpenClaw Infrastructure" \
--github "https://github.com/yourusername/project" \
--tags "infrastructure,ai,open-source"
# Check project eligibility for active rounds
web3-grant-tracker check-eligibility --project "OpenClaw Infrastructure"
# Set up deadline alerts
web3-grant-tracker alerts-setup \
--channel whatsapp \
--advance-hours 48
# Get matching fund estimate (Quadratic Funding)
web3-grant-tracker estimate-match \
--project "OpenClaw Infrastructure" \
--donor-count 50 \
--round gitcoin-gg24
Commands
| Command | Description |
|---|---|
web3-grant-tracker scan | Scan all active rounds + deadlines |
web3-grant-tracker urgent | Rounds closing in next 7 days |
web3-grant-tracker add-project <name> | Register a project to track |
web3-grant-tracker list-projects | List your tracked projects |
web3-grant-tracker check-eligibility | Check which rounds your project qualifies for |
web3-grant-tracker estimate-match | QF matching fund calculator |
web3-grant-tracker apply-guide <round> | Step-by-step application guide |
web3-grant-tracker alerts-setup | Configure deadline alerts |
web3-grant-tracker history | Past rounds + average payouts |
web3-grant-tracker portfolio | Full dashboard of all applications |
Supported Platforms
| Platform | Data Available | Application Link |
|---|---|---|
| Gitcoin Grants | Rounds, deadlines, QF match | grants.gitcoin.co |
| Giveth | Project listings, GIVbacks | giveth.io |
| Octant | Epoch funding, allocations | octant.app |
| Optimism RPGF | Retroactive grants | app.optimism.io |
| Arbitrum DAO | Grant programs | forum.arbitrum.foundation |
| ENS Ecosystem | Small grants | discuss.ens.domains |
| Uniswap Grants | UGP rounds | uniswapgrants.eth.limo |
| Nouns Builder | DAO-specific rounds | nouns.build |
Example Output
╔═══════════════════════════════════════════════════╗
║ WEB3 GRANT TRACKER — 2026-02-25 02:30 UTC ║
╠═══════════════════════════════════════════════════╣
║ ACTIVE ROUNDS (4 found) ║
╠═══════════════════════════════════════════════════╣
║ Gitcoin GG24 — Infrastructure ║
║ 💰 Pool: ~$250,000 matching ║
║ ⏰ Closes: 2026-03-15 (18 days) ║
║ ✅ Your project: ELIGIBLE ║
╠═══════════════════════════════════════════════════╣
║ Octant Epoch 5 ║
║ 💰 Pool: ~$800,000 ETH ║
║ ⏰ Closes: 2026-03-01 (4 days) ⚠️ URGENT ║
║ ⚠️ Eligibility: check-eligibility to verify ║
╠═══════════════════════════════════════════════════╣
║ Giveth GIVbacks Round 42 ║
║ 💰 Rewards: GIV tokens per donation ║
║ ⏰ Rolling — no deadline ║
║ ✅ Your project: ELIGIBLE ║
╠═══════════════════════════════════════════════════╣
📊 QF MATCH ESTIMATE (Gitcoin GG24, 50 donors):
Conservative: $180–450
Optimistic: $600–1,200
(Based on 50 unique donors × avg $5 contribution)
💡 Recommendation: Apply to GG24 Infrastructure round
→ run: web3-grant-tracker apply-guide gitcoin-gg24
QF Matching Calculator
Quadratic Funding rewards projects with many small donors over few large ones:
# See how adding more donors affects your match
web3-grant-tracker estimate-match \
--project "my-project" \
--round gitcoin-gg24 \
--donor-count 100 \
--avg-donation 10
# Output:
# sqrt(10) * 100 donors = 316 QF units
# Estimated match: $1,200–2,800 (depends on pool)
# Getting to 200 donors would 2x your match!
Application Guide Example
web3-grant-tracker apply-guide gitcoin-gg24
# Output:
# GITCOIN GG24 — INFRASTRUCTURE ROUND APPLICATION GUIDE
# ═══════════════════════════════════════════════════════
# Step 1: Create project on Builder (builder.gitcoin.co)
# → Connect GitHub + wallet
# → Fill: name, description, links, banner image
# Step 2: Apply to round on Explorer (explorer.gitcoin.co)
# → Select: Infrastructure/Tooling round
# → Write impact statement (see templates below)
# Step 3: Community amplification
# → Tweet with #GG24 #Gitcoin hashtags
# → Post in Farcaster /gitcoin channel
# → Share in relevant Discord servers
# Step 4: Donor drive
# → Need 1 min donation ($1+) from unique wallets
# → Each unique donor increases QF match
# ...
Deadline Alert Example
⏰ GRANT DEADLINE ALERT — 24h remaining
Round: Gitcoin GG24 — Infrastructure
Closes: 2026-03-15 20:00 UTC (in 23h 42m)
Your project: OpenClaw Infrastructure
Status: Applied ✅
Action items:
• Share project link for last-day donors
• Post reminder on social media
• Check you haven't hit any submission limits
Project link: explorer.gitcoin.co/projects/openclaw-infra
Data Storage
All data stored locally at ~/.openclaw/workspace/web3-grant-tracker/. No telemetry. Grant round data refreshed every 6 hours via public APIs and web fetches.
Configuration
{
"alert_channel": "whatsapp",
"alert_advance_hours": [48, 24, 6],
"wallet_address": "0xYourAddress",
"default_tags": ["infrastructure", "open-source", "ai"],
"auto_scan_interval_hours": 6
}
Requirements
- OpenClaw 1.0+
- Python 3.8+
- Optional: Ethereum wallet address (for on-chain verification)
Use Cases
- Builders — Never miss a grant round again
- DAOs — Track ecosystem funding opportunities
- Researchers — Monitor Web3 public goods funding landscape
- Investors — Identify well-funded projects early (donor velocity signal)
Source & Issues
Files
2 totalSelect a file
Select a file to preview.
Comments
Loading comments…
