skills/mise/SKILL.md
Set up, configure, and maintain development environments with `mise` (mise-en-place) — the polyglot tool/version manager, per-directory environment switcher, and task runner. ALWAYS use this skill when the user mentions mise, `mise.toml`, `.mise.toml`, `mise use`, `mise run`, pinning tool/language versions per project, an asdf / nvm / rbenv / pyenv / direnv replacement, a `.tool-versions` file, or wants project-scoped env vars and task automation in one config. Also trigger when scaffolding a dev environment for a repo, migrating from asdf/nvm/direnv/make to mise, adding a tool from a backend (npm, cargo, pipx, aqua, ubi/GitHub), or diagnosing "tool not found" / activation / shim problems. Covers house conventions, a sample-driven config template, workflows, a `mise.toml` best-practice linter, and a full CLI reference. NOT FOR system package management (apt/brew for OS libraries), Nix flakes, or make-style file-timestamp build graphs with complex dependency trees.
npx skillsauth add julianobarbosa/claude-code-skills miseInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
mise (pronounced "meez", short for mise-en-place) is a single static binary that does three jobs
that usually take three tools:
| Job | Tools it replaces | Where it lives in config |
|-----|-------------------|--------------------------|
| Manage tool/language versions per project | asdf, nvm, rbenv, pyenv | [tools] |
| Switch environment variables per directory | direnv, dotenv | [env] |
| Run project tasks | make, npm scripts, just | [tasks.*] + mise run |
Everything lives in one committed mise.toml. This skill enforces a consistent house style so
every project's mise config reads the same way, and treats mise.toml as source-controlled infra:
pinned, reviewable, reproducible.
mise.toml can execute code (via [tasks], env._.source, env._.file). Two habits keep that safe
and predictable:
mise --version and mise doctor. doctor
tells you whether the shell is activated, whether shims are on PATH, and which config files load.
Never assume — the #1 class of mise bugs is "tool installed but not found", and it's almost always
an activation/shim issue, not a version issue.mise.toml, mise trust in that directory (or add the path to
trusted_config_paths).Per the operating rules here: any executable helper you add to a project ships as TypeScript run
with bun, never Python or npm/npx.
Route to the workflow file that matches the request. Each is a self-contained recipe — read it, then follow it.
| The user wants to… | Workflow |
|--------------------|----------|
| Stand up mise for a repo (tools + env + tasks from scratch) | Workflows/SetupProject.md |
| Add or pin a tool, pick the right backend | Workflows/AddTool.md |
| Define, wire, and run tasks | Workflows/CreateTasks.md |
| Move an existing repo off asdf / nvm / direnv / make | Workflows/MigrateToMise.md |
| Fix "tool not found" / wrong version / activation / trust | Workflows/Troubleshoot.md |
Reach for Templates.md whenever you need a concrete starting mise.toml — copy the closest sample
and delete what doesn't apply rather than writing one from a blank page.
These conventions are what the linter (Tools/lint.ts) checks. They exist because a mise.toml is a
contract the whole team (and CI, and future-you) reads — surprises in it are expensive.
node = '24' or node = '24.3.0', not node = 'latest'.
latest means "whatever exists the day someone runs mise install" — it silently breaks
reproducibility, which is the entire reason to use mise. latest is fine for a throwaway
mise x, never for mise.toml. Global ~/.config/mise/config.toml is the one place lts/latest
is acceptable, because it's personal, not shared.[tools], then [env], then [tasks.*],
then [settings]. Tools define the world, env configures it, tasks act in it.description. mise tasks is the project's command menu; an undescribed task
is a dead entry. One line, imperative ("Build the release binary")..env/.env.json via
env._.file, or mark them redact = true. A literal token in a committed mise.toml is a leak.mise.local.toml (git-ignored), not in the committed file. Keep the
shared config clean.mise use over hand-editing for tools, because it installs and writes the pin in one
reviewable step — but hand-editing is fine and expected for env and tasks.mise install and get different tool
versions, the config has failed at its one job. Pinning is not pedantry; it's the deliverable.mise activate updates PATH
at your shell prompt — great interactively, invisible to scripts/IDEs/cron because they never hit a
new prompt. Shims (~/.local/share/mise/shims) are real files that work everywhere. When something
can't find a tool outside an interactive shell, the fix is shims or mise exec, not reinstalling.
See References/Configuration.md and Workflows/Troubleshoot.md.sources/outputs turn tasks into a cheap build cache. A task that declares what it reads and
writes is skipped when nothing changed — make-style incrementality without make's footguns.mise.toml pins the toolchain, delete the
"install node 24, python 3.12…" prose from onboarding docs and point at mise install. The config
is now the single source of truth; two sources drift.After writing or editing a mise.toml, lint it and prove it loads:
bun <skill-dir>/Tools/lint.ts path/to/mise.toml --strict # house-style + safety check
mise trust path/to/ # trust the dir if new
mise install # resolves + installs everything
mise ls # confirm the versions you expect are active
mise tasks # confirm tasks are listed with descriptions
<skill-dir> is this skill's directory (wherever this SKILL.md lives — never assume a fixed
install path). --strict makes warnings fail the exit code too, so the lint works as a real gate.
A change isn't finished because the file parses — it's finished when mise install succeeds and the
tools/tasks you intended actually show up. Verify, don't assume.
Load the reference that matches the depth you need — these hold the exhaustive detail so this file stays scannable.
References/Configuration.md — mise.toml structure, config resolution & precedence, [settings],
trust, activation vs shims.References/Tools.md — version strings, use/install/ls/upgrade/prune, backends (npm,
cargo, pipx, aqua, ubi, go, asdf/vfox).References/Tasks.md — TOML & file tasks, depends, sources/outputs, usage argument specs,
parallelism.References/Environments.md — [env], _.file/_.source/_.path, secrets & redaction, templates.References/CliReference.md — every command you reach for, grouped by purpose.testing
Brief description of what this skill does. Include specific triggers - when should Claude use this skill? Example triggers, file types, or keywords that indicate this skill applies.
tools
Manage and troubleshoot PATH configuration in zsh. Use when adding tools to PATH (bun, nvm, Python venv, cargo, go), diagnosing "command not found" errors, validating PATH entries, or organizing shell configuration in .zshrc and .zshrc.local files.
tools
Zabbix monitoring system automation via API and Python. Use when: (1) Managing hosts, templates, items, triggers, or host groups, (2) Automating monitoring configuration, (3) Sending data via Zabbix trapper/sender, (4) Querying historical data or events, (5) Bulk operations on Zabbix objects, (6) Maintenance window management, (7) User/permission management
development
Operate YouTube Music via natural language. Search songs, artists, albums, playlists, lyrics, charts, recommendations, and control playback. Browse personal library, manage playlists, rate tracks, and inspect account info. Use this skill whenever the user asks about YouTube Music, wants to play music, manage playlists, search by song or artist name, inspect lyrics, or control playback.