lovable.mp4
GitToSkill turns a GitHub profile into an installable Cursor skill.
Give it a profile like @steipete, and it will:
- Fetch the profile, profile README, and a notable repo shortlist through GitHub GraphQL.
- Pull a second batch of repo details to capture style signals from real projects.
- Use Azure OpenAI to write a profile-specific skill guide.
- Let you either download the generated markdown skill or install it through the CLI.
Web:
- Paste a GitHub profile like
@steipeteorhttps://github.com/steipete - Review the generated skill
- Copy the install command or download the
.mdfile
CLI:
npx gittoskill add @steipeteThe CLI calls the GitToSkill backend, writes the returned SKILL.md plus reference files into a local generated folder, and then forwards installation to skills add.
The generator expects:
GITHUB_TOKENAZURE_OPENAI_API_KEYAZURE_OPENAI_BASE_URLAZURE_OPENAI_DEPLOYMENT_NAME_MAP
Optional Azure tuning:
AZURE_OPENAI_MODELAZURE_OPENAI_REASONING_EFFORT
For local CLI usage against a local dev server, set:
GITTOSKILL_API_BASE_URL=http://localhost:3000
Otherwise the CLI defaults to the production GitToSkill deployment URL.
- Node.js 18+
pnpm
pnpm installpnpm dev$env:GITTOSKILL_API_BASE_URL="http://localhost:3000"
pnpm cli:add -- @steipeteYou can forward normal skills add flags after the profile input:
pnpm cli:add -- @steipete --agent cursor --scope projectgittoskill/
├── app/ # Next.js website + profile skill API
├── bin/gittoskill.mjs # CLI wrapper around backend generation + skills add
├── components/ # Web UI
├── lib/ # GitHub, Azure, parsing, and skill generation helpers
└── README.md
MIT