Forge
csharp3407750f
1namespace AgentForge.Contracts;
2
3/// <summary>CIDE-compatible code anchor (FORGE-ADR-0003).</summary>
4public sealed record CodeAnchor(
5 string File,
6 int LineStart,
7 int? LineEnd = null,
8 string? MemberKey = null,
9 string? SyntaxScope = null);
10
View only · write via MCP/CIDE