ワンクリックで
mise-configurator
// Generate production-ready mise.toml setups for local development, CI/CD pipelines, and toolchain standardization.
// Generate production-ready mise.toml setups for local development, CI/CD pipelines, and toolchain standardization.
[HINT] SKILL.mdと関連ファイルを含む完全なスキルディレクトリをダウンロード
| name | mise-configurator |
| description | Generate production-ready mise.toml setups for local development, CI/CD pipelines, and toolchain standardization. |
| category | devops |
| risk | safe |
| source | self |
| source_type | self |
| date_added | 2026-04-16 |
| author | community |
| tags | ["mise","devops","ci-cd","toolchain","runtimes","automation"] |
| tools | ["claude","cursor","gemini"] |
This skill generates clean, production-ready mise.toml configurations for local development environments and CI/CD pipelines.
It helps standardize runtime versions, simplify onboarding, replace legacy version managers like asdf, nvm, and pyenv, and create reproducible multi-language environments with minimal setup effort.
mise.toml.tool-versions, asdf, nvm, or pyenvInspect available repository files such as:
package.jsonpnpm-lock.yamlpyproject.tomlrequirements.txtgo.modCargo.toml.tool-versionsDockerfileInfer languages, package managers, and pinned versions.
mise.tomlCreate a minimal, valid, copy-paste-ready configuration using:
Provide setup commands such as:
mise trust
mise install
If requested, generate pipeline examples using mise with caching and runtime installation.
[tools]
node = "22.11.0"
pnpm = "9.15.0"
[tools]
python = "3.12.7"
poetry = "1.8.4"
steps:
- uses: actions/checkout@v4
- uses: jdx/mise-action@v2
- run: poetry install
- run: pytest
✅ Respect versions already pinned in the repository
✅ Keep configs minimal and readable
✅ Prefer stable runtime releases
✅ Generate CI examples with caching
✅ Ask for target versions before pinning when the repository does not already declare them
❌ Do not use floating latest or lts aliases in shared production configs unless explicitly requested
❌ Do not over-engineer unnecessary tool entries
❌ Do not ignore existing lockfiles or version files
This skill does not replace environment-specific validation, testing, or expert review.
Stop and ask for clarification if required inputs, permissions, or safety boundaries are missing.
Runtime availability may vary by OS, shell, or CI platform.
Some plugins or niche tools may require manual adjustment.
Review generated shell commands before execution.
Confirm CI/CD permissions before modifying pipelines.
Validate runtime versions against production requirements.
Use only in authorized repositories and environments.
Problem: Wrong runtime version selected
Solution: Check repository lockfiles and pinned versions first.
Problem: CI installs are slow
Solution: Enable cache layers and reuse mise cache directories.
Problem: Tool missing from registry
Solution: Verify plugin support or install manually.
@docker-expert - Use when building containerized development environments
@github-actions-templates - Use for advanced workflow automation
@monorepo-architect - Use for large multi-package repositories