()
| 178 | * The index is cached after first build since block registry is static. |
| 179 | */ |
| 180 | export function getToolOperationsIndex(): ToolOperationItem[] { |
| 181 | if (!cachedOperations) { |
| 182 | cachedOperations = buildToolOperationsIndex() |
| 183 | } |
| 184 | return cachedOperations |
| 185 | } |
| 186 | |
| 187 | /** |
| 188 | * Clears the cached operations index. |
no test coverage detected