CtrlK
BlogDocsLog inGet started
Tessl Logo

pantheon-ai/mise-complete

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

Overview
Skills
Evals
Files

tools-plugins.mdreferences/

Tool Plugins

Understanding Mise's plugin system and available tool plugins.

Core vs Plugin Tools

Core Tools (Built-in)

Mise has built-in support for popular tools (no plugins needed):

[tools]
# Core tools - faster, no plugin installation
node = "20.10.0"
python = "3.12.0"
java = "21"
go = "1.21"
rust = "1.75"

Plugin Tools

Other tools use the asdf plugin ecosystem:

# List available plugins
mise plugins ls-remote

# Install a plugin
mise plugins install postgres

# Use the plugin
mise use postgres@16.1

Common Plugin Tools

Databases

[tools]
postgres = "16.1"
mysql = "8.2"
redis = "7.2"
mongodb = "7.0"

Cloud CLI Tools

[tools]
awscli = "2.13"
gcloud = "450.0"
kubectl = "1.28"
helm = "3.13"

Build Tools

[tools]
cmake = "3.27"
make = "4.4"
bazel = "7.0"

Package Manager Backends

npm Backend

Install npm packages as tools:

[tools]
"npm:typescript" = "5.3"
"npm:prettier" = "3.1"
"npm:eslint" = "8.55"

cargo Backend

Install cargo packages as tools:

[tools]
"cargo:eza" = "latest"
"cargo:ripgrep" = "latest"
"cargo:fd-find" = "latest"

go Backend

Install Go tools:

[tools]
"go:github.com/golangci/golangci-lint/cmd/golangci-lint" = "latest"

Plugin Management

Installing Plugins

# Auto-install when using tool
mise use postgres@16

# Manual plugin installation
mise plugins install postgres

# Install from custom URL
mise plugins install myplugin https://github.com/user/mise-myplugin

Updating Plugins

# Update all plugins
mise plugins update

# Update specific plugin
mise plugins update node

# List installed plugins
mise plugins ls

Removing Plugins

# Uninstall plugin
mise plugins uninstall postgres

Custom Plugins

Using Custom Plugin Repositories

# Install from GitHub
mise plugins install custom https://github.com/org/mise-custom

# Use custom plugin
mise use custom@1.0.0

Plugin Configuration

[plugins]
# Configure plugin behavior
postgres = { repo = "https://github.com/custom/mise-postgres" }

Backend Priority

When a tool is available from multiple sources:

[tools]
# 1. Core backend (fastest, preferred)
node = "20.10.0"

# 2. Explicit backend selection
node = "core:20.10.0"
python = "core:3.12.0"

# 3. Plugin backend
ruby = "asdf:3.3.0"

# 4. Package manager backend
"npm:typescript" = "5.3"

Best Practices

Prefer Core Tools

# Good: Use core tools when available
[tools]
node = "20.10.0"
python = "3.12.0"

# Avoid: Explicitly using plugin backend
[tools]
node = "asdf:20.10.0"  # Unnecessary

Pin Plugin Versions in CI

# In CI/CD, ensure consistent plugin versions
mise plugins install --sha 7c839f8 postgres

Document Plugin Requirements

# mise.toml
[tools]
# Requires postgres plugin
postgres = "16.1"

# Core tool, no plugin needed
node = "20.10.0"

Troubleshooting

Plugin Not Found

# Error: Plugin not found
mise use unfamiliar-tool@1.0

# Solution: Install plugin first
mise plugins install unfamiliar-tool
mise use unfamiliar-tool@1.0

Plugin Installation Fails

# Check plugin repository
mise plugins ls-remote | grep postgres

# Try manual installation
mise plugins install postgres

# Check plugin status
mise doctor

Version Not Available

# Check available versions
mise ls-remote node

# Try different version
mise use node@20.10.0

Install with Tessl CLI

npx tessl i pantheon-ai/mise-complete@0.1.0

references

config-anti-patterns.md

config-best-practices.md

config-management.md

config-structure.md

env-definition.md

env-hierarchies.md

env-loading.md

env-patterns.md

tasks-definition.md

tasks-execution.md

tasks-organization.md

tasks-patterns.md

tools-installation.md

tools-migration.md

tools-plugins.md

tools-versions.md

SKILL.md

tile.json