Aides finder
Agent Skills collection — Reusable capabilities for AI coding agents. Install: npx skills add TheWatcher01/skills
npx -y skills add TheWatcher01/skills --skill aides-finderAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Find eligible subsidies, grants, and calls for projects matching a given topic and territory. Use when the user asks about available funding, subventions, or financial aid for a project, especially for associations and ESS structures.
SKILL.md
2.9 KB, as published. Nobody here has run it
aides-finder
Find subsidies, grants, and calls for projects from public funders.
Triggers
/aides cybersecurite Occitanie/aides audit digital association- "quelles subventions pour un audit digital?"
- "appels a projets ESS 2026"
- "aides pour cybersecurite en Occitanie"
How it works
Queries two complementary sources:
- Aides-Territoires API (beta.gouv.fr, no auth) — the national database of public aids. Covers state, regional, departmental, and EU funding.
- Calendrier-Subvention API (local instance,
SUBVENTION_API_BASEenv var) — internal calendar of tracked funding opportunities. Falls back gracefully if unavailable.
Usage
python3 {baseDir}/scripts/aides.py --query "cybersecurite" --territory "Occitanie" --format json
python3 {baseDir}/scripts/aides.py --query "audit digital" --audience association --format text
python3 {baseDir}/scripts/aides.py --query "transition numerique" --department 31 --format json
Arguments
| Argument | Required | Default | Description |
|---|---|---|---|
--query | yes | Keywords describing the project or sector | |
--territory | no | Region name (e.g. Occitanie, Ile-de-France) | |
--department | no | Department code (e.g. 31, 75) | |
--audience | no | association | Target audience: association, commune, epci, entreprise |
--call-only | no | false | Only show active calls for projects |
--per-page | no | 20 | Number of results (1-100) |
--format | no | json | Output format: json or text |
Output fields
name— aid titlefunder— funding organizationamount— funding range or amountdeadline— application deadline (null if rolling)eligibility— who can applydescription— short summaryurl— link to the full aid pageis_call_for_project— whether this is an active call
Environment variables
| Variable | Required | Default | Description |
|---|---|---|---|
SUBVENTION_API_BASE | no | http://host.docker.internal:3000 | Base URL for calendrier-subvention |