Token导航 LogoToken导航TokenDH.com
待分类external-servicegithub未标认证来源可访问许可证需确认审计通过

dotnet-tool-managementdotnet 工具管理

Agent Skill

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

总安装

318

周安装

13

GitHub Stars

15

下载量

103
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/wshaddix/dotnet-skills --skill dotnet-tool-management

简介

管理 .NET CLI 工具的本地与全局安装。

  • 支持创建和维护 dotnet-tools.json 清单文件。
  • 提供版本锁定、CI 集成和常见问题排查指导。
  • 适用于团队协作环境下的工具版本一致性保障。
  • dotnet-tool-management 属于待分类类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

dotnet-tool-management

Consumer-side management of.NET CLI tools: installing global and local tools, creating and maintaining .config/dotnet-tools.json manifests, version pinning for team reproducibility, dotnet tool restore in CI pipelines, updating and uninstalling tools, and troubleshooting common tool issues.

Version assumptions:.NET 8.0+ baseline. Local tools and tool manifests available since.NET Core 3.0. RID-specific tool packaging available since.NET 10.

Out of scope: Tool authoring and packaging (PackAsTool, NuGet packaging, ToolCommandName) -- see [skill:dotnet-cli-packaging]. Distribution strategy (AOT vs framework-dependent vs dotnet tool decision) -- see [skill:dotnet-cli-distribution]. Release CI/CD pipeline -- see [skill:dotnet-cli-release-pipeline].

Cross-references: [skill:dotnet-cli-packaging] for tool authoring and NuGet packaging, [skill:dotnet-cli-distribution] for distribution strategy and RID matrix, [skill:dotnet-cli-release-pipeline] for automated release workflows, [skill:dotnet-project-analysis] for detecting existing tool manifests.


Global Tool Installation

Global tools are installed per-user and available from any directory. The tool binaries are added to a directory on the user's PATH.

# Install a global tool
dotnet tool install -g <package-id>

# Install a specific version
dotnet tool install -g <package-id> --version 1.2.3

# Install a pre-release version
dotnet tool install -g <package-id> --version "*-rc*"

# List installed global tools
dotnet tool list -g

# Update a global tool to the latest stable version
dotnet tool update -g <package-id>

# Uninstall a global tool
dotnet tool uninstall -g <package-id>

Default install locations:

OSPath
Linux/macOS$HOME/.dotnet/tools
Windows%USERPROFILE%\.dotnet\tools

Global tools are user-scoped, not machine-wide. Each user maintains their own tool installations independently.

Custom Install Location

Use --tool-path to install to a custom directory. The directory is not automatically added to PATH -- you must manage PATH yourself:

dotnet tool install <package-id> --tool-path ~/my-tools

Local Tool Installation

Local tools are scoped to a directory tree and tracked in a manifest file. Different directories can use different versions of the same tool.

Creating the Tool Manifest

The manifest file .config/dotnet-tools.json tracks local tool versions. Create it at the repository root:

# Create the manifest (first time only, at repo root)
dotnet new tool-manifest

This produces:

{
  "version": 1,
  "isRoot": true,
  "tools": {}
}

Commit this file to source control so all team members share the same tool versions.

Installing Local Tools

Omit the -g flag to install a tool locally. The tool is recorded in the nearest manifest file:

# Install a local tool (recorded in .config/dotnet-tools.json)
dotnet tool install <package-id>

# Install a specific version
dotnet tool install <package-id> --version 2.0.1

# List local tools
dotnet tool list

# Update a local tool
dotnet tool update <package-id>

# Uninstall a local tool
dotnet tool uninstall <package-id>

After installing two tools, the manifest looks like:

{
  "version": 1,
  "isRoot": true,
  "tools": {
    "dotnet-ef": {
      "version": "9.0.3",
      "commands": [
        "dotnet-ef"
      ]
    },
    "nbgv": {
      "version": "3.7.112",
      "commands": [
        "nbgv"
      ]
    }
  }
}

Running Local Tools

# Run a local tool (long form)
dotnet tool run <command-name>

# Run a local tool (short form, when command starts with dotnet-)
dotnet <command-name>

# Examples
dotnet tool run dotnet-ef migrations add Init
dotnet ef migrations add Init  # equivalent short form

Version Pinning and Team Workflows

The tool manifest enables reproducible tool versions across the team.

Pinning Strategy

  1. One team member creates the manifest and installs tools with specific versions
  2. Commit .config/dotnet-tools.json to source control
  3. All team members run dotnet tool restore after cloning or pulling
  4. Updates are explicit: one person runs dotnet tool update <package-id>, commits the updated manifest

Version Ranges

Use the --version option with NuGet version ranges for controlled flexibility:

# Exact version (strictest)
dotnet tool install <package-id> --version 2.0.1

# Allow patch updates (recommended for most tools)
dotnet tool install <package-id> --version "2.0.*"

# Pre-release versions
dotnet tool install <package-id> --version "*-preview*"

The manifest always records the exact resolved version, ensuring all team members use identical versions after restore.


CI Integration

Tool Restore Before Build

In CI pipelines, restore tools before any build step that depends on them. Tool restore is fast and idempotent.

GitHub Actions:

steps:
  - uses: actions/checkout@v4
  - uses: actions/setup-dotnet@v4
    with:
      dotnet-version: '8.0.x'
  - name: Restore tools
    run: dotnet tool restore
  - name: Build
    run: dotnet build
  - name: Run EF migrations check
    run: dotnet ef migrations has-pending-changes

Azure DevOps Pipelines:

steps:
  - task: UseDotNet@2
    inputs:
      packageType: sdk
      version: '8.0.x'
  - script: dotnet tool restore
    displayName: 'Restore tools'
  - script: dotnet build
    displayName: 'Build'

CI Best Practices

  • Always run dotnet tool restore before build -- do not rely on tools being pre-installed on CI agents
  • Commit .config/dotnet-tools.json -- the manifest ensures CI uses the same tool versions as local development
  • Do not install tools globally in CI -- use local tool manifests for reproducibility; global installs may conflict across concurrent jobs
  • Cache NuGet packages to speed up tool restore (~/.nuget/packages on Linux/macOS, %USERPROFILE%\.nuget\packages on Windows)

RID-Specific Tools

Starting with.NET 10, tool authors can publish RID-specific, self-contained, or Native AOT versions of their tools. From a consumer perspective, this is transparent -- the dotnet tool install command automatically selects the best package for your platform.

# RID selection is automatic -- no extra flags needed
dotnet tool install -g <package-id>

The.NET CLI detects your platform and downloads the appropriate RID-specific package. If no RID-specific package matches your platform, the CLI falls back to a framework-dependent package (if the tool author provided one).

For details on authoring and packaging RID-specific tools, see [skill:dotnet-cli-packaging].


Troubleshooting

Common Issues

"Tool already installed" -- Uninstall first or use dotnet tool update:

dotnet tool update -g <package-id>

"No manifest file found" -- Run dotnet new tool-manifest to create one, or check that you are in a directory at or below the manifest location.

"Tool not found after install" -- For global tools, verify ~/.dotnet/tools is on your PATH. For local tools, ensure you are in the directory tree containing the manifest.

"Version mismatch in CI" -- Verify .config/dotnet-tools.json is committed and dotnet tool restore runs before any tool usage.


Global vs Local Tools Decision Guide

AspectGlobal ToolLocal Tool
ScopeSystem-wide (per user)Per-project directory tree
Install location~/.dotnet/tools.config/dotnet-tools.json manifest
Version managementManual dotnet tool update -gTracked in source control
CI/CDMust install before use (not reproducible)dotnet tool restore restores all (reproducible)
Team consistencyEach developer manages independentlyManifest ensures identical versions
Best forPersonal productivity tools, one-off utilitiesProject-specific build/dev tools

Prefer local tools for anything used in a project's build, test, or development workflow. Reserve global tools for personal utilities not tied to a specific project.


Agent Gotchas

  1. Do not install project-specific tools globally in CI. Use local tool manifests and dotnet tool restore for reproducible builds. Global installs may conflict across concurrent CI jobs and drift from the team's pinned versions.
  2. Do not skip dotnet tool restore in CI pipelines. Tools are not pre-installed on CI agents. Always restore before any step that invokes a local tool, or the build will fail with "tool not found."
  3. Do not omit .config/dotnet-tools.json from source control. The manifest is the single source of truth for tool versions. Without it, dotnet tool restore has nothing to restore and each developer gets different versions.
  4. Do not specify RID flags when installing tools as a consumer. The.NET CLI automatically selects the correct RID-specific package for your platform. Manual RID selection is unnecessary and may cause installation failures.
  5. Do not confuse tool command names with package IDs. The package ID (e.g., dotnet-ef) may differ from the command name (e.g., dotnet ef). Use dotnet tool list to see the mapping between package IDs and commands.

References

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.54%
按下载量换算37

Claude

29.96%
按下载量换算31

Cursor

19.87%
按下载量换算20

Gemini CLI

8.79%
按下载量换算9

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

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

来源信息

继续浏览同类 Skills