Hi,
I was dismissing the proposal for the same reason you do but it just occurred to me that substrings might be better than OP_CAT because it's possible to make them unabusable without any arbitrary limit on item size.
The idea is to store stack elements on the heap inside struct { ref_count, length, data[] } and put struct { pointer_to_item, position, length } on the stack. (Rust developers may be familiar with the `bytes` crate that does this.)
Substring operations would only duplicate the pointers with adjusted position and length so there's no way to blow up the stack using them.
Of course there's an exception if OP_SHA256 is used on a shorter slice but the same is true today - you can already write OP_ZERO OP_SHA256 OP_DUP OP_DUP...
Funnily, this can be used to optimize OP_DUP as well which would now add constant amount of memory, so the "exploit" above would need to use two bytes per every large object.
Anyway, while I would personally prefer not having arbitrary limits on item sizes, since the limit is already there, it might not matter. I guess something worth considering if any other future soft fork somehow enables larger items.
Have a nice day!
Martin