Add minimax-video plugin for MiniMax-Hailuo video generation - #255
Merged
davepoon merged 1 commit intoJul 30, 2026
Merged
Conversation
davepoon
approved these changes
Jul 30, 2026
davepoon
left a comment
Owner
There was a problem hiding this comment.
Thanks for this contribution — looks solid.
Reviewed for security, prompt injection, and fit with the repo:
- Command frontmatter and
integration-synccategory validate cleanly - Auth uses
$MINIMAX_API_KEY(no secrets in-repo) - Endpoints/models match the MiniMax video-generation API flow (create → query → download)
- No remote instruction loading or prompt-injection patterns
- CI is green (schema validation + integration tests)
Merging.
Owner
|
Merged — thanks for the MiniMax video plugin. Welcome to the collection. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Reason: The marketplace had no MiniMax-Hailuo video-generation plugin, so this adds text-to-video and image-to-video with create, query, and download across the global and China endpoints.
Summary
Adds a new
minimax-videoplugin that lets Claude Code generate videos withMiniMax-Hailuo-2.3 and download the results. It wraps the asynchronous video
API — submit a task, poll status, retrieve the file — as four slash commands,
each usable against the global (
api.minimax.io) or China (api.minimaxi.com) host.Component Details
/minimax-video:text-to-video—POST /v1/video_generationfrom a text prompt/minimax-video:image-to-video—POST /v1/video_generationfrom a first-frame image/minimax-video:query-video—GET /v1/query/video_generationto poll atask_id/minimax-video:download-video—GET /v1/files/retrieveto resolve afile_idMiniMax-Hailuo-2.3; also documentsMiniMax-Hailuo-2.3-Fast,MiniMax-Hailuo-02,T2V-01-Director,T2V-01,I2V-01-Director,I2V-01-live,I2V-01.Authorization: Bearer $MINIMAX_API_KEY; success isbase_resp.status_code == 0.Files
plugins/minimax-video/.claude-plugin/plugin.jsonplugins/minimax-video/commands/{text-to-video,image-to-video,query-video,download-video}.mdplugins/minimax-video/README.mdTesting
npm run validate— all validations passednpm run test:unit— JS pagination tests pass (the TypeScript test needs a newer Node's--experimental-strip-typesand was not run in this environment)scripts/command-schema.json