You know how if you change a nodeName in an expression it will also change the name inside of it as well? Well, how do we go about doing this for stuff like a pointPosition, where the nodeName is inside of a string?
For example:
vector $v = `pointPosition -world "outputCloth1.vtx[11]"`;
If you change outputCloth1’s name to myCloth then the expression stops working, because the string still says outputCloth1!
I think you might be able to achieve what you're looking for via the message attribute. Messages are used to link nodes together in Maya, which (amongst other things) can form the basis of scripts that automatically update names as nodes are renamed.
Sorry I don't have a more concrete example atm, but look into message- that should get you going in the right direction.