feat(hooks): add Hermes telemetry handler

This commit is contained in:
William Valentin
2026-05-20 17:35:56 -07:00
parent 78376bdd83
commit 27d40ce28f
9 changed files with 2452 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
{
"name": "@anthropic-ai/agentmon-hermes",
"version": "1.0.0",
"description": "agentmon hook handler for Hermes Agent",
"main": "handler.js",
"type": "module",
"bin": {
"agentmon-hermes-handler": "./handler.js"
},
"scripts": {
"build": "npx esbuild handler.ts --bundle --platform=node --format=esm --outfile=handler.js"
},
"dependencies": {},
"devDependencies": {
"esbuild": "^0.20.0",
"typescript": "^5.3.0"
}
}