| 1 | using AgentForge.Abstractions; |
| 2 | using Microsoft.AspNetCore.Builder; |
| 3 | using Microsoft.Extensions.Configuration; |
| 4 | using Microsoft.Extensions.DependencyInjection; |
| 5 | |
| 6 | namespace AgentForge.Plugin.Grouping.Core; |
| 7 | |
| 8 | public sealed class GroupingCoreForgePlugin : IForgePlugin |
| 9 | { |
| 10 | public string Id => "grouping-core"; |
| 11 | |
| 12 | public string DisplayName => "Grouping (core)"; |
| 13 | |
| 14 | public string Tier => "core"; |
| 15 | |
| 16 | public void ConfigureServices(IServiceCollection services, IConfiguration configuration) |
| 17 | { |
| 18 | } |
| 19 | |
| 20 | public void MapEndpoints(WebApplication app) |
| 21 | { |
| 22 | } |
| 23 | |
| 24 | public void RegisterFeatures(ForgeFeatureRegistry registry) => registry.Add("forge_grouping"); |
| 25 | } |
| 26 | |
View only · write via MCP/CIDE