Configure and operate Mise for deterministic developer environments. Use when installing runtime/tool versions, defining reusable tasks, managing layered environment variables, migrating from asdf/nvm/pyenv, or debugging mise.toml behavior in CI and local shells. Keywords: mise, mise.toml, tool versions, tasks, env, asdf migration, setup automation, dev environment.
Overall
score
99%
Does it follow best practices?
Validation for skill structure
Use this skill when setup, version management, or task automation needs to be standardized with Mise.
Do not use this skill when the repository intentionally uses another tool manager as the source of truth.
mise.toml per project scope.mise.toml tool versions.mise install && mise doctor.mise install fails, run mise doctor to diagnose path or plugin issues, then re-run mise install.mise installExpected result: configured runtimes are installed for the current project.
mise doctorExpected result: no errors reported; any warnings indicate misconfigured plugins or PATH issues to resolve before proceeding.
mise lsExpected result: each tool shows the pinned version from mise.toml as the active version.
mise use node@22Expected result: mise.toml updated with pinned Node version.
mise run testExpected result: task executes with the environment defined by Mise.
mise envExpected result: resolved environment variables and tool paths are printed.
sh skills/skill-quality-auditor/scripts/evaluate.sh mise-complete --jsonExpected result: updated audit dimensions and grade.
A minimal mise.toml showing pinned tool versions, a task definition, and a scoped environment variable:
[tools]
node = "22.4.0"
python = "3.12.3"
terraform = "1.8.5"
[tasks.test]
description = "Run test suite"
run = "npm test"
[tasks.lint]
description = "Run linter"
run = "npm run lint"
[env]
NODE_ENV = "development"node = "latest" for shared project tooling.mise.tomlcd or prior env exports.nvm and Mise controlling Node in CI.references/tools-installation.mdreferences/tools-versions.mdreferences/tools-migration.mdreferences/tasks-definition.mdreferences/tasks-execution.mdreferences/env-definition.mdreferences/env-hierarchies.mdreferences/config-structure.mdreferences/config-management.mdreferences/config-anti-patterns.mdInstall with Tessl CLI
npx tessl i pantheon-ai/mise-complete@0.1.0