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

dotnet-framework-4.8-expertdotnet 框架 4 8 专家

Agent Skill

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

总安装

17,550

周安装

724

GitHub Stars

76

下载量

5,734
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/404kidwiz/claude-supercode-skills --skill dotnet-framework-4.8-expert

简介

该技能提供专业级 .NET Framework 4.8 开发支持,专注 WCF 和 MVC 5 维护。

  • 适用于企业集成、遗留系统扩展和现代 .NET 迁移规划场景。
  • 核心能力包括 COM 互操作、EF6 数据访问和渐进式重构策略制定。
  • 使用时应平衡技术债务管理与新功能开发需求。
  • 安装前需确认项目仍在使用 .NET Framework 而非 .NET Core。

SKILL.md

.NET Framework 4.8 Expert

Purpose

Provides legacy.NET Framework development expertise specializing in WCF services, ASP.NET MVC, and enterprise application maintenance. Supports extending and integrating legacy.NET 4.8 applications with modern patterns while managing technical debt and migration strategies.

When to Use

  • Maintaining or extending.NET Framework 4.8 applications
  • Developing WCF services for enterprise integrations
  • Working with ASP.NET MVC 5 web applications
  • Managing Entity Framework 6 database access
  • Integrating legacy COM components
  • Planning migration strategies to modern.NET

Quick Start

Invoke When

  • Maintaining.NET Framework 4.x applications
  • Building or extending WCF SOAP/REST services
  • ASP.NET MVC 5 development
  • Entity Framework 6 database operations
  • Windows Service development
  • COM interop requirements

Don't Invoke When

  • New projects (use.NET 8+ with dotnet-core-expert)
  • Modern web APIs (use ASP.NET Core)
  • Cross-platform needs (use.NET 8)
  • Containerized deployments (prefer.NET 8)

Core Competencies

.NET Framework 4.8 Features

  • .NET Framework 4.8 security and compatibility features
  • Windows Forms and WPF application development
  • Entity Framework 6 for database access
  • Windows Communication Foundation (WCF) services
  • ASP.NET MVC 5 web application development
  • Windows Services and background processing

WCF Services Architecture

  • Service contracts and data contracts
  • Binding configurations (WSHttpBinding, BasicHttpBinding)
  • Service hosting and deployment
  • Security configurations (Transport, Message, Mixed)
  • RESTful services with WebHttpBinding
  • Duplex communication patterns

ASP.NET MVC 5 Development

  • MVC pattern implementation
  • Razor view engine and HTML helpers
  • Model binding and validation
  • Authentication and authorization
  • Route configuration and attribute routing
  • Integration with JavaScript frameworks

Legacy System Integration

  • COM Interop for legacy component integration
  • Third-party library management
  • Database connectivity with ADO.NET
  • XML and SOAP web service consumption
  • Performance optimization for legacy code
  • Migration strategies to modern frameworks

Decision Framework

When to Modernize vs. Maintain

Evaluating legacy .NET Framework application?
│
├─ Is it actively developed (>1 feature/month)?
│  │
│  ├─ YES → Does it need cross-platform or containers?
│  │        │
│  │        ├─ YES → **Plan migration to .NET 8** ✓
│  │        │        (use Upgrade Assistant)
│  │        │
│  │        └─ NO → Business-critical?
│  │                 │
│  │                 ├─ YES → **Incremental modernization** ✓
│  │                 │        (strangler fig pattern)
│  │                 │
│  │                 └─ NO → **Maintain in place** ✓
│  │
│  └─ NO → End-of-life planned?
│           │
│           ├─ YES → **Minimal maintenance** ✓
│           │        (security patches only)
│           │
│           └─ NO → **Maintain in place** ✓
│                    (with documentation focus)

WCF vs. Modern Alternatives

AspectWCFASP.NET Web API 2gRPC
ProtocolSOAP, RESTRESTHTTP/2
Best forEnterprise SOAPREST APIsHigh-perf services
InteropExcellent (.NET, Java)UniversalLimited
ComplexityHighMediumMedium
MaintenanceLegacyLegacyModern

Entity Framework 6 vs. Alternatives

AspectEF6DapperADO.NET
ComplexityLowMediumHigh
PerformanceGoodExcellentBest
FlexibilityGoodExcellentFull control
Best forCRUD appsPerformance-criticalComplex queries

Best Practices

.NET Framework Development

  • Dependency Management: Use NuGet Package Manager, pin versions
  • Configuration: Use web.config/app.config transforms for environments
  • Logging: Implement comprehensive logging (log4net, Serilog)
  • Error Handling: Global exception handlers, proper error pages
  • Testing: MSTest or NUnit for unit tests, integration tests

WCF Services

  • Security: Use wsHttpBinding with message security
  • Binding Selection: Match bindings to requirements
  • Throttling: Configure throttling, instancing, concurrency
  • Error Handling: Use fault contracts, implement IErrorHandler
  • Testing: Use WCF Test Client or Postman

ASP.NET MVC

  • Controller Patterns: Use dependency injection, avoid business logic
  • View Models: Separate view models from domain models
  • Validation: Use data annotations and IValidatableObject
  • Security: Anti-forgery tokens, output encoding, authorization

Database Access (EF6)

  • Context Management: Context per request, repository pattern
  • Query Optimization: Use Include() for eager loading, avoid N+1
  • Migrations: Use Code First Migrations, version control
  • Performance: Compiled queries, caching strategies

Legacy Application Management

  • Technical Debt: Document and prioritize, address critical issues
  • Testing: Add unit tests around new features
  • Security: Keep.NET Framework patched
  • Documentation: Maintain architecture diagrams, data flows
  • Migration: Evaluate.NET Upgrade Assistant

Common Use Cases

Enterprise Legacy Applications

  • Maintaining existing line-of-business applications
  • Adding new features to established systems
  • Performance optimization of legacy code
  • Integration with modern services and APIs
  • Database migration and schema updates

WCF Service Applications

  • Enterprise service bus implementations
  • Integration with third-party systems
  • SOAP web service development
  • RESTful API creation with WCF
  • Service orchestration and choreography

Windows Desktop Applications

  • Line-of-business desktop applications
  • Database-driven client applications
  • Integration with Office automation
  • File processing and reporting tools

When to Use This Expert

Ideal Scenarios:

  • Maintaining existing.NET Framework 4.8 applications
  • Extending legacy enterprise systems
  • Integrating new features with existing WCF services
  • ASP.NET MVC application enhancement
  • Windows service development and maintenance

Alternative Solutions:

  • For new applications: Consider.NET Core/.NET 6+
  • For web APIs: Consider ASP.NET Core
  • For modern desktop apps: Consider WPF with.NET 6+ or MAUI

Additional Resources

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Claude Code

29.28%
按下载量换算1,679

OpenCode

24.2%
按下载量换算1,388

Codex

17.68%
按下载量换算1,014

Cursor

11.25%
按下载量换算645

Gemini CLI

6.65%
按下载量换算381

Antigravity

3.06%
按下载量换算175

安全审计

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

权限和风险

需要联网

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

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills