-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.16 KB
/
Copy pathpackage.json
File metadata and controls
87 lines (87 loc) · 2.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "agent-obs",
"version": "1.0.7",
"mcpName": "io.github.KryptosAI/agent-observability",
"description": "Trace AI agent execution: every tool call, every error, every dollar. Open source agent observability for Claude, Cursor, opencode, and any MCP-compatible agent. Local-first, free forever.",
"main": "cli.js",
"bin": {
"agent-obs": "./cli.js"
},
"engines": {
"node": ">=18"
},
"scripts": {
"postinstall": "node scripts/postinstall.mjs || true",
"start": "node cli.js start",
"dashboard": "node cli.js dashboard",
"inspect": "node cli.js inspect",
"test": "node test.js",
"lint": "eslint . --ext .js,.mjs --ignore-pattern node_modules --ignore-pattern public",
"format": "prettier --write '**/*.{js,mjs,json,md}' --ignore-path .prettierignore",
"format:check": "prettier --check '**/*.{js,mjs,json,md}' --ignore-path .prettierignore",
"server": "node cli.js server"
},
"dependencies": {
"better-sqlite3": "^12.11.1",
"express": "^4.21.0"
},
"devDependencies": {
"eslint": "^8.57.0",
"prettier": "^3.3.0"
},
"repository": {
"type": "git",
"url": "https://github.com/KryptosAI/agent-observability"
},
"keywords": [
"ai",
"agent",
"observability",
"mcp",
"model-context-protocol",
"claude",
"claude-code",
"cursor",
"opencode",
"codex",
"tracing",
"monitoring",
"debugging",
"profiling",
"llm",
"llm-agent",
"ai-agent",
"ai-agents",
"agentic",
"tool-calls",
"session-tracking",
"cost-tracking",
"session-recording",
"agent-monitoring",
"agent-tracing",
"mcp-server",
"devtools",
"developer-tools",
"local-first",
"open-source",
"free"
],
"author": "Agent Observability Contributors",
"license": "MIT",
"homepage": "https://github.com/agent-observability/agent-observability#readme",
"bugs": {
"url": "https://github.com/agent-observability/agent-observability/issues"
},
"files": [
"cli.js",
"server.js",
"proxy.js",
"mcp-server.js",
"database.js",
"public/",
"scripts/",
"README.md",
"CHANGELOG.md",
"LICENSE"
]
}