Sponsors Management Skill

SkillWeb & browsing

Check 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.

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)

#FileFormat
1README.md (root)<img> tag
2packages/markuplint/README.md<img> tag
3website/community/index.mdx<Profile> component
4website/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

TierMonthlyIncentive
Corporate$100/moCompany logo on README + website
Personal$10/moPersonal avatar on README + website
Badge$5/moGitHub 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

  1. Fetch active sponsors via GraphQL API
  2. Read current listings from all 4 files
  3. 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
  4. Update all 4 files in sync (never update just one and forget the others)
  5. 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