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

Function InstructionApps

internal/entities/apps.go:372–379  ·  view source on GitHub ↗

InstructionApps returns the list of app names that support instructions (those with at least one install path defined).

()

Source from the content-addressed store, hash-verified

370// InstructionApps returns the list of app names that support instructions
371// (those with at least one install path defined).
372func InstructionApps() []string {
373 out := make([]string, 0, len(instructionApps))
374 for a := range instructionApps {
375 out = append(out, a)
376 }
377 sortStrings(out)
378 return out
379}
380
381// InstructionAppLevels returns the supported install levels for an app.
382func InstructionAppLevels(app string) []InstallLevel {

Callers 2

TestInstructionAppsListFunction · 0.92

Calls 1

sortStringsFunction · 0.85

Tested by 1

TestInstructionAppsListFunction · 0.74