Token导航 LogoToken导航TokenDH.com
开发敏感数据github未标认证来源可访问许可证需确认审计提醒

misemise 搜索

Agent Skill

mise 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

250

周安装

10

GitHub Stars

2

下载量

81
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/neoeinstein/claude-plugins --skill mise

简介

mise 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中整理协作事项。

  • 适用于围绕仓库状态、代码变更或协作流程进行信息梳理的场景。
  • 支持对 GitHub 相关协作数据进行查询、分类和汇总操作。
  • 安装命令为 npx skills add https://github.com/neoeinstein/claude-plugins --skill mise。
  • 使用前需确认权限范围、维护状态,注意是否触发联网或文件读写。

SKILL.md

mise Toolchain Management

Overview

mise manages development tool versions, environment configuration, and project tasks. Use it to ensure consistent toolchains across team members and CI, and to define build/test/deploy workflows alongside your toolchain.

Core principle: Two modes — mise.toml for repos you control (committed), mise.local.toml for repos you contribute to (gitignored).

Quick Reference - What to Load

If you're...Load
Adopting mise in an existing projectUse mise:onboard-project skill instead
Setting up mise.toml, understanding precedencereferences/configuration.md
Defining tasks, running builds, watch modereferences/tasks.md
Declaring task-specific tool requirementsreferences/tasks.md
Organizing tasks across packages in a monoreporeferences/monorepo-tasks.md
Decomposing a flat taskfile into per-component definitionsreferences/monorepo-tasks.md
Seeing "command not found", activation issuesreferences/troubleshooting.md
Setting up GitHub Actions, lockfilesreferences/ci-cd.md

When to Use Each Config

ScenarioConfig FileCommitted?
Your project, team-wide toolsmise.tomlYes
Contributing to someone else's repomise.local.tomlNo (gitignored)
User-wide defaults~/.config/mise/config.tomlN/A

Core Principles

mise.toml for Team Configuration: When you control the repo, use mise.toml to define the project's required toolchain. Commit it. Everyone gets the same versions.

mise.local.toml for Personal Tools: When contributing to repos you don't control, use mise.local.toml for your personal tool preferences. It's gitignored by convention.

Always Run mise install: After cloning a project with mise.toml, run mise install to provision the tools. This is not automatic.

Prefer Activation over Shims: Use mise activate in your shell rc file for full feature support. Shims work but have limitations (no environment variable updates except on tool invocation).

Commit mise.lock for Reproducibility: The lockfile ensures everyone gets identical tool versions and avoids rate limiting issues.

STOP — Anti-Rationalization Table

Before writing code that matches these patterns, STOP and reconsider.

You're about to...Common rationalizationWhat to do instead
Add mise activate to CI script"It works locally"CI is non-interactive. Use mise x -- command or shims. Load references/ci-cd.md.
Skip mise.lock in the repo"We're using 'latest'"'Latest' changes. Commit the lockfile for reproducibility. Load references/ci-cd.md.
Remove mise from CI after rate limit"It's blocking deploys"Set GITHUB_TOKEN for higher limits. Removing mise just moves the problem. Load references/troubleshooting.md.
Commit mise.local.toml"Team should have these tools too"That's what mise.toml is for. Local files are personal.
Use .bash_profile for activation"It's where I put PATH"Activation only works in .bashrc/.zshrc. Load references/troubleshooting.md.
Pin exact patch versions everywhere"Maximum reproducibility"Use mise.lock instead. Pins in config make updates tedious.
Add a tool to project [tools] that only one task needs"It's easier" / "Everyone might use it"Put it in tasks.<name>.tools. Contributors who never run that task skip the install. Load references/tasks.md.
Put all tasks in the root mise.toml for a multi-package project"It's simpler" / "One file to check"Each package should own its tasks in its own mise.toml. Root orchestrates. Load references/monorepo-tasks.md.
Define task_templates in an intermediate group config"Templates should live near the packages that use them"Templates ONLY resolve from root mise.toml. Move all templates to root. Load references/monorepo-tasks.md.
Use TOML array syntax in usage field (choices=["a","b"])"It's a TOML file"usage content is KDL, not TOML. Use choices "a" "b" inside a block. Load references/tasks.md.
Pass env inside {task = "...", env = {...}} delegation"Dependencies support it"Delegation objects only support task/tasks keys. Use inline args or task-level env. Load references/tasks.md.

Common Tool Configurations

Rust

[tools]
rust = { version = "latest", components = "clippy,rustfmt" }
"cargo:cargo-nextest" = "latest"
"cargo:cargo-watch" = "latest"

Node.js

[tools]
node = "lts"
"npm:pnpm" = "latest"

Python

[tools]
python = "3.12"
"pipx:poetry" = "latest"

Common Mistakes

MistakeFix
Committing mise.local.tomlAdd to .gitignore
Using mise.local.toml in your own repoUse mise.toml — let contributors benefit
Forgetting mise install after cloningAdd to project setup docs
Missing GITHUB_TOKEN in CISet token for API rate limits
Activation in .bash_profileUse .bashrc or .zshrc instead

Authoritative Resources

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

37.11%
按下载量换算30

Claude

27.32%
按下载量换算22

Cursor

17.31%
按下载量换算14

Gemini CLI

9.67%
按下载量换算8

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

敏感数据

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

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills