@@ -17,9 +17,7 @@ internal sealed class CopilotCliAgentEnvironmentScanner : IAgentEnvironmentScann
1717 private const string CopilotFolderName = ".copilot" ;
1818 private const string McpConfigFileName = "mcp-config.json" ;
1919 private const string AspireServerName = "aspire" ;
20- private static readonly string s_skillFilePath = Path . Combine ( ".github" , "skills" , CommonAgentApplicators . AspireSkillName , "SKILL.md" ) ;
2120 private static readonly string s_skillBaseDirectory = Path . Combine ( ".github" , "skills" ) ;
22- private const string SkillFileDescription = "Create Aspire skill file (.github/skills/aspire/SKILL.md)" ;
2321
2422 private readonly ICopilotCliRunner _copilotCliRunner ;
2523 private readonly PlaywrightCliInstaller _playwrightCliInstaller ;
@@ -75,13 +73,6 @@ public async Task ScanAsync(AgentEnvironmentScanContext context, CancellationTok
7573
7674 // Register Playwright CLI installation applicator
7775 CommonAgentApplicators . AddPlaywrightCliApplicator ( context , _playwrightCliInstaller , s_skillBaseDirectory ) ;
78-
79- // Try to add skill file applicator for GitHub Copilot
80- CommonAgentApplicators . TryAddSkillFileApplicator (
81- context ,
82- context . RepositoryRoot ,
83- s_skillFilePath ,
84- SkillFileDescription ) ;
8576 return ;
8677 }
8778
@@ -113,13 +104,6 @@ public async Task ScanAsync(AgentEnvironmentScanContext context, CancellationTok
113104
114105 // Register Playwright CLI installation applicator
115106 CommonAgentApplicators . AddPlaywrightCliApplicator ( context , _playwrightCliInstaller , s_skillBaseDirectory ) ;
116-
117- // Try to add skill file applicator for GitHub Copilot
118- CommonAgentApplicators . TryAddSkillFileApplicator (
119- context ,
120- context . RepositoryRoot ,
121- s_skillFilePath ,
122- SkillFileDescription ) ;
123107 }
124108
125109 /// <summary>
0 commit comments