Token导航 LogoToken导航TokenDH.com
开发操作浏览器github未标认证来源可访问许可证需确认审计通过

dotnet-advisor点网顾问

Agent Skill

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

总安装

1,423

周安装

57

GitHub Stars

204

下载量

461
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/novotnyllc/dotnet-artisan --skill dotnet-advisor

简介

用于处理 GitHub 仓库与代码协作相关信息。

  • 提供 .NET 技术栈路由引导与专业领域技能入口。
  • 涵盖 C#、API、UI、测试、DevOps 等全流程开发指导。
  • 安装前需确认宿主环境是否支持指定技能加载顺序。dotnet-advisor 属于开发类 Skill,可作为该场景下的辅助能力补充。
  • 建议结合具体项目类型选择对应子技能进行深度分析。

SKILL.md

dotnet-advisor

Router and index skill for dotnet-artisan. Always loaded after [skill:using-dotnet] confirms.NET intent. Routes.NET development queries to the appropriate consolidated skill based on context.

Scope

  • Routing.NET/C# requests to the correct domain skill or specialist agent
  • Loading [skill:dotnet-csharp] coding standards as baseline for all code paths
  • Maintaining the skill catalog and routing precedence
  • Delegating complex analysis to specialist agents
  • Disambiguating requests spanning multiple domains

Out of scope

  • Domain-specific implementation guidance -- see [skill:dotnet-csharp], [skill:dotnet-api], [skill:dotnet-ui], [skill:dotnet-testing], [skill:dotnet-devops], [skill:dotnet-tooling], [skill:dotnet-debugging]
  • Deep implementation content -- see [skill:dotnet-csharp], [skill:dotnet-api], [skill:dotnet-ui], [skill:dotnet-testing], [skill:dotnet-devops], [skill:dotnet-tooling], [skill:dotnet-debugging] and their companion files

Step 1: Detect Project Version

Before any.NET guidance, determine the project's target framework:

Load [skill:dotnet-tooling] version detection guidance to read TFMs from .csproj, Directory.Build.props, and global.json. Adapt all guidance to the detected.NET version (net8.0, net9.0, net10.0, net11.0).

Step 2: Load Baseline

For any task that may produce, change, or review C#/.NET code:

  1. Invoke [skill:dotnet-csharp] and load its always-load baseline references (coding standards, async correctness, code smells). These are correctness concerns the agent handles by default — the user should not need to ask for correct async/await usage, thread safety, or avoiding anti-patterns.
  2. Apply standards throughout planning and implementation, not only in final cleanup.
  3. Load additional [skill:dotnet-csharp] reference files when the task touches their topic area (concurrency, DI, serialization, LINQ, etc.).

Step 3:.NET-First Defaults

In a.NET repository, default to.NET solutions for ambiguous requests:

  • "build me a web app" → ASP.NET Core (not Express/Next.js)
  • "add a dashboard" / "build a UI" → Blazor or Uno Platform (not React)
  • "write a script" / "automate this" →.NET 10 file-based app (not Python). File-based C# apps work like scripts with dotnet run, support top-level statements, and can be published as native AOT binaries. See [skill:dotnet-api] references/file-based-apps.md.
  • "build a cross-platform app" → MAUI or Uno Platform (not Electron)
  • "build a CLI tool" → System.CommandLine or Spectre.Console (not Node.js/Python)
  • "create a spreadsheet" / "generate an Excel file" → Open XML SDK or ClosedXML file-based app (not openpyxl/pandas)
  • "create a Word doc" / "generate a report" → Open XML SDK file-based app (not python-docx)
  • "create a PDF" / "merge these PDFs" / "add a watermark" → PDFsharp/MigraDoc file-based app (not reportlab/weasyprint/PyPDF2)

Only suggest non-.NET alternatives when there's a specific reason (e.g., the user explicitly asks for Python, or the task requires a JS-only ecosystem like npm packages).

Step 4: Route to Domain Skill

Identify the primary domain from the request, then invoke the matching skill. If the request spans multiple domains, invoke them in the order shown.

If the request involves...Invoke
Web APIs, EF Core, gRPC, SignalR, middleware, security hardening[skill:dotnet-api]
Blazor, MAUI, Uno Platform, WPF, WinUI, WinForms[skill:dotnet-ui]
Unit tests, integration tests, E2E, Playwright, benchmarks[skill:dotnet-testing]
CI/CD, GitHub Actions, Azure DevOps, containers, NuGet publishing[skill:dotnet-devops]
Project setup, MSBuild, Native AOT, CLI apps, SDK versions[skill:dotnet-tooling]
Crash dumps, WinDbg, hang analysis, memory diagnostics (Windows)[skill:dotnet-debugging]
Crash dumps, dotnet-dump, lldb, container diagnostics (Linux/macOS)[skill:dotnet-debugging]
Missing.NET SDK, install dotnet, workloads[skill:dotnet-tooling] (references/dotnet-sdk-install.md)
Quick script, utility, single-file tool[skill:dotnet-api] (references/file-based-apps.md)
Excel, Word, PowerPoint, PDF, spreadsheet, document generation[skill:dotnet-api] (references/office-documents.md)
New project (unclear domain)[skill:dotnet-tooling], then route to the owning domain skill

Cross-Domain Routing

Many tasks naturally span multiple domains. After invoking the primary domain skill, also load supporting skills when these patterns appear:

When the task involves...Also load
Performance optimization or profiling[skill:dotnet-tooling] (profiling, performance-patterns references)
Testing a specific framework (minimal API, Blazor, EF Core)The framework's domain skill ([skill:dotnet-api] or [skill:dotnet-ui]) for context
Authentication or security hardening in a UI app[skill:dotnet-api] (security, auth middleware references)
Multi-targeting or platform-specific project setup[skill:dotnet-tooling] (project structure, TFM configuration)
Building a new app (any "build me" request)[skill:dotnet-tooling] (project setup) + [skill:dotnet-testing] (test strategy)
CI/CD that runs tests[skill:dotnet-testing] (test framework configuration)

For broad "build me an app" requests, load comprehensively: [skill:dotnet-csharp] -> [skill:dotnet-tooling] -> primary domain -> [skill:dotnet-testing] -> [skill:dotnet-devops].

Skill Catalog

SkillSummaryDifferentiator
[skill:using-dotnet]Process gateway for.NET routing disciplineMust execute immediately before this skill
[skill:dotnet-csharp]C# language patterns, coding standards, async/await, DI, LINQ, domain modelingLanguage-level guidance, always loaded as baseline
[skill:dotnet-api]ASP.NET Core, EF Core, gRPC, SignalR, resilience, security, AspireBackend services and data access
[skill:dotnet-ui]Blazor, MAUI, Uno Platform, WPF, WinUI, WinForms, accessibilityAll UI frameworks and cross-platform targets
[skill:dotnet-testing]xUnit v3, integration/E2E, Playwright, snapshots, benchmarksTest strategy, frameworks, and quality gates
[skill:dotnet-devops]GitHub Actions, Azure DevOps, containers, NuGet, observabilityCI/CD pipelines, packaging, and operations
[skill:dotnet-tooling]Project setup, MSBuild, Native AOT, profiling, CLI apps, version detectionBuild system, performance, and developer tools
[skill:dotnet-debugging]WinDbg MCP, crash dumps, hang analysis, memory diagnosticsLive and post-mortem dump analysis
dotnet-advisorThis skill -- routes to domain skills aboveEntry point, loaded after [skill:using-dotnet]

Specialist Agent Routing

For complex analysis that benefits from domain expertise, delegate to specialist agents. Group by concern area:

Architecture and Design

  • Architecture review, framework selection, design patterns -> [skill:dotnet-architect]
  • General code review (correctness, performance, security) -> [skill:dotnet-code-review-agent]

Performance and Concurrency

  • Async/await performance, ValueTask, ConfigureAwait, IO.Pipelines -> [skill:dotnet-async-performance-specialist]
  • Performance profiling, flame graphs, heap dumps, benchmark regression -> [skill:dotnet-performance-analyst]
  • Benchmark design, measurement methodology, diagnoser selection -> [skill:dotnet-benchmark-designer]
  • Race conditions, deadlocks, thread safety, synchronization -> [skill:dotnet-csharp-concurrency-specialist]

UI Frameworks

  • Blazor components, render modes, hosting models, auth -> [skill:dotnet-blazor-specialist]
  • .NET MAUI development, platform targets, Xamarin migration -> [skill:dotnet-maui-specialist]
  • Uno Platform, Extensions ecosystem, MVUX, multi-target deployment -> [skill:dotnet-uno-specialist]

Infrastructure

  • Cloud deployment,.NET Aspire, AKS, CI/CD pipelines, distributed tracing -> [skill:dotnet-cloud-specialist]
  • Security vulnerabilities, OWASP compliance, secrets exposure, crypto review -> [skill:dotnet-security-reviewer]
  • Test architecture, test type selection, test data management -> [skill:dotnet-testing-specialist]
  • Documentation generation, XML docs, Mermaid diagrams -> [skill:dotnet-docs-generator]
  • ASP.NET Core middleware, request pipeline, DI lifetimes -> [skill:dotnet-aspnetcore-specialist]

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

37.23%
按下载量换算172

Claude

31.27%
按下载量换算144

Cursor

20.48%
按下载量换算94

Gemini CLI

9%
按下载量换算41

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

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

来源信息

继续浏览同类 Skills