| 1 | namespace AgentForge.Abstractions; |
| 2 | |
| 3 | /// <summary> |
| 4 | /// Minimal API route token for repo full names (FORGE-ADR-0021). |
| 5 | /// Slashes in grouped paths use <c>~</c> in the URL segment (<c>ai-guiders~agent-forge</c>); see <see cref="ForgeRepoNames.ToUrlPath"/>. |
| 6 | /// </summary> |
| 7 | public static class ForgeRepoRouting |
| 8 | { |
| 9 | public const string Parameter = "name"; |
| 10 | |
| 11 | public const string Pattern = "{" + Parameter + "}"; |
| 12 | } |
| 13 |