| 1 | namespace AgentForge.Abstractions; |
| 2 | |
| 3 | /// <summary> |
| 4 | /// Multi-org repo_group tree for <c>/view</c> (org-web, FORGE-ADR-0033). |
| 5 | /// Group stack toolbar and nested sections — <see cref="IForgeOrgCatalogGrouping"/> (grouping-repositories). |
| 6 | /// </summary> |
| 7 | public interface IForgeMainPageCatalogBody |
| 8 | { |
| 9 | string RenderTree( |
| 10 | IReadOnlyList<ForgeOrgCatalogRepoItem> repos, |
| 11 | in ForgeOrgCatalogViewContext groupingContext, |
| 12 | IForgeOrgCatalogGrouping? grouping = null); |
| 13 | } |
| 14 |