()
| 798 | // but every tool call will report the missing-vault error. |
| 799 | let vaultPromise: Promise<string> | null = null |
| 800 | const getVault = (): Promise<string> => { |
| 801 | if (!vaultPromise) vaultPromise = resolveVaultRoot() |
| 802 | return vaultPromise |
| 803 | } |
| 804 | |
| 805 | const instructions = await resolveInstructions() |
| 806 | const server = new Server( |
no test coverage detected