ai-code-battle/bots/pacifist/package.json
jedarden 5a1130c77a feat(bot): add Pacifist bot (JavaScript) — non-aggressive attrition archetype
PacifistBot never attacks; it survives by maximizing distance from enemies
and retreating toward own core when cornered. Pure evasion strategy that
wins via opponent elimination by third parties.

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
2026-04-22 16:32:50 -04:00

12 lines
253 B
JSON

{
"name": "pacifist-bot",
"version": "1.0.0",
"description": "PacifistBot - Non-aggressive attrition archetype for AI Code Battle",
"main": "index.js",
"scripts": {
"start": "node index.js"
},
"engines": {
"node": ">=20.0.0"
}
}