In your info.nut and libary.nut you need to add a new function called:
GetShortName()
It should return a 4 (four) character string, which is unique throughout the world (well .. for AIs and AI Libraries related to OpenTTD that is of course

GetShortName() { return "TEST"; }
Returning a string of any other size will make your AI unloadable. We will use this ShortName to track your AI better.
If you start using a ShortName in public, make sure to post your tag in the topic about it (sticky, in this forum).
[Update]
All AI Libraries should now have this function in their library.nut:
GetCategory()
Which returns a string of the category the library belongs to. This should be equal to the directory it is in for now. Soon you will understand why those changes are needed
