()
| 1121 | } |
| 1122 | |
| 1123 | func sampleToolsetsResponse() ToolsetsResponseRecord { |
| 1124 | return ToolsetsResponseRecord{Toolsets: []ToolsetRecord{ |
| 1125 | { |
| 1126 | ID: toolspkg.ToolsetIDCatalog, |
| 1127 | Tools: []string{"agh__skill_*"}, |
| 1128 | Toolsets: []toolspkg.ToolsetID{toolspkg.ToolsetIDBootstrap}, |
| 1129 | ExpandedTools: []toolspkg.ToolID{toolspkg.ToolIDToolList, toolspkg.ToolIDSkillView}, |
| 1130 | Status: "expanded", |
| 1131 | }, |
| 1132 | { |
| 1133 | ID: "mcp__github_read", |
| 1134 | Tools: []string{"mcp__github__*"}, |
| 1135 | ExpandedTools: []toolspkg.ToolID{"mcp__github__search"}, |
| 1136 | Status: "degraded", |
| 1137 | ReasonCodes: []toolspkg.ReasonCode{toolspkg.ReasonMCPAuthRequired}, |
| 1138 | }, |
| 1139 | }} |
| 1140 | } |
| 1141 | |
| 1142 | func sampleInvokeResponse() ToolInvokeResponseRecord { |
| 1143 | return ToolInvokeResponseRecord{ |
no outgoing calls
no test coverage detected