MCPcopy Create free account
hub / github.com/Chat2AnyLLM/code-agent-manager / SupportedApps

Function SupportedApps

internal/entities/apps.go:398–406  ·  view source on GitHub ↗

SupportedApps returns the supported app names for the kind, sorted.

(kind Kind)

Source from the content-addressed store, hash-verified

396
397// SupportedApps returns the supported app names for the kind, sorted.
398func SupportedApps(kind Kind) []string {
399 apps := AppPathsFor(kind)
400 out := make([]string, 0, len(apps))
401 for a := range apps {
402 out = append(out, a)
403 }
404 sortStrings(out)
405 return out
406}
407
408// InstalledApps returns only the apps whose CLI binary is found on PATH.
409func InstalledApps(kind Kind) []string {

Callers 6

entityListCommandFunction · 0.92
entityInstallCommandFunction · 0.92
promptSelectAppFunction · 0.92
entityUninstallCommandFunction · 0.92
AvailableTargetsFunction · 0.92

Calls 2

AppPathsForFunction · 0.85
sortStringsFunction · 0.85

Tested by 1