The thing is, I don't think annotate should be used as cons. The idea is that it attaches symbols which represent types - not that it bolts on new data. If you want data, you should annotate a cons or a table (or a cons with a table). Like, for example, if for some reason you wanted to create a point type with annotate, I think you wouldn't want to do
(annotate x y)
but rather
(annotate 'point (cons x y))
That's a silly example, because points are so simple, but for your attachment functions, I think adding to an actual list or table is a better solution than treating annotations as cons cells.
Oh, I certainly don't mean that annotations aren't equivalent to cons cells. That's definitely true. I'm just saying that that doesn't mean we should use them like we use cons cells. I think their primary use should be the one your code example shows: to add a type to some other object.