MCPcopy Index your code
hub / github.com/getsentry/XcodeBuildMCP / formatSkippedClients

Function formatSkippedClients

src/cli/commands/init.ts:104–110  ·  view source on GitHub ↗
(skippedClients: Array<{ client: string; reason: string }>)

Source from the content-addressed store, hash-verified

102}
103
104function formatSkippedClients(skippedClients: Array<{ client: string; reason: string }>): string {
105 if (skippedClients.length === 0) {
106 return '';
107 }
108
109 return skippedClients.map((skipped) => `${skipped.client}: ${skipped.reason}`).join('; ');
110}
111
112type AgentsGuidanceStatus = 'created' | 'updated' | 'no_change' | 'skipped' | 'error';
113

Callers 1

registerInitCommandFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected