mise
Provides expert guidance on mise (mise-en-place) — a polyglot dev tool and environment orchestrator that manages runtimes, environment variables, and project tasks. This skill should be used when users ask about mise configuration (mise.toml), installing or switching tool versions (Node, Python, Go, .NET, etc.), the mise task runner, environment variable management, secrets with SOPS/fnox, backends (ubi, cargo, npm, aqua), Lua plugins, shell hooks, migrating from asdf/nvm/direnv, or debugging with mise doctor.
What this skill does
# Mise Skill
Expert guidance on [mise](https://mise.jdx.dev) — the single tool that replaces asdf, nvm, pyenv, direnv, and make. Covers installation, mise.toml configuration, runtime management, task runner, environment variables, secrets, backends, Lua plugins, and team workflows.
## Quick Reference Table
| Task | Load Resource | Key Concepts |
|------|--------------|--------------|
| Install mise or activate in shell | references/core-concepts.md | curl install, shell activation, mise doctor |
| Configure tools and env vars in mise.toml | references/core-concepts.md | [tools], [env], config hierarchy, mise.local.toml |
| List, install, upgrade, or pin tool versions | references/commands-reference.md | mise use, mise install, mise upgrade, mise prune |
| Understand backends (ubi, cargo, npm, aqua) | references/backends.md | Core, UBI, Cargo, npm, Pipx, Aqua, Lua plugins |
| Define and run project tasks | references/task-runner.md | [tasks], mise run, depends, parallel, monorepo |
| Manage environment variables and secrets | references/environment-secrets.md | _.path, _.file, templating, SOPS, fnox |
| Advanced: caching, hooks, Pitchfork daemons | references/advanced-features.md | msgpack cache, Lua hooks, Pitchfork, Usage completions |
| Migrate from asdf, nvm, or direnv | references/core-concepts.md | .tool-versions, .nvmrc, compatibility |
| Team workflows, CI/CD, lockfiles | references/advanced-features.md | mise.lock, monorepo tasks, CI integration |
## Orchestration Protocol
### Phase 1 — Classify the Task
Identify which category the user's request falls into:
- **Setup** — installing mise, activating in shell, configuring global tools
- **Configuration** — writing or editing mise.toml, pinning versions, managing hierarchy
- **Tool management** — installing, listing, upgrading, or switching runtime versions
- **Backends** — choosing the right backend for a tool (ubi, aqua, cargo, npm)
- **Tasks** — defining and running tasks, task dependencies, monorepo tasks
- **Environment** — setting env vars, PATH modifications, .env file loading
- **Secrets** — SOPS encryption, fnox remote secrets
- **Advanced** — caching internals, Lua plugins, Pitchfork daemons, shell hooks
- **Migration** — moving from asdf, nvm, pyenv, or direnv
### Phase 2 — Load the Right Resource
Load the resource indicated in the Quick Reference Table. For tasks spanning multiple areas (e.g. "set up a new project with tools, tasks, and secrets"), load all relevant files. The files are lean enough to load together.
### Phase 3 — Execute
Apply guidance from the loaded resource. Produce complete, commented mise.toml snippets where configuration is involved. Always suggest `mise doctor` as the first debugging step for any environment issue.
## Common Task Workflows
### Workflow 1: Bootstrap a New Project
1. Load references/core-concepts.md for config hierarchy
2. Create mise.toml in the project root with [tools] for required runtimes
3. Add [env] section for project-specific environment variables
4. Run `mise install` to install all declared tools
5. Commit mise.toml; add mise.local.toml to .gitignore for personal overrides
```toml
[tools]
node = "22"
python = "3.12"
[env]
NODE_ENV = "development"
_.path = ["./node_modules/.bin"]
```
### Workflow 2: Replace nvm / asdf
1. Load references/core-concepts.md
2. Mise auto-reads .nvmrc and .tool-versions — no conversion needed immediately
3. Activate mise in shell profile: `eval "$(mise activate zsh)"`
4. Uninstall nvm/asdf once comfortable; run `mise doctor` to verify
5. Migrate to mise.toml to unlock env vars and tasks
### Workflow 3: Define Project Tasks
1. Load references/task-runner.md
2. Add [tasks.name] blocks to mise.toml
3. Set depends for prerequisite tasks
4. Run: `mise run <task>` or `mise run --list` to see all tasks
### Workflow 4: Manage Secrets with SOPS
1. Load references/environment-secrets.md
2. Install sops: `mise use --global sops`
3. Encrypt secrets file with age key
4. Reference in mise.toml: `_.file = { path = "secrets.enc.json", decrypt = true }`
### Workflow 5: Troubleshoot Environment Issues
1. Run `mise doctor` — surfaces shell integration problems, PATH issues, shim conflicts
2. Run `mise env` — shows exactly which env vars mise will set in the current directory
3. Run `mise ls` — lists active tool versions in the current directory
4. Load references/core-concepts.md for config hierarchy to diagnose overrides
## Resource Summaries
| File | Contents | Lines |
|------|----------|-------|
| references/core-concepts.md | Installation, shell activation, mise.toml format, config hierarchy, migration from asdf/nvm | ~280 |
| references/commands-reference.md | Full command reference: use, install, upgrade, exec, ls, prune, doctor, env | ~240 |
| references/backends.md | Core, UBI, Cargo, npm, Pipx, Aqua backends; Lua plugin architecture; writing custom plugins | ~260 |
| references/task-runner.md | Task definitions, depends, parallel execution, file tasks, monorepo tasks, Usage completions | ~250 |
| references/environment-secrets.md | [env] reference, PATH management, Tera templating, SOPS integration, fnox remote secrets | ~240 |
| references/advanced-features.md | Caching architecture, Lua lifecycle hooks, Pitchfork daemon manager, shell hooks, team CI/CD | ~260 |
## Best Practices
- **Commit mise.toml** — treat it as the project's source of truth for the toolchain; everyone on the team gets the same runtimes
- **Use mise.local.toml for personal overrides** — add it to .gitignore; never commit personal paths or secrets
- **Prefer `mise use` over hand-editing** — `mise use node@22` writes the correct version and installs the tool atomically
- **Global tools = CLI utilities only** — use `mise use --global` for ripgrep, bat, gh; enforce local versions for runtimes to ensure reproducibility
- **Always run `mise doctor` first** — it diagnoses 90% of "tool not found" / "wrong version" issues instantly
- **Use lockfiles for CI strictness** — enable mise.lock (experimental) to pin exact patch versions
- **Don't mix mise + asdf shims** — they conflict on PATH; remove asdf entirely when migrating
## External References
- [mise documentation](https://mise.jdx.dev) — official docs
- [mise GitHub](https://github.com/jdx/mise) — source and releases
- [mise backends list](https://mise.jdx.dev/dev-tools/backends/) — all available backends
- [mise plugins registry](https://github.com/mise-plugins/registry) — community plugins
- [SOPS documentation](https://github.com/mozilla/sops) — secrets encryption
- [Pitchfork](https://github.com/jdx/pitchfork) — daemon manager companion tool
- [fnox](https://github.com/jdx/fnox) — remote secrets companion tool
Related in Backend & APIs
jfrog
IncludedInteract with the JFrog Platform via the JFrog CLI and REST/GraphQL APIs. Use this skill when the user wants to manage Artifactory repositories, upload or download artifacts, manage builds, configure permissions, manage users and groups, work with access tokens, configure JFrog CLI servers, search artifacts, manage properties, set up replication, manage JFrog Projects, run security audits or scans, look up CVE details, query exposures scan results from JFrog Advanced Security, manage release bundles and lifecycle operations, aggregate or export platform data, or perform any JFrog Platform administration task. Also use when the user mentions jf, jfrog, artifactory, xray, distribution, evidence, apptrust, onemodel, graphql, workers, mission control, curation, advanced security, exposures, or any JFrog product name.
cupynumeric-migration-readiness
IncludedPre-migration readiness assessor for porting NumPy to cuPyNumeric. Use BEFORE substantial porting work begins when the user asks whether code will scale on GPU, whether they should migrate to cuPyNumeric, which NumPy patterns transfer cleanly, what must be refactored before porting, or mentions pre-port assessment, scaling analysis, or refactor planning. Inspect the user's source code, look up NumPy usage, cross-reference the cuPyNumeric API support manifest, and distinguish distributed-scaling-friendly patterns from blockers such as unsupported APIs, scalar synchronization, host round-trips, Python/object-heavy control flow, shape/data-dependent branching, and in-place mutation hazards. Produce a verdict of READY, LIGHT REFACTOR, SIGNIFICANT REFACTOR, or NOT RECOMMENDED, with concrete refactor pointers.
alibabacloud-data-agent-skill
IncludedInvoke Alibaba Cloud Apsara Data Agent for Analytics via CLI to perform natural language-driven data analysis on enterprise databases. Data Agent for Analytics is an intelligent data analysis agent developed by Alibaba Cloud Database team for enterprise users. It automatically completes requirement analysis, data understanding, analysis insights, and report generation based on natural language descriptions. This tool supports: discovering data resources (instances/databases/tables) managed in DMS, initiating query or deep analysis sessions, real-time progress tracking, and retrieving analysis conclusions and generated reports. Use this Skill when users need to query databases, analyze data trends, generate data reports, ask questions in natural language, or mention "Data Agent", "data analysis", "database query", "SQL analysis", "data insights".
token-optimizer
IncludedReduce OpenClaw token usage and API costs through smart model routing, heartbeat optimization, budget tracking, and native 2026.2.15 features (session pruning, bootstrap size limits, cache TTL alignment). Use when token costs are high, API rate limits are being hit, or hosting multiple agents at scale. The 4 executable scripts (context_optimizer, model_router, heartbeat_optimizer, token_tracker) are local-only — no network requests, no subprocess calls, no system modifications. Reference files (PROVIDERS.md, config-patches.json) document optional multi-provider strategies that require external API keys and network access if you choose to use them. See SECURITY.md for full breakdown.
resend-cli
IncludedUse this skill when the task is specifically about operating Resend from an AI agent, terminal session, or CI job via the official resend CLI: installing/authenticating the CLI, sending/listing/updating/cancelling emails, batch sends, domains and DNS, webhooks and local listeners, inbound receiving, contacts, topics, segments, broadcasts, templates, API keys, profiles, or debugging Resend CLI/API failures. Trigger on mentions of Resend CLI, `resend`, `resend doctor`, `resend emails send`, `resend domains`, `resend webhooks listen`, `resend emails receiving`, or agent-friendly terminal automation.
alibabacloud-odps-maxframe-coding
IncludedUse this skill for MaxFrame SDK development and documentation navigation on Alibaba Cloud MaxCompute (ODPS). Helps answer MaxFrame API, concept, official example, and supported pandas API questions; create data processing programs; read/write MaxCompute tables; debug jobs (remote or local); and build custom DPE runtime images. Trigger when users mention MaxFrame, MaxCompute with MaxFrame, ODPS table processing, DPE runtime, MaxFrame docs/examples, DataFrame/Tensor operations, or GPU runtime setup. Works for both English and Chinese queries about Alibaba Cloud data processing with MaxFrame.