MCPcopy Index your code
hub / github.com/codeaashu/claude-code / listInstalledApps

Function listInstalledApps

src/utils/computerUse/executor.ts:626–631  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

624 },
625
626 async listInstalledApps(): Promise<InstalledApp[]> {
627 // `ComputerUseInstalledApp` is `{bundleId, displayName, path}`.
628 // `InstalledApp` adds optional `iconDataUrl` — left unpopulated;
629 // the approval dialog fetches lazily via getAppIcon() below.
630 return drainRunLoop(() => cu.apps.listInstalled())
631 },
632
633 async getAppIcon(path: string): Promise<string | undefined> {
634 return cu.apps.iconDataUrl(path) ?? undefined

Callers

nothing calls this directly

Calls 1

drainRunLoopFunction · 0.85

Tested by

no test coverage detected