一键导入
mise-setup
Set up mise (https://mise.jdx.dev) configuration in the current project. Use when a project needs mise tool/task configuration created or aligned.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Set up mise (https://mise.jdx.dev) configuration in the current project. Use when a project needs mise tool/task configuration created or aligned.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | mise-setup |
| description | Set up mise (https://mise.jdx.dev) configuration in the current project. Use when a project needs mise tool/task configuration created or aligned. |
| allowed-tools | Bash, Read, Write, Edit, AskUserQuestion |
| user-invocable | true |
This skill helps set up mise (https://mise.jdx.dev) configuration in the current project.
When this skill is invoked, you should:
Check if mise is installed
which mise to verify mise is availablecurl https://mise.run | sh and STOPCheck for existing configuration
mise.toml (preferred name)mise.toml in the current directory.Create or update mise configuration
mise use <tool_name> or mise use <tool_name>@<version>. If it's using npm for versioning, you just need to make sure to run mise use node and that'll pull in npm.mise use command. Do NOT manually specify tools in the mise configuration file.[settings] section should have experimental = true and pin = truepostinstall hook in the [hooks] section that installs packages from the configured package manager.
postinstall = "bun install"postinstall = "uv sync"[env] section with _.path = "node_modules/.bin"Here's an example .mise.toml structure:
Note: The [tools] section shown below is automatically generated by running mise use <tool>@<version> commands. Do not manually add tools to the configuration file.
[tools]
bun = "1.3.5" # Added via: mise use bun@1.3.5
[settings]
experimental = true
pin = true
[hooks]
postinstall = "bun install"
[env]
_.path = "node_modules/.bin"
[tasks.dev]
description = "Start development server"
run = "bun run dev"
[tasks.build]
description = "Build the project"
run = "bun run build"