Source profileQuality 85/100

Benknightdark/neo-skills/skills/neo-dotnet-mvc/SKILL.md

neo-dotnet-mvc

Use this skill when building, debugging, refactoring, or reviewing ASP.NET Core MVC apps with Razor views, controllers, ViewModels, validation, Tag Helpers, View Components, layouts, or server-rendered workflows.

Source repository stars
7
Declared platforms
0
Static risk flags
0
Last source update
2026-08-05
Source checked
2026-08-05

Decision brief

What it does—and where it fits

NET Core MVC apps with Razor views, controllers, ViewModels, validation, Tag Helpers, View Components, layouts, or server-rendered workflows.

Best for

  • Use this skill when building, debugging, refactoring, or reviewing ASP.

Not for

  • Tasks that require unconfirmed production actions or broad system permissions.
  • Environments where the pinned source and install steps cannot be inspected.

Compatibility matrix

Platform support, with evidence labels

PlatformStatusEvidenceWhat to check
CodexNot declaredNo explicit evidencePortability before use
Claude CodeNot declaredNo explicit evidencePortability before use
CursorNot declaredNo explicit evidencePortability before use
Gemini CLINot declaredNo explicit evidencePortability before use
Open the compatibility checker

Installation

Inspect first. Install second.

The source command is displayed only when detected. A safe inspection prompt is always available so your agent can explain every action before execution.

Source-detected install commandSource
npx skills add https://github.com/Benknightdark/neo-skills --skill "skills/neo-dotnet-mvc"
Safe inspection promptEditorial

Inspect the Agent Skill "neo-dotnet-mvc" from https://github.com/Benknightdark/neo-skills/blob/c3e3d1bcf6aae00a729ceab257e6a68dd40d89ec/skills/neo-dotnet-mvc/SKILL.md at commit c3e3d1bcf6aae00a729ceab257e6a68dd40d89ec. List every install step, command, network request, credential, file read/write, external action, and rollback step. Explain whether it fits my task. Do not install or execute anything until I approve.

Workflow

What the source asks the agent to do

  1. 01

    Workflow

    1. Perceive (Architecture Awareness): - Check .csproj to identify TargetFramework. - Analyze Views/Shared to confirm existing configurations for layouts and partial views. - Identify whether Tag Helpers and static resource versioning are enabled. 2. Reason (Planning Phase): - Ev…

    Perceive (Architecture Awareness):Check .csproj to identify TargetFramework.Analyze Views/Shared to confirm existing configurations for layouts and partial views.
  2. 02

    Trigger On

    The user requests to create, debug, refactor, or review ASP.NET Core MVC applications.

    The user requests to create, debug, refactor, or review ASP.NET Core MVC applications.The project contains Views and Controllers directories and inherits from Controller (not ControllerBase).The target framework is .NET 6.0 (LTS) and above.
  3. 03

    Feature Roadmap (.NET 6 - 10)

    Tag Helpers: Declarative HTML attribute extensions.

    Tag Helpers: Declarative HTML attribute extensions.View Components: Logic-driven UI block modularization.Cache Tag Helper: Server-side view fragment caching.
  4. 04

    .NET 6 & 7 (Foundation)

    Tag Helpers: Declarative HTML attribute extensions.

    Tag Helpers: Declarative HTML attribute extensions.View Components: Logic-driven UI block modularization.Cache Tag Helper: Server-side view fragment caching.

Permission review

Static risk signals and limitations

No configured static risk pattern was detected

This is not proof of safety. Runtime behavior, indirect dependencies, and hidden external systems are outside the static scan.

Evidence record

Why each signal appears

EvidenceSourceComputedTestedEditorial
SignalValueEvidence typeMeaning
Quality score85/100ComputedDocumentation, specificity, maintenance, and trust rules
Repository stars7SourceRepository attention, not individual Skill quality
Compatibility0 platformsSourceDeclared in the catalog source record
Usage guideautomated source guideEditorialGenerated or reviewed according to the visible evidence level

Pinned source

Provenance and original SKILL.md

Repository
Benknightdark/neo-skills
Skill path
skills/neo-dotnet-mvc/SKILL.md
Commit
c3e3d1bcf6aae00a729ceab257e6a68dd40d89ec
License
MIT
Collected
2026-08-05
Default branch
main
View the original SKILL.md

.NET MVC Expert Skill

Trigger On

  • The user requests to create, debug, refactor, or review ASP.NET Core MVC applications.
  • The project contains Views and Controllers directories and inherits from Controller (not ControllerBase).
  • The target framework is .NET 6.0 (LTS) and above.
  • There is a need to optimize Server-Side Rendering (SSR) performance or improve view organizational structure.

Workflow

  1. Perceive (Architecture Awareness):
    • Check .csproj to identify TargetFramework.
    • Analyze Views/Shared to confirm existing configurations for layouts and partial views.
    • Identify whether Tag Helpers and static resource versioning are enabled.
  2. Reason (Planning Phase):
    • Evaluate whether complex Partial Views need to be migrated to View Components.
    • Determine whether custom Tag Helpers are needed to simplify UI logic.
    • Choose an appropriate ViewModel organization method based on project scale.
  3. Act (Execution Phase):
    • Write high-quality controllers and strongly-typed views.
    • Implement data validation (Data Annotations) and integrate them into ViewModels.
    • Configure and use Tag Helpers to ensure the semantic correctness of forms and links.
  4. Validate (Standard Validation):
    • Validate whether page rendering conforms to the expected HTML structure.
    • Check whether model validation correctly operates on both the frontend and backend.
    • Ensure Antiforgery tokens are correctly applied to all state-modifying requests.

Feature Roadmap (.NET 6 - 10)

.NET 6 & 7 (Foundation)

  • Tag Helpers: Declarative HTML attribute extensions.
  • View Components: Logic-driven UI block modularization.
  • Cache Tag Helper: Server-side view fragment caching.
  • Nullable Views: Better Razor null safety support.

.NET 8 & 9 (Productivity)

  • Blazor Integration: Hybrid development support for MVC and Blazor components.
  • Antiforgery Improvements: Global anti-forgery automatic validation optimization.
  • Keyed Services in Controllers: Finer-grained dependency injection support.
  • Native AOT for MVC: Metadata compilation optimization tailored for AOT.

.NET 10+ (Version-Specific Features)

  • Extension Members for IHtmlHelper: Extending view helper functions.
  • Advanced Serialization in Views: Performance optimization for large view models.

Coding Standards

  • Strongly Typed Views: All views must have an explicit @model.
  • ViewModel Separation: Strictly prohibit exposing database entities directly to views.
  • Naming: View models must end with ViewModel, action methods prioritize asynchronous patterns.
  • Formatting: Follow the Allman style and use Tag Helpers instead of HTML Helpers.

Deliver

  • Version-Optimized MVC Code: Provide modernized controllers, models, and views suitable for the target version.
  • UI Architecture Suggestions: Provide design suggestions for view components and Tag Helpers.
  • Validation Logic: Provide a complete model validation and error prompting implementation plan.

Validate

  • Ensure the code complies with C# 10+ syntax standards.
  • Validate endpoints correctly handle model validation failures and return form states.
  • Confirm static resources and scripts are correctly cached via asp-append-version.

Documentation

Official References

Internal References

Alternatives

Compare before choosing

Computed 976

mgiovani/cc-arsenal

team-review

Multi-agent review team: architecture, security, performance, testing, style, docs/UX, plus an adversary that cross-examines the other 6, for security-sensitive, architectural, or large PRs (15+ files) where a single-agent pass risks missing cross-cutting issues. Use for auth/payments/PII changes, schema/pattern changes, compliance sign-off, or when asked to 'get the review team on this' / 'multi-agent review' / 'thorough review before merge'. For a standard PR or a quick pre-merge check, use /r

Computed 964,944

dotnet/skills

dotnet-webapi

Guides creation and modification of ASP.NET Core Web API endpoints with correct HTTP semantics, OpenAPI metadata, and error handling. USE FOR: adding new API endpoints (controllers or minimal APIs), wiring up OpenAPI/Swagger, creating .http test files, setting up global error handling middleware. DO NOT USE FOR: general C# coding style, EF Core data access or query optimization (use optimizing-ef-core-queries), frontend/Blazor work, gRPC services, or SignalR hubs.

Computed 96107

AI-Unified-Process/marketplace

reverse-engineer

Reverse-engineers an existing software project into AI Unified Process artifacts: a PlantUML use case diagram, per-use-case specification documents, and an entity model with a Mermaid ER diagram. Use when the user asks to "reverse engineer this codebase", "extract use cases from existing code", "document the system we already have", "generate use case specs from controllers", "derive an entity model from the database", "create AIUP artifacts from a legacy project", or mentions reverse engineerin

Computed 9510,879

Jeffallan/claude-skills

fastapi-expert

Use when building high-performance async Python APIs with FastAPI and Pydantic V2. Invoke to create REST endpoints, define Pydantic models, implement authentication flows, set up async SQLAlchemy database operations, add JWT authentication, build WebSocket endpoints, or generate OpenAPI documentation. Trigger terms: FastAPI, Pydantic, async Python, Python API, REST API Python, SQLAlchemy async, JWT authentication, OpenAPI, Swagger Python.