(description: string)
| 813 | * description (it runs from its header to the end), so the `skills` tool can |
| 814 | * re-use it without rebuilding the inventory from the executor. */ |
| 815 | const extractInventory = (description: string): string => { |
| 816 | const index = description.indexOf(INTEGRATION_INVENTORY_HEADER); |
| 817 | return index === -1 ? "" : description.slice(index).trimEnd(); |
| 818 | }; |
| 819 | |
| 820 | // --------------------------------------------------------------------------- |
| 821 | // Hang-visibility join keys |
no outgoing calls
no test coverage detected