feat: add OpenSearch highlight snippets to search results
All checks were successful
CI / build (push) Successful in 1m23s
CI / cleanup-branch (push) Has been skipped
CI / docker (push) Successful in 54s
CI / deploy (push) Successful in 39s
CI / deploy-feature (push) Has been skipped

- Add highlight field to ExecutionSummary record
- Request highlight fragments from OpenSearch when full-text search is active
- Pass matchContext to command palette for display

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
hsiegeln
2026-03-25 09:29:07 +01:00
parent b32c97c02b
commit d9c8816647
3 changed files with 30 additions and 2 deletions

View File

@@ -30,6 +30,7 @@ public record ExecutionSummary(
long durationMs,
String correlationId,
String errorMessage,
String diagramContentHash
String diagramContentHash,
String highlight
) {
}