csharp4405de34 | 1 | using CascadeIDE.Contracts; |
| 2 | using CascadeIDE.Services.Intercom; |
| 3 | |
| 4 | namespace CascadeIDE.Features.Chat.Application; |
| 5 | |
| 6 | /// <summary>Детектор attach-синтаксиса в тексте сообщения (⟦a:…⟧, [F:…]). ADR 0134.</summary> |
| 7 | [ComputingUnit] |
| 8 | public static class IntercomAttachSyntax |
| 9 | { |
| 10 | public static bool HasWireOrBracketSyntax(string? text) => |
| 11 | !string.IsNullOrEmpty(text) |
| 12 | && (text.Contains('\u27E6', StringComparison.Ordinal) |
| 13 | || IntercomAttachmentMarkers.TryExtractBracketSpans(text, out _)); |
| 14 | } |
| 15 | |
View only · write via MCP/CIDE