MCPcopy Create free account
hub / github.com/altic-dev/Pilot / formatRepoSetupInput

Function formatRepoSetupInput

src/components/tool-invocation.tsx:266–284  ·  view source on GitHub ↗
(input: any)

Source from the content-addressed store, hash-verified

264}
265
266function formatRepoSetupInput(input: any) {
267 return (
268 <div className="space-y-2">
269 {input?.repoUrl && (
270 <div className="flex items-start gap-2">
271 <span className="text-sm text-gray-400 min-w-[120px]">Repository URL:</span>
272 <a
273 href={input.repoUrl}
274 target="_blank"
275 rel="noopener noreferrer"
276 className="text-sm text-blue-400 hover:text-blue-300 underline break-all"
277 >
278 {input.repoUrl}
279 </a>
280 </div>
281 )}
282 </div>
283 );
284}
285
286function formatRepoSetupOutput(output: any) {
287 return (

Callers 1

renderInputFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected