(description: string)
| 832 | * description (it runs from its header to the end), so the `skills` tool can |
| 833 | * re-use it without rebuilding the inventory from the executor. */ |
| 834 | const extractInventory = (description: string): string => { |
| 835 | const index = description.indexOf(INTEGRATION_INVENTORY_HEADER); |
| 836 | return index === -1 ? "" : description.slice(index).trimEnd(); |
| 837 | }; |
| 838 | |
| 839 | // --------------------------------------------------------------------------- |
| 840 | // Hang-visibility join keys |
no outgoing calls
no test coverage detected