60 lines
1.6 KiB
JSON
60 lines
1.6 KiB
JSON
{
|
|
"name": "@tpmjs/tools-monitoring-gap-analysis",
|
|
"version": "0.2.0",
|
|
"description": "Analyze monitoring coverage gaps across services and endpoints",
|
|
"type": "module",
|
|
"keywords": ["tpmjs", "ops", "monitoring", "observability", "sre"],
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.d.ts",
|
|
"default": "./dist/index.js"
|
|
}
|
|
},
|
|
"files": ["dist"],
|
|
"scripts": {
|
|
"build": "tsup",
|
|
"dev": "tsup --watch",
|
|
"type-check": "tsc --noEmit",
|
|
"clean": "rm -rf dist .turbo"
|
|
},
|
|
"devDependencies": {
|
|
"@tpmjs/tsconfig": "workspace:*",
|
|
"tsup": "^8.3.5",
|
|
"typescript": "^5.9.3"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/anthropics/tpmjs.git",
|
|
"directory": "packages/tools/official/monitoring-gap-analysis"
|
|
},
|
|
"homepage": "https://tpmjs.com",
|
|
"license": "MIT",
|
|
"tpmjs": {
|
|
"category": "ops",
|
|
"frameworks": ["vercel-ai"],
|
|
"tools": [
|
|
{
|
|
"name": "monitoringGapAnalysisTool",
|
|
"description": "Analyze monitoring coverage gaps across services to identify missing metrics, alerts, or logs",
|
|
"parameters": [
|
|
{
|
|
"name": "services",
|
|
"type": "array",
|
|
"description": "Array of services with monitoring status flags",
|
|
"required": true
|
|
}
|
|
],
|
|
"returns": {
|
|
"type": "MonitoringGapAnalysis",
|
|
"description": "Object with gaps array, recommendations, and coverage score"
|
|
}
|
|
}
|
|
]
|
|
},
|
|
"dependencies": {
|
|
"ai": "6.0.0-beta.124"
|
|
}
|
|
}
|