| 1 | using AgentForge.Abstractions; |
| 2 | using Microsoft.Extensions.Configuration; |
| 3 | using Microsoft.Extensions.DependencyInjection; |
| 4 | |
| 5 | namespace AgentForge.Plugin.Stub; |
| 6 | |
| 7 | /// <summary>No-op commercial plugin stub — replace Id/DisplayName and add routes in private zoo repo.</summary> |
| 8 | public sealed class StubForgePlugin : IForgePlugin |
| 9 | { |
| 10 | public string Id => "stub"; |
| 11 | |
| 12 | public string DisplayName => "Commercial plugin stub"; |
| 13 | |
| 14 | public string Tier => "zoo"; |
| 15 | |
| 16 | public void ConfigureServices(IServiceCollection services, IConfiguration configuration) |
| 17 | { |
| 18 | } |
| 19 | |
| 20 | public void MapEndpoints(WebApplication app) |
| 21 | { |
| 22 | } |
| 23 | } |
| 24 | |
View only · write via MCP/CIDE