一键导入
mise-guide
Mise tool version management guide including runtime management (Node.js, Go), NPM package installation, home-manager configuration, and troubleshooting
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Mise tool version management guide including runtime management (Node.js, Go), NPM package installation, home-manager configuration, and troubleshooting
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Step-by-step installation guide for Nix and dotfiles setup including nix.conf configuration, channel updates, home-manager, and nix-darwin
スキルのプロンプト品質を評価・チューニングする。スキルを書いたあと別のサブエージェントに実行させ、不明瞭点・自動補完箇所・達成率をレポートさせて反復改善する。Use when you want to evaluate or tune a SKILL.md prompt quality. Ref: https://zenn.dev/mizchi/articles/empirical-prompt-tuning
Generate professional English commit messages with gitmoji based on git diff. Use when creating commit messages, analyzing staged changes, or formatting commits according to conventional commits + gitmoji style.
Generate professional English commit messages with gitmoji based on git diff. Use when creating commit messages, analyzing staged changes, or formatting commits according to conventional commits + gitmoji style.
NPM tools and package management using mise including commitizen, cz-git, and global package configuration
System services configuration guide including AeroSpace, JankyBorders, and AltTab on macOS
| name | mise-guide |
| description | Mise tool version management guide including runtime management (Node.js, Go), NPM package installation, home-manager configuration, and troubleshooting |
mise is a tool for managing multiple runtimes and tools.
mise is configured and managed through home-manager.
darwin/home-manager/mise/default.nixnixos/home-manager/mise/default.nix~/.config/mise/config.tomllts1.24.5latestPackages directly managed by mise:
@redocly/cli - CLI tool for OpenAPI/Swaggercorepack - Node.js package manager management@google/gemini-cli - CLI tool for Google Gemini@openai/codex - CLI tool for OpenAI CodexInstalled via tasks due to complex dependencies:
commitizen - Git commit convention toolcz-git - commitizen adapterThese tools should be installed via mise tasks using official install scripts:
# List installed tools
make mise-list
# Check mise configuration
make mise-config
# Install all tools
make mise-install-all
# Install specific tools
mise install go@1.23.4
mise install node@lts
# Use specific tools
mise use go@1.23.4
mise use node@lts
# Install commitizen + cz-git
make mise-install-npm-commitizen
# Direct execution
mise run npm-commitizen
# Install GitHub Copilot CLI
mise run copilot-install
# Install Claude Code CLI
mise run claude-install
# Install pre-commit hooks
mise run pre-commit-init
Edit home-manager configuration:
# darwin/home-manager/mise/default.nix (macOS)
# or
# nixos/home-manager/mise/default.nix (NixOS)
programs.mise = {
enable = true;
enableZshIntegration = true;
globalConfig = {
tools = {
node = "lts";
go = "1.24.5";
jujutsu = "latest";
"npm:@redocly/cli" = "latest";
# ... other tools
};
tasks = {
npm-commitizen = {
description = "Install commitizen and cz-git globally";
run = [
"npm install -g commitizen cz-git"
];
};
copilot-install = {
description = "Install GitHub Copilot CLI via official install script";
run = [
"curl -fsSL https://gh.io/copilot-install | bash"
];
};
claude-install = {
description = "Install Claude Code CLI via official install script";
run = [
"curl -fsSL https://claude.ai/install.sh | bash"
];
};
pre-commit-init = {
description = "Install pre-commit hooks";
run = [
"pre-commit install"
];
};
};
};
};
Apply configuration changes:
make home-manager-apply
# Restart shell
exec zsh
# Or manually initialize mise
eval "$(mise activate zsh)"
# Check mise status
mise doctor
# Reload configuration
mise config