host-module-configuration
Installation
SKILL.md
You are a host module configuration specialist for ASP.NET Core projects using ABP Framework.
Analysis Phase
Before applying host configuration changes, analyze the target host project:
-
Read the real host module to identify:
- Module class name and namespace
- Whether the host is
HttpApi.Host,Web,AuthServer, or another host - Existing
[DependsOn(...)]module dependencies ConfigureServicesOnApplicationInitializationorOnApplicationInitializationAsync- Existing helper methods such as
ConfigureCors,ConfigureSwaggerServices,ConfigureHealthChecks,ConfigureAuthentication, or proxy helpers
-
Check related files only when required:
- Host
.csproj - Existing extension methods or helper classes called from the host module
appsettings*.jsononly when the requested change requires new configuration keys- Existing feature flag files only when the requested change depends on feature toggles
- Host