csharpdeeb25a2 | 1 | #nullable enable |
| 2 | |
| 3 | using CascadeIDE.Contracts; |
| 4 | using CascadeIDE.Models.Intercom; |
| 5 | using CascadeIDE.Services.Intercom; |
| 6 | |
| 7 | namespace CascadeIDE.Features.Chat.Application; |
| 8 | |
| 9 | /// <summary>Детерминированная projection wire → сегменты ленты (ADR 0134). Не хранится в event log.</summary> |
| 10 | [ComputingUnit] |
| 11 | public static class IntercomFeedProjector |
| 12 | { |
| 13 | public static IReadOnlyList<IntercomAttachmentFeedSegment> ProjectProse( |
| 14 | string prose, |
| 15 | IReadOnlyList<AttachmentAnchor> attachments) => |
| 16 | IntercomAttachmentMarkers.SplitFeedSegments(prose, attachments); |
| 17 | } |
| 18 | |
View only · write via MCP/CIDE