toolCatalogDeferred reports whether the deferred catalog is active. Read live so /config flips apply to the next prompt build.
()
| 46 | // toolCatalogDeferred reports whether the deferred catalog is active. Read |
| 47 | // live so /config flips apply to the next prompt build. |
| 48 | func toolCatalogDeferred() bool { |
| 49 | return strings.ToLower(strings.TrimSpace(os.Getenv(toolCatalogEnvVar))) != "full" |
| 50 | } |
| 51 | |
| 52 | // isCoreTool reports whether name keeps its full inline definition. |
| 53 | func isCoreTool(name string) bool { return coreToolNames[name] } |
no outgoing calls