Enable MiniMax skills in Cursor by cloning the repository locally and pointing Cursor's skills path at the skills/ directory.
- Cursor installed
- Git
git clone https://github.com/MiniMax-AI/skills.git ~/.cursor/minimax-skillsSet Cursor's skills path to:
~/.cursor/minimax-skills/skills/
git clone https://github.com/MiniMax-AI/skills.git "$env:USERPROFILE\.cursor\minimax-skills"Set Cursor's skills path to:
C:\Users\YOUR_USERNAME\.cursor\minimax-skills\skills\
Replace YOUR_USERNAME with your Windows account name.
After saving the path, restart Cursor or reload the window so it rescans local skills.
Confirm the clone exists and contains SKILL.md files:
find ~/.cursor/minimax-skills/skills -maxdepth 2 -name SKILL.md | headGet-ChildItem "$env:USERPROFILE\.cursor\minimax-skills\skills" -Directory | ForEach-Object {
Get-ChildItem $_.FullName -Filter SKILL.md
}cd ~/.cursor/minimax-skills && git pullSet-Location "$env:USERPROFILE\.cursor\minimax-skills"
git pullrm -rf ~/.cursor/minimax-skillsRemove-Item -Recurse -Force "$env:USERPROFILE\.cursor\minimax-skills"This repository does not currently ship a standalone VS Code extension.
If you use VS Code, the recommended options are:
- run a supported CLI tool such as Codex, Claude Code, or OpenCode inside the VS Code integrated terminal
- use Cursor if you want native local-skills configuration from this repository