Allow users to identify and uninstall minimax skills without affecting other skills in the same directory.
- Create individual minimax-{skill_name} symlinks instead of single broken link
- Uninstall now removes only minimax-* symlinks, preserving other skills
- Fix Windows PowerShell naming to match
- Add Chinese installation guide (low-priority)
2.7 KiB
2.7 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
for skill in ~/.minimax-skills/skills/*/; do
skill_name=$(basename "$skill")
ln -s "$skill" ~/.config/opencode/skills/minimax-"$skill_name"
done
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\minimax-$($_.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
- minimax-docx — Professional DOCX document creation, editing, and formatting using OpenXML SDK
Updating
cd ~/.minimax-skills && git pull
Symlinks will automatically point to the updated content — no need to re-link.
Uninstalling
macOS / Linux
rm -f ~/.config/opencode/skills/minimax-*
rm -rf ~/.minimax-skills
Windows (PowerShell)
Get-ChildItem "$env:USERPROFILE\.config\opencode\skills\minimax-*" | Remove-Item -Force
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