Also, it seems that you can't assign a trait to multiple AgentTypes. It will only work for the first one listed.
example (from Data\export_descr_character_traits.txt):
Trait AgentTrait
Characters diplomat, assassin
will only work for diplomats. It's like it ignores the rest of the line.
If you make two traits, they both should work:
Trait DiplomatTrait
Characters diplomat
...
Trait AssassinTrait
Characters assassin
Now, if you want a trait to apply to all characters, try this:
Trait AllTrait
Characters all
.
Bookmarks