If, after all of the configurations mentioned above, you still need to operate over existing tokens, you can do that with the MetaScriptToolbox and TokenMod.
!forselected(^) token-mod --set| ...token-mod commands here... {&select *}
You would use that caret character as a way to break up metascript constructions that you wouldn't want to resolve until you're in each iteration (for each individual token). For instance, if you needed the value of the HP attribute from the associated sheet for the iterated token, that might be:
@^(selected.hp)
If you need the ID of that attribute (to create the link), you would instead use:
@^(selected.hp.id)
Something to consider with this approach is that this construction:
{&select *}
...will select every token and run the TokenMod command you supply, however some tokens might need slightly different treatment. Some might be mooks (who need the value of an attribute applied to their bar), while others might be direct embodiments of the character (and need the ID of the associated attribute in a given bar). To accomodate that you could provide criteria to the selection statement (to only select certain tokens) and provide the correct TokenMod command for that batch of tokens... or you could conditionalize the TokenMod command (using APILogic). The best approach would depend on how many different types of token configurations you need to apply.