Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions src/main/services/SkillsService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,22 @@ export class SkillsService {
if (anthropicSkills.status === 'fulfilled') {
allSkills.push(...anthropicSkills.value);
}
allSkills.push({
id: 'mmx-cli',
displayName: 'MiniMax CLI',
description: 'Generate text, images, video, speech, and music via MiniMax AI platform',
source: 'skills-sh',
iconUrl: 'https://github.com/MiniMax-AI.png?size=80',
brandColor: '#171717',
defaultPrompt: 'Use MiniMax to generate content (text, image, video, speech, or music).',
frontmatter: {
name: 'mmx-cli',
description: 'Generate text, images, video, speech, and music via MiniMax AI platform',
},
installed: false,
owner: 'MiniMax-AI',
repo: 'cli',
});

const skills = deduplicateById(allSkills);

Expand Down
15 changes: 15 additions & 0 deletions src/main/services/skills/bundled-catalog.json
Original file line number Diff line number Diff line change
Expand Up @@ -626,6 +626,21 @@
"name": "internal-comms",
"description": "Draft internal communications and announcements"
}
},
{
"id": "mmx-cli",
"displayName": "MiniMax CLI",
"description": "Generate text, images, video, speech, and music via MiniMax AI platform",
"source": "skills-sh",
"iconUrl": "https://github.com/MiniMax-AI.png?size=80",
"brandColor": "#171717",
"defaultPrompt": "Use MiniMax to generate content (text, image, video, speech, or music).",
"frontmatter": {
"name": "mmx-cli",
"description": "Generate text, images, video, speech, and music via MiniMax AI platform"
},
"owner": "MiniMax-AI",
"repo": "cli"
}
]
}
Loading