@misha_misha/agentwatch 0.0.1 → 0.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +508 -46
- package/dist/chunk-5QNDC2VP.js +98 -0
- package/dist/{detect-57ZQXQNN.js → detect-JH6COHZ5.js} +1 -1
- package/dist/index.js +1979 -152
- package/package.json +1 -1
- package/dist/chunk-LF76VUCL.js +0 -45
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@misha_misha/agentwatch",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.2",
|
|
4
4
|
"description": "Local-only observability for AI coding agents. See what Claude, Codex, Cursor, Gemini, and OpenClaw are touching on your machine — in one timeline.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"author": "Misha Nefedov",
|
package/dist/chunk-LF76VUCL.js
DELETED
|
@@ -1,45 +0,0 @@
|
|
|
1
|
-
#!/usr/bin/env node
|
|
2
|
-
|
|
3
|
-
// src/adapters/detect.ts
|
|
4
|
-
import { existsSync } from "fs";
|
|
5
|
-
import { homedir } from "os";
|
|
6
|
-
import { join } from "path";
|
|
7
|
-
function detectAgents() {
|
|
8
|
-
const home = homedir();
|
|
9
|
-
return [
|
|
10
|
-
{
|
|
11
|
-
name: "claude-code",
|
|
12
|
-
label: "Claude Code",
|
|
13
|
-
configPath: join(home, ".claude", "settings.json"),
|
|
14
|
-
present: existsSync(join(home, ".claude", "projects"))
|
|
15
|
-
},
|
|
16
|
-
{
|
|
17
|
-
name: "codex",
|
|
18
|
-
label: "Codex",
|
|
19
|
-
configPath: join(home, ".codex", "config.toml"),
|
|
20
|
-
present: existsSync(join(home, ".codex"))
|
|
21
|
-
},
|
|
22
|
-
{
|
|
23
|
-
name: "cursor",
|
|
24
|
-
label: "Cursor",
|
|
25
|
-
configPath: join(home, ".cursor", "mcp.json"),
|
|
26
|
-
present: existsSync(join(home, ".cursor"))
|
|
27
|
-
},
|
|
28
|
-
{
|
|
29
|
-
name: "gemini",
|
|
30
|
-
label: "Gemini CLI",
|
|
31
|
-
configPath: join(home, ".gemini", "settings.json"),
|
|
32
|
-
present: existsSync(join(home, ".gemini"))
|
|
33
|
-
},
|
|
34
|
-
{
|
|
35
|
-
name: "openclaw",
|
|
36
|
-
label: "OpenClaw",
|
|
37
|
-
configPath: join(home, ".openclaw"),
|
|
38
|
-
present: existsSync(join(home, ".openclaw"))
|
|
39
|
-
}
|
|
40
|
-
];
|
|
41
|
-
}
|
|
42
|
-
|
|
43
|
-
export {
|
|
44
|
-
detectAgents
|
|
45
|
-
};
|