Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问clear审计未展示

senior-dotnet高级点网

Agent Skill

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

总安装

729

周安装

31

GitHub Stars

公开资料未说明

下载量

255
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

AgentSkills.tonpx skills
npx skills add rickydwilson-dcs/claude-skills --skill "senior-dotnet"

简介

高级点网用于查找、检索和筛选相关信息,辅助快速定位候选结果。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中根据关键词或任务场景使用。
  • 发现并安装 AI 代理的技能,提升工具集成能力。
  • 安装命令:npx skills add rickydwilson-dcs/claude-skills --skill "senior-dotnet"。
  • 建议确认权限范围和维护状态,避免触发联网或命令执行。

SKILL.md

name
senior-dotnet
title
Senior .NET Skill Package
description
World-class C# and .NET development skill for enterprise applications, ASP.NET Core web APIs, and cloud-native systems. Expertise in .NET 8, Entity Framework Core, ASP.NET Core Identity, Blazor, and microservices architecture. Includes project scaffolding, dependency management, security implementation, and performance optimization.
domain
engineering
subdomain
dotnet-development
difficulty
advanced
time-saved
60%+ on project scaffolding, 50% on security implementation
frequency
Daily for enterprise development teams
use-cases
related-agents
[cs-dotnet-engineer]
related-skills
[senior-backend, senior-architect]
related-commands
[]
orchestrated-by
[cs-dotnet-engineer]
dependencies
scripts
[dotnet_project_scaffolder.py, dependency_analyzer.py, entity_generator.py, api_endpoint_generator.py, security_config_generator.py, performance_profiler.py]
references
[dotnet-best-practices.md, aspnet-core-patterns.md, ef-core-guide.md, dotnet-security-reference.md, dotnet-performance-tuning.md]
assets
[]
compatibility
python-version
3.8+
platforms
[macos, linux, windows]
tech-stack
examples
input
python scripts/dotnet_project_scaffolder.py my-service --type webapi --db sqlserver
output
Complete ASP.NET Core 8 project with Clean Architecture, Docker setup, and CI/CD pipeline
input
python scripts/entity_generator.py Product --fields 'Id:int,Name:string,Price:decimal,CreatedAt:DateTime'
output
EF Core entity with repository, service, controller, and DTO classes
stats
downloads
0
stars
0
rating
0.0
reviews
0
version
v1.0.0
author
Claude Skills Team
contributors
[]
created
2025-12-16
updated
2025-12-16
license
MIT
tags
featured
false
verified
true

Senior .NET

World-class C# and .NET development skill for enterprise applications, ASP.NET Core web APIs, and cloud-native systems. Expertise in .NET 8, Entity Framework Core, ASP.NET Core Identity, Blazor, and microservices architecture.

Overview

This skill provides production-ready C# and .NET development capabilities through six Python automation tools and comprehensive reference documentation. Whether building enterprise monoliths, microservices architectures, or Blazor applications, this skill ensures best practices, scalable architecture, and enterprise-grade security.

What This Skill Provides:

  • ASP.NET Core project scaffolding with Clean Architecture
  • EF Core entity and repository generation with optimized queries
  • RESTful API endpoint scaffolding (Controllers and Minimal APIs)
  • ASP.NET Core Identity configuration (OAuth2, JWT, OIDC)
  • NuGet dependency analysis and upgrade recommendations
  • .NET performance profiling and optimization guidance

Use this skill when:

  • Starting new ASP.NET Core projects or microservices
  • Implementing Entity Framework Core data layers
  • Designing RESTful APIs with Controllers or Minimal APIs
  • Setting up authentication and authorization
  • Optimizing .NET application performance
  • Reviewing C# code for quality and patterns

Core Value: Save 60%+ time on project scaffolding while ensuring enterprise-grade architecture, security compliance, and performance optimization.

Core Capabilities

  • ASP.NET Core Scaffolding - Generate production-ready .NET 8 projects with Clean Architecture, Docker configuration, and CI/CD pipelines
  • Entity Generation - Create EF Core entities with repositories, services, controllers, DTOs, and AutoMapper profiles following DDD patterns
  • API Development - Scaffold REST endpoints with validation, error handling, pagination, and OpenAPI documentation
  • Security Implementation - Configure ASP.NET Core Identity with OAuth2, JWT, role-based access control, and security best practices
  • Dependency Management - Analyze NuGet packages for vulnerabilities, outdated versions, and upgrade paths
  • Performance Optimization - Profile .NET applications, identify bottlenecks, and generate optimization recommendations

Quick Start

Create ASP.NET Core Project

# Create Web API with SQL Server
python scripts/dotnet_project_scaffolder.py order-service --type webapi --db sqlserver

# Create MVC application with PostgreSQL and Identity
python scripts/dotnet_project_scaffolder.py ecommerce-app --type mvc --db postgresql --auth identity

# Create Minimal API service
python scripts/dotnet_project_scaffolder.py notification-service --type minimal-api --db sqlite

Generate EF Core Entity

# Generate complete entity stack (entity, repository, service, controller, DTO)
python scripts/entity_generator.py Product --fields "Id:int,Name:string,Price:decimal,Category:string,CreatedAt:DateTime"

# Generate with relationships
python scripts/entity_generator.py Order --fields "Id:int,CustomerId:int,Total:decimal" --relations "Customer:ManyToOne,Items:OneToMany"

Analyze Dependencies

# Check for vulnerabilities and updates
python scripts/dependency_analyzer.py MyProject.csproj --check-security

# Generate upgrade report
python scripts/dependency_analyzer.py src/ --output report.md

Access Documentation

  • .NET patterns: references/dotnet-best-practices.md
  • ASP.NET Core design: references/aspnet-core-patterns.md
  • EF Core guide: references/ef-core-guide.md
  • Security reference: references/dotnet-security-reference.md
  • Performance tuning: references/dotnet-performance-tuning.md

Key Workflows

1. New ASP.NET Core Web API

Time: 30-45 minutes

  1. Scaffold Project - Generate Web API with .NET 8, Docker, and CI/CD
   python scripts/dotnet_project_scaffolder.py inventory-service --type webapi --db sqlserver --auth jwt
  1. Configure Environment - Set up appsettings.json with environment-specific settings
   cd inventory-service
   # Edit src/Api/appsettings.json
   # Configure database connection, JWT settings, and service endpoints
  1. Generate Entities - Create domain model with EF Core entities
   python scripts/entity_generator.py Inventory --fields "Id:int,ProductId:int,Quantity:int,Warehouse:string"
   python scripts/entity_generator.py InventoryMovement --fields "Id:int,InventoryId:int,Quantity:int,Type:string,Timestamp:DateTime"
  1. Implement Business Logic - Add service layer logic and validation rules
  1. Add Tests - Generate unit and integration tests
   # Run tests
   dotnet test
   dotnet test --filter Category=Integration
  1. Build and Deploy
   dotnet publish -c Release
   docker build -t inventory-service:latest .

See dotnet-best-practices.md for complete setup patterns.

2. REST API Development

Time: 20-30 minutes per endpoint group

  1. Design API Contract - Define endpoints following REST conventions
   python scripts/api_endpoint_generator.py products --methods GET,POST,PUT,DELETE --paginated
  1. Implement Validation - Add FluentValidation validators and custom rules
  1. Configure Error Handling - Set up global exception handler with ProblemDetails (RFC 7807)
  1. Add OpenAPI Documentation - Configure Swagger/OpenAPI for automatic API docs
  1. Test Endpoints - Generate integration tests with WebApplicationFactory

See aspnet-core-patterns.md for API design patterns.

3. Entity Framework Core Optimization

Time: 1-2 hours for complex data models

  1. Analyze Current Queries - Profile repository methods for N+1 problems
   python scripts/performance_profiler.py --analyze-queries src/
  1. Optimize Fetch Strategies - Configure eager loading with Include/ThenInclude
  1. Add Query Projections - Use Select projections for read-only queries
  1. Configure Caching - Set up distributed caching with Redis
  1. Implement Pagination - Use cursor-based or offset pagination for large datasets

See ef-core-guide.md for optimization patterns.

4. ASP.NET Core Security Implementation

Time: 1-2 hours

  1. Generate Security Config - Create security configuration for chosen auth method
   python scripts/security_config_generator.py --type jwt --roles Admin,User,Manager
  1. Configure JWT/OAuth2 - Set up token generation, validation, and refresh
  1. Implement Authorization - Add policy-based authorization to endpoints
  1. Add Attribute Authorization - Configure [Authorize] attributes with policies
  1. Test Security - Generate security integration tests

See dotnet-security-reference.md for security patterns.

Python Tools

dotnet_project_scaffolder.py

Generate production-ready ASP.NET Core project structures with complete configuration.

Key Features:

  • .NET 8 with C# 12 support
  • Multiple project types (webapi, mvc, blazor, minimal-api, worker)
  • Database configuration (SQL Server, PostgreSQL, MySQL, SQLite, Cosmos DB)
  • Docker and Docker Compose setup
  • GitHub Actions CI/CD pipeline
  • Clean Architecture template
  • FluentValidation and AutoMapper integration

Common Usage:

# Web API with SQL Server and JWT security
python scripts/dotnet_project_scaffolder.py user-service --type webapi --db sqlserver --auth jwt

# MVC with PostgreSQL and Identity
python scripts/dotnet_project_scaffolder.py ecommerce --type mvc --db postgresql --auth identity

# Minimal API service with SQLite
python scripts/dotnet_project_scaffolder.py notification-service --type minimal-api --db sqlite

# Help
python scripts/dotnet_project_scaffolder.py --help

entity_generator.py

Generate complete EF Core entity stacks with repository, service, controller, and DTO.

Key Features:

  • EF Core entity with data annotations or Fluent API
  • Generic repository pattern implementation
  • Service layer with dependency injection
  • REST controller with validation
  • DTO and AutoMapper profile
  • Relationship support (OneToMany, ManyToOne, ManyToMany)

Common Usage:

# Basic entity
python scripts/entity_generator.py Customer --fields "Id:int,Name:string,Email:string"

# Entity with relationships
python scripts/entity_generator.py Order --fields "Id:int,CustomerId:int,Total:decimal" --relations "Customer:ManyToOne"

# Entity with audit fields
python scripts/entity_generator.py Product --fields "Id:int,Name:string,Price:decimal" --auditable

# Help
python scripts/entity_generator.py --help

api_endpoint_generator.py

Scaffold RESTful API endpoints with validation and documentation.

Key Features:

  • Controller or Minimal API endpoint generation
  • Request/response DTOs
  • FluentValidation validators
  • OpenAPI/Swagger annotations
  • Pagination support
  • Error handling

Common Usage:

# Full CRUD endpoints
python scripts/api_endpoint_generator.py orders --methods GET,POST,PUT,DELETE

# Read-only with pagination
python scripts/api_endpoint_generator.py reports --methods GET --paginated

# Minimal API style
python scripts/api_endpoint_generator.py products --style minimal-api

# Help
python scripts/api_endpoint_generator.py --help

security_config_generator.py

Generate ASP.NET Core security configuration for various authentication methods.

Key Features:

  • JWT Bearer authentication setup
  • ASP.NET Core Identity configuration
  • OAuth2/OIDC configuration
  • Policy-based authorization
  • CORS configuration
  • Security middleware

Common Usage:

# JWT security with roles
python scripts/security_config_generator.py --type jwt --roles Admin,User

# Identity with external login
python scripts/security_config_generator.py --type identity --external-providers Google,Microsoft

# OAuth2/OIDC
python scripts/security_config_generator.py --type oidc --authority https://auth.example.com

# Help
python scripts/security_config_generator.py --help

dependency_analyzer.py

Analyze NuGet dependencies for vulnerabilities and updates.

Key Features:

  • Security vulnerability scanning
  • Outdated package detection
  • Upgrade path recommendations
  • Dependency tree analysis
  • License compliance checking

Common Usage:

# Analyze project
python scripts/dependency_analyzer.py MyProject.csproj

# Analyze with security focus
python scripts/dependency_analyzer.py src/ --check-security

# Generate markdown report
python scripts/dependency_analyzer.py MyProject.csproj --output report.md

# Help
python scripts/dependency_analyzer.py --help

performance_profiler.py

Profile .NET applications and generate optimization recommendations.

Key Features:

  • EF Core query analysis for N+1 detection
  • Async/await antipattern detection
  • Memory allocation patterns
  • Connection pool recommendations
  • GC behavior analysis

Common Usage:

# Analyze source for performance issues
python scripts/performance_profiler.py --analyze-queries src/

# Generate optimization report
python scripts/performance_profiler.py src/ --output performance-report.md

# Help
python scripts/performance_profiler.py --help

Reference Documentation

When to Use Each Reference

dotnet-best-practices.md - .NET Patterns

  • Solution/project structure and Clean Architecture
  • Dependency injection patterns
  • Configuration management with Options pattern
  • Logging and monitoring with Serilog
  • Testing strategies (unit, integration, functional)

aspnet-core-patterns.md - ASP.NET Core

  • Middleware pipeline configuration
  • Minimal APIs vs Controllers
  • Request/response handling
  • Filters and attributes
  • Background services with IHostedService

ef-core-guide.md - Data Layer

  • Entity configuration with Fluent API
  • Migrations management
  • Query optimization and projections
  • Change tracking strategies
  • Concurrency handling with row versioning

dotnet-security-reference.md - Security

  • Authentication schemes (JWT, Identity, OIDC)
  • Authorization patterns (roles, policies, requirements)
  • Data Protection API
  • OWASP compliance checklist
  • Security headers and HTTPS

dotnet-performance-tuning.md - Performance

  • Async/await best practices
  • Memory management and allocation
  • Caching strategies (in-memory, distributed)
  • Connection pooling configuration
  • Profiling tools and diagnostics

Best Practices

Quality Standards

  • Code Coverage: Target 80%+ for business logic, 60%+ overall
  • API Documentation: 100% endpoint coverage with OpenAPI
  • Security Scanning: Zero critical/high vulnerabilities
  • Performance: P99 latency < 200ms for CRUD operations

Common Pitfalls to Avoid

  • N+1 Queries - Always use Include/ThenInclude or projections for relationships
  • Missing Async - Use async/await consistently for I/O operations
  • Sync over Async - Never use .Result or .Wait() on async methods
  • Hardcoded Configuration - Use IOptions pattern and environment variables
  • Missing Validation - Always validate input with FluentValidation
  • EF Core Tracking - Use AsNoTracking() for read-only queries

See dotnet-best-practices.md for detailed guidelines.

Performance Metrics

Development Efficiency:

  • Project scaffolding time (target: < 30 minutes)
  • Entity stack generation (target: < 5 minutes per entity)
  • Security setup time (target: < 1 hour)

Code Quality:

  • Test coverage (target: 80%+)
  • Static analysis issues (target: 0 critical/high)
  • Documentation coverage (target: 100% public APIs)

Runtime Performance:

  • P99 latency (target: < 200ms)
  • Throughput (target: > 1000 RPS per instance)
  • Memory efficiency (target: < 256MB for typical service)

Integration

This skill works best with:

  • senior-backend - For general API patterns and database design
  • senior-architect - For system design and microservices architecture decisions
  • senior-devops - For CI/CD pipeline and Kubernetes deployment
  • senior-security - For security audits and penetration testing

See dotnet-best-practices.md for CI/CD and automation integration examples.

Composability & Integration

Skill Composition Patterns

This skill receives input from:

  • senior-architect - Architecture decisions inform project scaffolding choices
  • business-analyst-toolkit - Requirements define entity models and API contracts
  • product-manager-toolkit - User stories guide feature implementation

This skill provides output to:

  • senior-devops - Generated projects include Dockerfile and CI/CD configuration
  • senior-qa - Generated code includes test scaffolding for QA automation
  • technical-writer - OpenAPI specs feed API documentation generation

Recommended Skill Combinations

Workflow Pattern 1: Microservices Development

senior-architect → senior-dotnet → senior-devops

Use this pattern for designing and deploying microservices with proper architecture review.

Workflow Pattern 2: Full-Stack Feature

senior-dotnet → senior-frontend → senior-qa

Use this pattern for end-to-end feature implementation with backend API, frontend UI, and testing.

Benefits

Time Savings:

  • 60% faster project scaffolding vs. manual setup
  • 50% reduction in boilerplate code through generation
  • 40% faster security implementation with templates

Quality Improvements:

  • Consistent architecture across projects
  • Built-in security best practices
  • Comprehensive test coverage templates

Business Impact:

  • Faster time-to-market for new services
  • Reduced technical debt through standardization
  • Lower maintenance costs through consistency

Next Steps

Getting Started:

  1. Run python scripts/dotnet_project_scaffolder.py my-service --type webapi --db sqlserver to create your first project
  2. Review generated structure and customize configuration
  3. Generate entities with python scripts/entity_generator.py

Advanced Usage:

  • Configure .NET Aspire for service discovery
  • Implement CQRS patterns with MediatR
  • Set up distributed tracing with OpenTelemetry

Additional Resources


Documentation: Full skill guide and workflows available in this file

Support: For issues or questions, refer to domain guide at ../CLAUDE.md

Version: 1.0.0 | Last Updated: 2025-12-16 | Status: Production Ready

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Claude Code

28.34%
按下载量换算72

Gemini CLI

25.16%
按下载量换算64

windsurf

19.13%
按下载量换算49

trae

11.87%
按下载量换算30

OpenCode

8.32%
按下载量换算21

Codex

3.98%
按下载量换算10

安全审计

暂无安全审计结果可展示。

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills