I'm somewhat interested in this topic and registered just to express how appalled I am at the below abuse of a perfectly nice language This is uuugly. An empty script should be a perfectly valid AI, albeit one that does nothing. The global object (a la 'window' in browsers or 'process' in node.js) should be a 'game' object and my window to the world (=API). Example: game game.startTime game.victoryConditions game.players (array of Player) game.me (my Player) game.map (map stuff) game.canCheat (if true, script can set unit attributes (e.g. armor), move stuff instantly, see everything...) ... aPlayer.units (e.g. me.units for my units) ... aUnit.build(what, where) aUnit.work(where) // build, gather, repair ... a la right-click aUnit.location aUnit.attack aUnit.armor And OMG, the "message handling"... There should be a ton of events defined, which I could listen to with standard addEventListener (or 'on' shortcut) / removeEventListener: var MIN = 60*1000; var barracks = ...; // Between 5min and 10min, the barracks should pick a unit type and build as many as possible setTimeout(function() { var end = new Date+5*MIN; var unitType = .. pick the best available unit..; barracks.build(unitType); barracks.on('unitBuilt', function(e) { if (new Date < end) this.build(e.unitType); // same unit }); }, 5*MIN); // At 10min, send all allies a message setTimeout(function() { game.allies.forEach(function(ally) { ally.tell('My army is ready!'); }); }, 10*MIN); Also, please don't be silly with stuff like constructors and include parameters being in the manifest. Use the manifest for name, description, author, etc. Stuff that you need when you're *NOT* loading the JS file. Who says my AI will be written OOP and not functionally? Why do I need a constructor? Also, I'll include stuff myself, tyvm (possibly based on runtime decisions). Just offer me an api like CommonJS's require(). Please, please just don't concern yourself with what is in the script file AT ALL (name conflicts, classes...). Just run the AI script and offer a global object with an API. AI script calls the engine, not the other way around. You don't see browser vendors and node.js guys worrying about your code structure, they just give you an api. Also, give every AI it's own JS environment. There's nothing wrong with globals, let AI devs use them if they want. Please just serialize the entire Javascript environment transparently, don't pass these limitations to the AI developer.