diff --git a/.gitignore b/.gitignore index b417d04..7b29b4c 100644 --- a/.gitignore +++ b/.gitignore @@ -5,4 +5,4 @@ temp.js scratch.js # ignore eveything in agent_code except for 0.js agent_code/** -!agent_code/0.js \ No newline at end of file +!agent_code/template.js \ No newline at end of file diff --git a/agent_code/template.js b/agent_code/template.js new file mode 100644 index 0000000..d7b062f --- /dev/null +++ b/agent_code/template.js @@ -0,0 +1,6 @@ +import * as skills from '../utils/skills.js'; +import * as world from '../utils/world.js'; + +export async function main(bot) { + // agent's code goes here +}