Conversation
Teaches Copilot how to scan a repo's dependencies and find which ones accept sponsorship via GitHub Sponsors, Open Collective, etc. Workflow: 1. Fetch package.json from target repo 2. Resolve each dep to source GitHub repo via npm registry 3. Check npm funding field + .github/FUNDING.yml 4. Group by maintainer, present report with sponsor links Tested against expressjs/express: found 9/28 deps sponsorable (32%) across 3 funding destinations.
Contributor
There was a problem hiding this comment.
Pull request overview
Adds a new Agent Skill (“sponsor-finder”) that guides Copilot through identifying funding/sponsorship options for a repository’s dependencies (primarily Node/npm), and indexes the skill in the skills catalog.
Changes:
- Added
skills/sponsor-finder/SKILL.mddefining the sponsor-finding workflow (npm registry + FUNDING.yml checks) and report format. - Updated
docs/README.skills.mdto include the new skill in the skills table.
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated 4 comments.
| File | Description |
|---|---|
| skills/sponsor-finder/SKILL.md | New skill definition for scanning dependency manifests and producing a funding report. |
| docs/README.skills.md | Adds “sponsor-finder” to the skills index table for discoverability. |
Comments suppressed due to low confidence (1)
skills/sponsor-finder/SKILL.md:139
- Step 6 says to group by GitHub Sponsors username from FUNDING.yml, but earlier steps explicitly treat npm
fundingURLs (including Open Collective, Ko-fi, etc.) as a primary source, and the output format includes non-GitHub destinations. As written, dependencies that only have npm funding (or non-GitHub FUNDING.yml entries) won’t fit the grouping logic. Please define grouping in terms of a normalized “funding destination” (platform + identifier/URL), not only GitHub Sponsors usernames.
## Step 6: Group by Maintainer
After checking all repos, group sponsorable dependencies by their GitHub Sponsors username (from the `github` field in FUNDING.yml).
For each maintainer, track:
- Their GitHub Sponsors URL
- How many dependencies they maintain (from this repo's dependency tree)
- The names of those dependencies
Sort maintainers by **number of dependencies** (most impact first).
Inspired by jshchnz/tribute, adds: - Link verification: every funding URL is fetched before presenting - Web search fallback: finds funding even without FUNDING.yml - How Verified column: transparency about data source - 5 ecosystems: npm, Python, Rust, Go, Ruby (was npm-only) - Corporate-maintained package detection - No Verified Funding Found section for unfunded deps
Major upgrade: - deps.dev GetDependencies: full tree in one call (direct + transitive) - deps.dev GetVersion: cross-ecosystem package→repo mapping (7 ecosystems) - deps.dev GetProject: OSSF Scorecard health data per project - Direct vs transitive column (✅ vs ⛓️) - Health column from Scorecard Maintained check - Actionable minimum: '💡 Sponsoring just N people covers all funded deps' - Graceful fallback to registry APIs if deps.dev unavailable
aaronpowell
approved these changes
Feb 13, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Sponsor Finder Skill
Teaches Copilot how to scan a GitHub repo's dependencies and find which ones accept sponsorship via GitHub Sponsors, Open Collective, Ko-fi, etc.
How it works
Users ask naturally: "find sponsorable dependencies in expressjs/express"
The skill teaches Copilot to:
package.jsonfrom the target repofundingfield +.github/FUNDING.ymlfor sponsorship infoTest results (expressjs/express)
ljharbvia GitHub Sponsors (1 dep)sindresorhusvia GitHub Sponsors (1 dep)Files changed
skills/sponsor-finder/SKILL.md— new skilldocs/README.skills.md— added to skills tableUse cases
No bundled assets, no external dependencies — just a SKILL.md that uses
get_file_contentsandweb_fetch.