Skill llm minimax cn
Skill joeylu/runtime-free-llm-integration-skills/LLM/skill-llm-minimax-cn
Runtime-free skills for coding agents to build fail-fast LLM provider integrations across OpenAI, Aliyun Bailian / DashScope, DeepSeek, and Gemini.
npx -y skills add joeylu/runtime-free-llm-integration-skills --skill skill-llm-minimax-cnAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 1 stars1 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Runtime contract for MiniMax China Mainland direct-model integration. Use it to resolve exact MiniMax model IDs, OpenAI-compatible Chat Completions, multimodal M3 input, image generation, music generation, connection profiles, request fields, response mapping, pricing references, and logging. Model choice remains with the user or host project.
SKILL.md
3.9 KB, as published. Nobody here has run it
Skill LLM MiniMax China Mainland
Purpose
Define how an agent integrates a China Mainland MiniMax model already named by the user or host project. Keep this region separate because domains, credentials, availability, and pricing may differ.
Read Order
Read shared contracts first:
../_shared/route-key-schema.md../_shared/model-catalog-schema.md../_shared/pricing-matrix-schema.md../_shared/capability-matrix-schema.md../_shared/connection-profile-schema.md../_shared/request-url-matrix-schema.md../_shared/request-envelope.md../_shared/response-envelope.md../_shared/error-contract.md../_shared/progress-contract.md../_shared/ui-binding.md../_shared/sync-policy.md../_shared/logging-fields.md
Then read:
references/api-surface-scope.mdreferences/connection-profiles.mdreferences/request-urls.mdreferences/model-catalog.mdreferences/pricing-matrix.mdreferences/capability-matrix.md- the transport for the requested kind
references/logging-contract.mdwhen logging is implementedreferences/model-sync.mdonly for an explicit update or verification task
Read references/build-multimodal-http.md only for endpoint references not represented by a shared request kind.
Runtime Rules
- Use provider identifier
minimax-cnand the official base URL recorded in the resolved profile. - Send the exact model ID from
model-catalog.md. - Resolve connection profile, request kind, API surface, API version, endpoint kind, full route key, base URL, and request URL before capability lookup.
- Match capabilities by the exact full
RouteKeyrow, including API version and endpoint kind. chatandvisionuse OpenAI-compatiblePOST /v1/chat/completionswithMiniMax-M3.imagingusesPOST /v1/image_generationwithimage-01.musicusesPOST /v1/music_generationwithmusic-2.6.MiniMax-M3supports adaptive thinking, streaming, function tools, and image/video message input. This skill maps image input; video requires a separate typed host input contract.max_completion_tokensforMiniMax-M3has a documented recommended value of131072and maximum of524288.- Treat
buildandplanas credential/profile names, not model policy. Enforce only the request-kind restrictions recorded inconnection-profiles.md. - Do not switch between
https://api.minimaxi.com/v1and the other MiniMax region. - Do not infer Anthropic-compatible behavior from the OpenAI-compatible rows.
- Reject requested fields marked
unsupportedorunknown; do not silently drop them. - For music streaming,
stream=truerequires hex output. - Video endpoints remain reference-only until the shared request and response contracts define
RequestKind = video.
Request Flow
- Read the requested region, model, request kind, and profile.
- Resolve the exact request URL row.
- Resolve the exact catalog and capability rows.
- Validate thinking, tools, media, stream, image, and music fields.
- Apply the matching transport.
- Normalize the provider response, errors, progress, and logs through the shared contracts.
Request Kinds
chat: text-first Chat Completionsvision: image understanding through M3 message contentimaging: image generation throughimage-01music: music generation throughmusic-2.6
Out of Scope
- the other MiniMax region
- Anthropic-compatible MiniMax surfaces
- first-class video integration before the shared schema defines it
- model ranking or permission policy
- non-MiniMax providers