feat: build out discord support agent
All checks were successful
Node.js CI / Lint and Test (pull_request) Successful in 1m17s

This commit is contained in:
2025-07-05 23:06:45 -07:00
parent af33e704a4
commit cd5c3761f4
33 changed files with 1300 additions and 0 deletions

26
bot/package.json Normal file
View File

@ -0,0 +1,26 @@
{
"name": "bot",
"version": "0.0.0",
"description": "",
"main": "index.js",
"type": "module",
"scripts": {
"lint": "eslint ./src --max-warnings 0",
"build": "tsc",
"start": "op run --env-file=./prod.env -- node ./prod/index.js",
"test": "echo 'No tests yet' && exit 0"
},
"keywords": [],
"author": "",
"license": "ISC",
"packageManager": "pnpm@10.12.3",
"dependencies": {
"@anthropic-ai/sdk": "0.56.0",
"@nhcarrigan/logger": "1.0.0",
"discord.js": "14.21.0",
"fastify": "5.4.0"
},
"devDependencies": {
"@types/node": "24.0.10"
}
}