(description: string)
| 977 | * description (it runs from its header to the end), so the `skills` tool can |
| 978 | * re-use it without rebuilding the inventory from the executor. */ |
| 979 | const extractInventory = (description: string): string => { |
| 980 | const index = description.indexOf(INTEGRATION_INVENTORY_HEADER); |
| 981 | return index === -1 ? "" : description.slice(index).trimEnd(); |
| 982 | }; |
| 983 | |
| 984 | // --------------------------------------------------------------------------- |
| 985 | // Hang-visibility join keys |
no outgoing calls
no test coverage detected