MCPcopy Create free account
hub / github.com/compozy/agh / sessionRepairIssueSummary

Function sessionRepairIssueSummary

internal/cli/session.go:1045–1054  ·  view source on GitHub ↗
(items []SessionRepairIssueRecord)

Source from the content-addressed store, hash-verified

1043}
1044
1045func sessionRepairIssueSummary(items []SessionRepairIssueRecord) string {
1046 if len(items) == 0 {
1047 return ""
1048 }
1049 parts := make([]string, 0, len(items))
1050 for _, item := range items {
1051 parts = append(parts, repairSummaryPart(item.Code, item.TurnID, item.EventID))
1052 }
1053 return strings.Join(parts, ", ")
1054}
1055
1056func sessionRepairActionSummary(items []SessionRepairActionRecord) string {
1057 if len(items) == 0 {

Callers 1

sessionRepairBundleFunction · 0.85

Calls 2

appendFunction · 0.85
repairSummaryPartFunction · 0.85

Tested by

no test coverage detected