2026-03-17 16:20:46 +08:00
|
|
|
# Installing MiniMax Skills for OpenCode
|
|
|
|
|
|
|
|
|
|
## Prerequisites
|
|
|
|
|
|
|
|
|
|
- [OpenCode.ai](https://opencode.ai) installed
|
|
|
|
|
|
|
|
|
|
## Installation
|
|
|
|
|
|
2026-03-17 18:43:30 +08:00
|
|
|
### macOS / Linux
|
2026-03-17 16:20:46 +08:00
|
|
|
|
2026-03-17 18:43:30 +08:00
|
|
|
```bash
|
|
|
|
|
git clone https://github.com/MiniMax-AI/skills.git ~/.minimax-skills
|
|
|
|
|
|
|
|
|
|
mkdir -p ~/.config/opencode/skills
|
2026-03-31 21:00:33 +08:00
|
|
|
for skill in ~/.minimax-skills/skills/*/; do
|
|
|
|
|
skill_name=$(basename "$skill")
|
|
|
|
|
ln -s "$skill" ~/.config/opencode/skills/minimax-"$skill_name"
|
|
|
|
|
done
|
2026-03-17 18:43:30 +08:00
|
|
|
```
|
|
|
|
|
|
|
|
|
|
### Windows (PowerShell)
|
|
|
|
|
|
|
|
|
|
```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 {
|
2026-03-31 21:00:33 +08:00
|
|
|
New-Item -ItemType SymbolicLink -Path "$env:USERPROFILE\.config\opencode\skills\minimax-$($_.Name)" -Target $_.FullName
|
2026-03-17 16:20:46 +08:00
|
|
|
}
|
|
|
|
|
```
|
|
|
|
|
|
2026-03-17 18:43:30 +08:00
|
|
|
> **Note:** Creating symbolic links on Windows may require administrator privileges or Developer Mode enabled.
|
|
|
|
|
|
|
|
|
|
Restart OpenCode to discover the skills.
|
2026-03-17 16:20:46 +08:00
|
|
|
|
|
|
|
|
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
|
2026-03-17 17:25:23 +08:00
|
|
|
- **ios-application-dev** — iOS application development with UIKit, SnapKit, and SwiftUI
|
|
|
|
|
- **shader-dev** — GLSL shader techniques for stunning visual effects (ShaderToy-compatible)
|
2026-03-17 19:54:03 +08:00
|
|
|
- **gif-sticker-maker** — Convert photos into animated GIF stickers (Funko Pop / Pop Mart style)
|
2026-03-22 14:04:34 +08:00
|
|
|
- **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
|
2026-03-22 19:35:44 +08:00
|
|
|
- **minimax-docx** — Professional DOCX document creation, editing, and formatting using OpenXML SDK
|
2026-03-17 16:20:46 +08:00
|
|
|
|
2026-03-17 18:43:30 +08:00
|
|
|
## Updating
|
2026-03-17 16:20:46 +08:00
|
|
|
|
2026-03-17 18:43:30 +08:00
|
|
|
```bash
|
|
|
|
|
cd ~/.minimax-skills && git pull
|
2026-03-17 16:20:46 +08:00
|
|
|
```
|
|
|
|
|
|
2026-03-17 18:43:30 +08:00
|
|
|
Symlinks will automatically point to the updated content — no need to re-link.
|
2026-03-17 16:20:46 +08:00
|
|
|
|
2026-03-17 18:43:30 +08:00
|
|
|
## Uninstalling
|
2026-03-17 16:20:46 +08:00
|
|
|
|
2026-03-17 18:43:30 +08:00
|
|
|
### macOS / Linux
|
2026-03-17 16:20:46 +08:00
|
|
|
|
2026-03-17 18:43:30 +08:00
|
|
|
```bash
|
2026-03-31 21:00:33 +08:00
|
|
|
rm -f ~/.config/opencode/skills/minimax-*
|
2026-03-17 18:43:30 +08:00
|
|
|
rm -rf ~/.minimax-skills
|
2026-03-17 16:20:46 +08:00
|
|
|
```
|
|
|
|
|
|
2026-03-17 18:43:30 +08:00
|
|
|
### Windows (PowerShell)
|
2026-03-17 16:20:46 +08:00
|
|
|
|
2026-03-17 18:43:30 +08:00
|
|
|
```powershell
|
2026-03-31 21:00:33 +08:00
|
|
|
Get-ChildItem "$env:USERPROFILE\.config\opencode\skills\minimax-*" | Remove-Item -Force
|
2026-03-17 18:43:30 +08:00
|
|
|
Remove-Item -Recurse -Force "$env:USERPROFILE\.minimax-skills"
|
|
|
|
|
```
|
2026-03-17 16:20:46 +08:00
|
|
|
|
2026-03-17 18:43:30 +08:00
|
|
|
## Troubleshooting
|
2026-03-17 16:20:46 +08:00
|
|
|
|
|
|
|
|
### Skills not found
|
|
|
|
|
|
2026-03-17 18:43:30 +08:00
|
|
|
1. Verify symlinks exist: `ls -la ~/.config/opencode/skills/`
|
|
|
|
|
2. Each skill folder should contain a `SKILL.md` file
|
|
|
|
|
3. Restart OpenCode after installation
|
2026-03-17 16:20:46 +08:00
|
|
|
|
|
|
|
|
## Getting Help
|
|
|
|
|
|
|
|
|
|
- Report issues: https://github.com/MiniMax-AI/skills/issues
|