Core specification and reference implementation for integrating GitHub Sponsors into libraries and tools.
Integrate GitHub Sponsors into your libraries so that users can be properly linked to their sponsorship to unlock features or simply get the recognition they deserve for supporting your project.
SponsorLink supports two scenarios:
Open source project developers or maintainers who are looking to incentivize sponsors to contribute to the project, to ensure ongoing and recurring income that can help ensure proper maintenance and further feature work.
Open source project consumers, who want to ensure their dependencies have an active team that can provide support, bug fixes and add new features.
Explore the documentation site.
GitHub Sponsors is a great way to support open source projects, and it's available throughout most of the world.
That is not to say that there aren't other mechanisms that can provide similar functionality and support. At this point, however, the tooling, API access and very low barrier to entry make it a great initial choice for SponsorLink.
That said, the reference implementation is not deeply tied to GitHub Sponsors, and the specification is entirely agnostic to the sponsorship platform.
The value SponsorLink brings is in providing the "missing" link between a user's sponsorship and the libraries they use, in an easy to check, secure and offline way.
Roughly, the reference implementation works as follows:
~/.sponsorlink/github/devlooped.jwt.
). If not found, the library/tool issues a notice to the user, typically stating
that they are seeking funding, how to fund the project and how to sync their status,
which is unknown at this point.sponsor sync [account]
to sync their sponsorships.
https://github.com/[account]/.github/blob/[default_branch]/sponsorlink.jwt
and
uses its information to authenticate the user on github.com with an OAuth app belonging
to the author, using device flow.Notes:
user
: the user is direct sponsor of the author.org
: the user is a member of an organization that sponsors the author.contrib
: the user is a contributor to the author's project(s).team
: the user is team a member of the author's organization.oss
: the user is an author or contributor to an active open-source nuget package.
Elegibility can be checked at OSS AuthorsExplore the documentation site to learn more, and make sure to check the privacy statement.
Active SponsorLink sync usage by sponsorship kind:
The reference implementation .NET global tool, dotnet-sponsor
, provides generic
manifest discovery and sync capabilities, but the actual check from within a library
or tool is left to the author.
[!NOTE] For now, the tool works only with GitHub sponsors as a funding platform.
Since the sponsor manifest is a standard JWT token, it can be verified by any JWT library in any language and at any point in the library/tool usage (at installation time, run-time, build-time, etc.).
If you are looking for inspiration on how to do this for .NET with NuGet and C#, check the the analyzer sample.