Sponsors Management Skill
SkillWeb & browsingCheck current active GitHub Sponsors and sync README/website listings. Used for periodic checks and listing updates.
Available today. Use it from your connected AI after setup.
No other account needed.
Connect ahel once, and every AI you use reads what you have installed.
Then ask your AI: use the Sponsors Management Skill skill
What this skill tells your AI
The instructions your AI receives, as published by markuplint/markuplint in .claude/skills/sponsors/SKILL.md and read by ahel’s review.
Manage GitHub Sponsors listings across the project.
Listing Files (4 locations — always update ALL in sync)
| # | File | Format |
|---|---|---|
| 1 | README.md (root) | <img> tag |
| 2 | packages/markuplint/README.md | <img> tag |
| 3 | website/community/index.mdx | <Profile> component |
| 4 | website/i18n/ja/docusaurus-plugin-content-docs-community/current/index.mdx | <Profile> component |
Match the markup of the existing entries in each file. Corporate entries are rendered larger than personal ones (README: width="140" vs width="36"; website: full <Profile> with website/twitter vs <Profile mini>).
Tiers and Incentives
| Tier | Monthly | Incentive |
|---|---|---|
| Corporate | $100/mo | Company logo on README + website |
| Personal | $10/mo | Personal avatar on README + website |
| Badge | $5/mo | GitHub badge only (no README/website listing) |
Fetching Active Sponsors (GitHub GraphQL API)
gh api graphql -f query='
{
organization(login: "markuplint") {
sponsorshipsAsMaintainer(first: 100, activeOnly: true) {
nodes {
sponsorEntity {
... on User {
login
name
avatarUrl
}
... on Organization {
login
name
avatarUrl
}
}
tier {
monthlyPriceInDollars
name
}
}
}
}
}
'
Update Procedure
- Fetch active sponsors via GraphQL API
- Read current listings from all 4 files
- Identify differences:
- New sponsors (in API but not listed) -> Add
- Ended sponsors (listed but not in API) -> Move to Past sponsors
- Tier changes ($10 -> $5, etc.) -> Add or remove from listings
- Update all 4 files in sync (never update just one and forget the others)
- Moving to Past sponsors:
- README: Remove the line only (no Past sponsors section)
- Website: Remove
<Profile>, add- [login](URL)to Past sponsors list
Notes
- The Japanese website version has no Corporate sponsors section (English only)
- $5/mo Badge tier sponsors are NOT listed on README/website
- Add new entries to the top of the Past sponsors list
Signals
- GitHub stars
- 614
- Forks
- 63
- Last commit
- Sep 2026
Advanced
- Catalog kind
- skill
- Gateway key
sponsors- Source
- github.com/markuplint/markuplint