Forge
csharp3407750f
1namespace AgentForge.Plugin.View;
2
3internal sealed record ForgeViewPageContext(
4 string RepoName,
5 IReadOnlyList<string> RepoNames,
6 string ActiveTab = "code",
7 int IssueCount = 0,
8 int MrCount = 0,
9 ForgeViewViewerContext? Viewer = null,
10 string? SearchQuery = null,
11 IReadOnlyList<AgentForge.Abstractions.ForgeViewContributor>? Contributors = null);
12
View only · write via MCP/CIDE