MiniMax-AI/MiniMax-Code-Plugins
Python
Captured source
source ↗MiniMax-AI/MiniMax-Code-Plugins
Description: Community registry and contribution toolkit for MiniMax Code plugins.
Language: Python
License: Apache-2.0
Stars: 5
Forks: 2
Open issues: 3
Created: 2026-08-17T12:23:34Z
Pushed: 2026-08-17T12:25:52Z
Default branch: main
Fork: no
Archived: no
README:
简体中文 · Contribute · Plugin contract · Security
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.md](CONTRIBUTING.md) when you want the full review checklist.
What can a Plugin add?
Skills
Package reusable instructions, workflows, and domain knowledge. Skills are the fastest path from a good prompt pattern to a capability anyone can install.
MCP servers
Connect MiniMax Code to local tools or remote services with stdio, streamable-http, or sse. Dependencies, accounts, network destinations, and data handling must be visible before install.
Both
Use a Skill to teach the workflow and MCP to provide the tools. The portable package stays small:
plugin-root/ ├── plugin.json ├── mcp.json # optional └── skills/ # optional
This repository is for Agent capabilities. TUI Extensions are a separate system and are not loaded from this package format.
The gate is simple
A contribution must:
- live at
plugins//; - include
plugin.json,README.md, andLICENSE; - expose at least one valid Skill or MCP server;
- document a copyable example, requirements, network access, and data use;
- contain no secrets, private endpoints, hidden telemetry, native binaries, or symlinks;
- pass
npm run checkand human review.
Passing review means the Plugin is available as community software. It is not a MiniMax endorsement or a complete security audit. Read the source and requested capabilities before installing.
Explore the project
- [
plugins/](plugins/) — community Plugin source - [
examples/hello-mcode](examples/hello-mcode/) — smallest Skill Plugin - [
examples/hello-mcode-mcp](examples/hello-mcode-mcp/) — dependency-free stdio MCP - [
docs/plugin-compatibility.md](docs/plugin-compatibility.md) — exact supported contract - [
docs/security-model.md](docs/security-model.md) — validation and trust model - [
docs/architecture.md](docs/architecture.md) — hosted contribution architecture - [
GOVERNANCE.md](GOVERNANCE.md) — decisions and maintainer responsibilities
Community preview
The contract is intentionally narrow while MiniMax Code's public Plugin surface stabilizes. Hooks, custom Agents, Commands, LSP, Apps, generic OAuth, and TUI Extensions are not advertised as current Agent Plugin capabilities.
Bring one useful capability. Make the example undeniable. Ship it in one pull request.
License
Repository tooling and documentation use Apache-2.0. Every hosted Plugin includes and declares its own open-source license.