2.4 KiB
2.4 KiB
Installing MiniMax Skills for OpenCode
Prerequisites
- OpenCode.ai installed
Installation
macOS / Linux
git clone https://github.com/MiniMax-AI/skills.git ~/.minimax-skills
mkdir -p ~/.config/opencode/skills
ln -s ~/.minimax-skills/skills/* ~/.config/opencode/skills/
Windows (PowerShell)
git clone https://github.com/MiniMax-AI/skills.git "$env:USERPROFILE\.minimax-skills"
New-Item -ItemType Directory -Force -Path "$env:USERPROFILE\.config\opencode\skills"
Get-ChildItem "$env:USERPROFILE\.minimax-skills\skills" -Directory | ForEach-Object {
New-Item -ItemType SymbolicLink -Path "$env:USERPROFILE\.config\opencode\skills\$($_.Name)" -Target $_.FullName
}
Note: Creating symbolic links on Windows may require administrator privileges or Developer Mode enabled.
Restart OpenCode to discover the skills.
Verify by asking: "List available skills"
Available Skills
- frontend-dev — Frontend development with UI design, animations, AI-generated media assets
- fullstack-dev — Full-stack backend architecture and frontend-backend integration
- android-native-dev — Android native application development with Material Design 3
- ios-application-dev — iOS application development with UIKit, SnapKit, and SwiftUI
- shader-dev — GLSL shader techniques for stunning visual effects (ShaderToy-compatible)
- gif-sticker-maker — Convert photos into animated GIF stickers (Funko Pop / Pop Mart style)
- minimax-pdf — Generate, fill, and reformat PDF documents with a token-based design system
- pptx-generator — Generate, edit, and read PowerPoint presentations
- minimax-xlsx — Open, create, read, analyze, edit, or validate Excel/spreadsheet files
Updating
cd ~/.minimax-skills && git pull
Symlinks will automatically point to the updated content — no need to re-link.
Uninstalling
macOS / Linux
rm -rf ~/.config/opencode/skills
rm -rf ~/.minimax-skills
Windows (PowerShell)
Remove-Item -Recurse -Force "$env:USERPROFILE\.config\opencode\skills"
Remove-Item -Recurse -Force "$env:USERPROFILE\.minimax-skills"
Troubleshooting
Skills not found
- Verify symlinks exist:
ls -la ~/.config/opencode/skills/ - Each skill folder should contain a
SKILL.mdfile - Restart OpenCode after installation
Getting Help
- Report issues: https://github.com/MiniMax-AI/skills/issues