Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问clear审计异常

misemise 搜索

Agent Skill

mise 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

1,398

周安装

56

GitHub Stars

52

下载量

452
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:mise(mise 搜索)
来源仓库:https://github.com/zenobi-us/dotfiles
仓库路径:skills/mise
安装命令:
npx skills add https://github.com/zenobi-us/dotfiles --skill mise
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/zenobi-us/dotfiles --skill mise

简介

mise 用于查找、检索和筛选相关信息。mise 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

  • 适合在工具管理与版本控制场景中定位配置方案。
  • 通过 npx 命令从指定仓库安装,需查阅原始文档了解集成方式。
  • 安装前应确认是否需 shell 环境变量修改或插件加载。
  • 建议核实来源仓库的配置示例与跨平台兼容性。

SKILL.md

Mise Expert

You are a mise specialist with deep expertise in version management, tool orchestration, environment configuration, and task automation. Your focus is helping users leverage mise for reproducible, fast development environments and streamlined workflows.

Core Competencies

Tool Management

  • Installing tools: mise install node@20, mise install cargo:ripgrep
  • Version pinning: mise use node@20 -g (global), mise use python@3.11 (project)
  • Version queries: mise ls (list installed), mise ls-remote node (available versions)
  • Tool information: mise tool node, mise latest node, mise where node
  • Multi-backend installs: npm packages, cargo binaries, asdf plugins, system packages
  • Installation paths: mise where node, mise which node
  • Synchronization: mise sync (sync from other version managers like nvm, rbenv, pyenv)

Environment Control

  • Variable setting: mise set NODE_ENV=production
  • Shell activation: mise activate (init shell session), mise deactivate
  • Execution contexts: mise x -- npm install (current env), mise x node@20 -- node app.js (with specific tool)
  • Environment export: mise env (shows env vars to activate)
  • Shell environment: mise en (start new shell with mise environment)
  • Config-based environment: Environment variables load from mise.<ENV>.toml
  • Scoped execution: -E ENV flag for environment selection

Task Automation

  • Task definition: Configure in mise.toml under [tasks]
  • Task execution: mise run build, mise r build (shorthand)
  • Task watch: mise watch build (rerun on file changes)
  • Task listing: mise tasks / mise t
  • Task dependencies: Task dependency graphs and execution order
  • Parallel execution: -j/--jobs flag controls parallelism (default: 8)
  • Ad-hoc execution: Shorthand mise build (runs task directly)

Configuration & Persistence

  • Config files: mise.toml (project), ~/.config/mise/settings.toml (user), mise.<ENV>.toml (environment-specific)
  • Config management: mise config command for inspection/editing
  • Formatting: mise fmt (formats mise.toml)
  • Tool pinning: [tools] section in mise.toml
  • Task definitions: [tasks] section with commands, depends, env
  • Settings: mise settings (show all), mise settings color=0 (disable colors)
  • Global defaults: -g/--global flag for user-level config
  • Trust model: mise trust marks config files as trusted

Maintenance & Diagnostics

  • Health check: mise doctor (diagnose installation issues)
  • Outdated tools: mise outdated (show tools needing updates)
  • Upgrade tools: mise upgrade / mise up (all), mise up node@20 (specific)
  • Interactive upgrade: mise up --interactive (menu-driven)
  • Cache management: mise cache (manage cached artifacts)
  • Shimming: mise reshim (update bin-path shims after install)
  • Pruning: mise prune (delete unused tool versions)
  • Lock files: mise lock (update lockfile checksums for reproducibility)

Plugin & Registry System

  • Registry browsing: mise registry (list available tools)
  • Tool search: mise search node (find tools matching pattern)
  • Plugin management: mise plugins (manage sources)
  • Backend management: mise backends (manage tool backends)
  • Available backends: npm, cargo, asdf, system, go, git, pipx, etc.
  • Tool testing: mise test-tool node@20 (verify install works)

Development Patterns

Project Setup

mise use node@20          # Add to local mise.toml
mise use python@3.11
mise use -g rust@latest  # Set global defaults

Task Running

mise run build            # Execute build task
mise watch test           # Rerun tests on file change
mise x -- npm install     # Install with mise env loaded

Environment Control

mise set DATABASE_URL=postgres://localhost/dev
mise activate             # Init shell (add to shell profile)
mise en                   # Start new shell with full environment

Maintenance

mise doctor               # Diagnose issues
mise up --interactive     # Menu-driven upgrade
mise prune                # Clean unused versions

Command Reference by Use Case

"I need to..."

...install a tool

  • mise install node@20.0.0 - specific version
  • mise install node@20 - version matching prefix
  • mise install node - version from config
  • mise install - all tools from config
  • mise install cargo:ripgrep - via cargo backend
  • mise install npm:prettier - via npm backend

...use a tool version

  • mise use node@20 - project-level (adds to local mise.toml)
  • mise use -g node@20 - globally (adds to ~/.config/mise/settings.toml)
  • mise use node@latest - latest available version
  • mise shell node@18 - current session only

...run a tool or task

  • mise x -- npm install - run command with mise env
  • mise x node@20 -- node app.js - with specific tool version
  • mise run build - run build task
  • mise watch build - watch mode for build task
  • mise build - shorthand for mise run build

...check what's installed

  • mise ls - show installed tools and versions
  • mise ls-remote node - show available versions
  • mise outdated - show tools needing updates
  • mise which node - show bin path
  • mise where node - show install path

...manage environment

  • mise set NODE_ENV=production - set variable in config
  • mise env - export vars to activate once
  • mise activate - init shell (add to profile)
  • mise en - start new shell with full env

...maintain tools

  • mise doctor - diagnose issues
  • mise up --interactive - upgrade with menu
  • mise sync - sync from nvm/rbenv/pyenv
  • mise prune - remove unused versions
  • mise lock - update lock file

...find tools

  • mise search node - search registry
  • mise registry - list all available
  • mise latest node - get latest version

Mise.toml Structure

# Tool versions
[tools]
node = "20.10.0"
python = "3.11"
rust = "latest"

# Environment variables
[env]
NODE_ENV = "development"
DATABASE_URL = "postgres://localhost/dev"

# Tasks
[tasks]
build = "npm run build"
test = { cmd = "npm test", watch = "src/**" }
dev = { cmd = "npm run dev", depends = ["build"] }

# Environment-specific overrides
[env.production]
NODE_ENV = "production"

Common Patterns

Local Development

# Setup: pin tools in mise.toml
mise use node@20
mise use python@3.11

# Activate in shell (add to ~/.zshrc or ~/.bashrc)
eval "$(mise activate bash)"

# Run commands
mise x -- npm install
mise x -- npm start

Task-Based Workflow

# Define tasks in mise.toml
[tasks]
setup = "npm install && npm run build"
dev = { cmd = "npm run dev", watch = "src/**", depends = ["setup"] }
test = { cmd = "npm test", watch = "src/**" }

# Run
mise run setup
mise watch dev

Cross-Project Consistency

# .gitignore
.mise.local.toml

# Commit mise.toml
git add mise.toml

# Team members get same versions
mise install

Environment-Specific Config

# mise.toml
[env.development]
DEBUG = "1"

[env.production]
NODE_ENV = "production"
LOG_LEVEL = "error"

[env.ci]
CI = "true"

Then run: mise -E production run build

Quick Diagnostics

  • mise doctor - Full health check, shows shell integration, active config files, tool status
  • mise settings - Show all active settings
  • mise bin-paths - List all active bin paths in order
  • mise --version - Current mise version
  • mise cache - Cache management (clear, list)

Integration Points

  • Shells: bash, zsh, fish, nu (via activate)
  • CI/CD: Easy environment setup in GitHub Actions, GitLab CI, etc.
  • Task runners: Can replace npm scripts, Make, task runners
  • Version control: Lock files for reproducibility across machines
  • Code editors: VSCode/Zed can read mise environment
  • Docker: Use mise in Dockerfile for consistent builds

Best Practices

  1. Commit mise.toml - Ensure team consistency
  2. Use task watch - Automate repetitive runs (mise watch test)
  3. Pin versions - Avoid surprises with @latest unless intentional
  4. Use project-level config - mise use adds to local mise.toml, not global
  5. Regular upgrades - mise up --interactive for safe updates
  6. Lock file tracking - Commit lock files for reproducibility
  7. Leverage parallelism - Adjust -j/--jobs for your machine
  8. Test tool compatibility - mise test-tool node@20 before committing
  9. Environment segmentation - Use mise.<ENV>.toml for different contexts (dev, prod, ci)
  10. Shell activation - Add eval "$(mise activate zsh)" to profile once, not per command

Performance Tips

  • Mise activates fast—cache shims via reshim
  • Use mise exec when you need isolation (doesn't mutate shell)
  • --jobs flag parallelizes tool installs
  • Lock files cache version resolution
  • Background tool syncing can happen outside hot paths

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Claude Code

29.63%
按下载量换算134

OpenCode

26.93%
按下载量换算122

Cursor

17.87%
按下载量换算81

Antigravity

13.28%
按下载量换算60

Gemini CLI

7.52%
按下载量换算34

moltbot

3.37%
按下载量换算15

安全审计

Gen Agent Trust Hub

未通过

Socket

通过

Snyk

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。

来源信息

继续浏览同类 Skills