From antigravity-awesome-skills
Generates production-ready mise.toml configurations for local dev, CI/CD pipelines, and toolchain standardization across Node.js, Python, Go, Rust, Java, Bun, Terraform stacks. Replaces asdf, nvm, pyenv.
How this skill is triggered — by the user, by Claude, or both
Slash command
/antigravity-awesome-skills:mise-configuratorThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
This skill generates clean, production-ready `mise.toml` configurations for local development environments and CI/CD pipelines.
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
npx claudepluginhub sickn33/antigravity-awesome-skills --plugin antigravity-awesome-skillsGenerate production-ready mise.toml setups for local development, CI/CD pipelines, and toolchain standardization.
Guides on using mise to manage dev tool versions, environment variables, and project tasks. Activates when configuring reproducible development environments.