17930e9650472ab7bc7976aa181f2fdde6c3675b
Changes: - Added 'minimax' provider to LLM factory - Changed default LLM_PROVIDER from 'ust' to 'minimax' - Changed default LLM_MODEL from 'Qwen' to 'MiniMax-Text-01' - Updated REASONING_MODEL_PROVIDER and TOOL_MODEL_PROVIDER to minimax - Sentiment tools now prefer MINIMAX_API_KEY over UST_KEY_API - .env.example updated with MiniMax defaults
OpenCode Skills
Personal collection of OpenCode skills for AI-powered terminal coding assistant.
Skills
skill-creator
Create new OpenCode skills with proper structure and templates.
Usage:
python3 scripts/create_skill.py <skill-name> "<description>"
Features:
- Auto-generates SKILL.md with proper frontmatter
- Creates script template with env loading
- Validates skill naming conventions
- Sets up .env.example and requirements.txt
Quick Install (Recommended)
Use the automated installer - it will:
- Detect all skills in the repo
- Prompt for required environment variables
- Create
.envfiles with your credentials - Install skills to OpenCode (global or per-project)
- Install Python dependencies
./scripts/install-skills.sh
Manual Setup
If you prefer manual setup:
- Install dependencies:
# Dependencies are installed automatically by install-skills.sh
- Configure API tokens in
.env:
# Copy .env.example to .env and add your credentials
- Install skills to OpenCode:
# Global install (available for all projects)
mkdir -p ~/.config/opencode/skills
cp -r skills/* ~/.config/opencode/skills/
# Or project-specific install
mkdir -p .opencode/skills
cp -r skills/* .opencode/skills/
Creating New Skills
Use the skill-creator to scaffold new skills:
python3 skills/skill-creator/scripts/create_skill.py my-new-skill "Description of what it does"
Then edit the generated files:
SKILL.md- Define commands and optionsscripts/my_new_skill.py- Implement the functionalityscripts/.env.example- Add required environment variables
Security
.envfiles are gitignored (never commit actual credentials)- Use
.env.exampleas template only
License
MIT
Description
Languages
Python
35.8%
C#
34.8%
TypeScript
10.8%
Shell
9.4%
Astro
4.6%
Other
4.5%