MiniMax-AI

MiniMax Code Plugins — Development skill for Claude Code

Development community

Community registry and contribution toolkit for MiniMax Code plugins.

How to install MiniMax Code Plugins

This entry records only its repository, not the path inside it, so there is no exact command to give. Open MiniMax-AI/MiniMax-Code-Plugins and copy the folder into ~/.claude/skills/, or the file into ~/.claude/agents/.

What MiniMax Code Plugins does

Community registry and contribution toolkit for MiniMax Code plugins.

Alternatives in Development

README

MiniMax Code Plugins — one folder, one pull request, a new agent superpower

简体中文 · Contribute · Plugin contract · Security

Build status Agent Plugins 1.0 Apache-2.0 license Pull requests welcome

One folder is the release

MiniMax Code Plugins is the community home for Agent Plugins that run in MiniMax Code. Put a portable Plugin under `plugins//`, open a pull request, and let CI check the package users will actually install.

fork  →  create  →  build  →  check  →  pull request  →  discover

No second repository. No catalog JSON. No commit pin to copy. Your Plugin source, docs, review, and history live together.

Ship your first Plugin

git clone https://github.com//MiniMax-Code-Plugins.git
cd MiniMax-Code-Plugins
npm install
npm run create -- /my-first-plugin

The scaffold gives you a Skill-first Plugin:

plugins//my-first-plugin/
├── plugin.json
├── README.md
├── LICENSE
└── skills/
    └── my-first-plugin/
        └── SKILL.md

Replace every `TODO`, then run:

npm run check

If it passes, open one pull request for that Plugin. Start with [`CONTRIBUTING