i have a system like that which consists of a set of sub-abstractions for all inlets and outlets of a patcher.
[inlet]
[110.happy-inlet #0_thisabstraction thisinletname]
all the other stuff
[110.happy-outlet #0_thisabstraction thisoutletname]
[outlet]
it is basically a system which continiously sends a 1000 ms trigger train sent from a global master metro out through all outlets.
each outlet of each abstraction equipped with t hat will now not only send out e.g.
"17.5"
but rather something like
"weirdabstraction instance 5 outlet 2" .... "17.5"
using zl slice or route, the happy-inlet of other patches now makes sure that the patch knows where the 17.5 comes from. it can also be used to make the patcher rember to which other patches its inlets were connected and where. (not why though...yet)
i originally made this to script-recall patches or p arts of patches (so i had "snippets" in max 4 already 10 years ago ) but the whole thing is in practice still too complicated when many connections are made. and it only works in these special types of abstractions.
fun fact; my very first attempt was to use [grab] for that - only to find out that of course it cannot work across subpatchers. :)
-110