npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

dotnet-agent-skills

v1.7.1

Published

Production-ready .NET Agent Skills for Claude Code - review-first, deterministic, auditable

Readme


🎯 Why dotnet-agent-skills?

| Traditional Approach | With dotnet-agent-skills | |---------------------|-------------------------| | ❌ AI suggests inconsistent code fixes | ✅ Review-first: AI proposes, you decide | | ❌ Black-box recommendations | ✅ Auditable outputs with evidence | | ❌ Generic patterns | ✅ .NET-specific best practices | | ❌ Manual chaining of review tasks | ✅ Smart agent chaining with conditions |

29 production-ready skills covering security, performance, architecture, testing, desktop, and more — designed specifically for .NET/ASP.NET Core.


🎯 Overview

dotnet-agent-skills provides Agent Skills for Claude Code and AI coding assistants, optimized for .NET/ASP.NET Core with:

  • Review-first approach: AI proposes findings, you approve changes
  • Deterministic workflows: Reproducible bash scripts, no magic
  • Auditable outputs: Severity, confidence, evidence, recommendations
  • Smart chaining: Context-aware related-skill activation
  • Safe installation: Backup & checksum verification

🚀 Quick Start

Install

npm install -g dotnet-agent-skills     # Global
npx agentnet init                      # Or run quickly with npx

Initialize in your project

cd your-dotnet-project
agentnet init                      # interactive
agentnet init --yes                # non-interactive (defaults)
agentnet init --force             # overwrite existing .claude/

Verify

agentnet doctor    # diagnostics
agentnet validate  # validate .claude/ structure
agentnet skill list

⚡ Slash Commands (Provided by dotnet-agent-skills)

After running agentnet init, the following slash commands are available in your project:

| Command | Description | Example | |---------|-------------|---------| | /build [path] | Build, test & pack .NET solution with validation | /build src/MySolution.sln | | /dev-review [path] | Comprehensive code review for .NET projects | /dev-review src/ | | /test-net [path] | Run tests and analyze coverage for .NET | /test-net tests/ | | /brainstorm-net [question] | Brainstorm .NET architecture & solutions with trade-off analysis | /brainstorm-net "EF Core vs Dapper for read-heavy queries" | | /pm-assess [path] | Review PM/Delivery artifacts with evidence-based reporting | /pm-assess ./docs --scope delivery --focus risks | | /winform [screenshot] | Design WinForms UI from screenshot (modern convention) | /winform ./design.png | | /winform-old [screenshot] | Design WinForms UI from screenshot (legacy convention) | /winform-old ./design.png | | /security [path] | Security review for .NET applications | /security src/ | | /orchestrate [path] | Orchestrate multiple review skills | /orchestrate src/ |

Note: These commands are automatically installed to .claude/commands/ when you run agentnet init


💻 Usage

CLI Commands

agentnet init                                    # setup
agentnet skill list                              # list skills
agentnet skill info reviewing-clean-code-dotnet  # skill details
agentnet doctor                                  # diagnostics
agentnet validate                                # structure check
agentnet update                                  # update skills
agentnet config list                             # show config

📦 Skills Catalog

| Domain | Count | Skills | |--------|-------|--------| | Tooling | 4 | build/test workflow, CI/CD pipelines, NuGet selection, review orchestration | | API | 3 | API design, OpenAPI/Swagger docs, bilingual VI/EN messages | | Security | 4 | auth hardening, HTTP resilience, vulnerability scans, secrets detection | | Data | 2 | EF Core reviews, Dapper + SQL Server optimization (incl. LINQ to SQL) | | Performance | 2 | caching strategies, sync-over-async detection | | Style | 3 | code formatting, clean code reviews, XML scaffolding | | Architecture | 2 | architecture evaluation, DI lifetime reviews | | Desktop | 2 | WinForms general review, DevExpress conventions | | Test | 1 | integration testing with Testcontainers | | Ops | 1 | error handling with Problem Details | | Observability | 1 | logging, tracing, metrics with OpenTelemetry | | PM | 1 | requirements analysis and estimation | | Meta | 3 | brainstorming, project conventions, templates |

Full details: SKILLS.md


🔄 What's New

v1.7.1 (Latest)

  • ✨ New Skills:

    • reviewing-winforms-applications - General WinForms application review (Designer safety, form lifecycle, data binding, UI threading, MVP architecture)
    • LINQ to SQL support in dapper-sqlserver skill
  • ✨ New Slash Commands:

    • /winform - WinForms UI design from screenshot (modern convention)
    • /winform-old - WinForms UI design from screenshot (legacy convention)
  • 🔧 Improvements:

    • Renamed workflows to avoid conflicts with Claude built-ins: /brainstorm/brainstorm-net, /review/dev-review, /test/test-net, /review-pm/pm-assess
    • Reorganized desktop skills structure
    • Added comprehensive WinForms code examples and templates
  • 📦 Package:

    • Version: 1.7.1
    • Size: 464 KB
    • Skills: 24 across 13 domains

v1.6.0

  • ✨ New Slash Commands:

    • /review-pm - PM/Delivery assessment with evidence-based reporting
    • /brainstorm - .NET architecture & solution brainstorming
  • 🔧 Improvements:

    • Converted workflow docs to executable slash command format
    • Fixed ESLint issues in scaffolding module
    • Updated build pipeline for better validation
  • 📦 Package:

    • Size: 197KB
    • Tests: 26/26 passing
    • Skills: 22 across 10 domains

🛠️ Requirements

  • Node.js >= 18.0.0
  • .NET SDK >= 8.0 (for builds/tests)
  • Git
  • Bash (for skill scripts), ripgrep (optional)

🤝 Contributing & Feedback


📄 License

MIT © thanhquangqb95