feat(hooks): add telemetry handlers for codex/copilot/gemini

This commit is contained in:
William Valentin
2026-03-20 11:17:26 -07:00
parent c88746693a
commit d235e3c873
23 changed files with 4506 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
{
"name": "@anthropic-ai/agentmon-claude-code",
"version": "1.0.0",
"description": "agentmon hook handler for Claude Code",
"main": "handler.js",
"type": "module",
"bin": {
"agentmon-handler": "./handler.js"
},
"scripts": {
"build": "npx esbuild handler.ts --platform=node --format=esm --outfile=handler.js"
},
"dependencies": {},
"devDependencies": {
"esbuild": "^0.20.0",
"typescript": "^5.3.0"
}
}