@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
|
@@ -0,0 +1,98 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
|
|
3
|
+
// src/adapters/detect.ts
|
|
4
|
+
import { existsSync } from "fs";
|
|
5
|
+
import { homedir, platform } from "os";
|
|
6
|
+
import { join } from "path";
|
|
7
|
+
function detectAgents() {
|
|
8
|
+
const home = homedir();
|
|
9
|
+
const os = platform();
|
|
10
|
+
const clineDir = os === "darwin" ? join(
|
|
11
|
+
home,
|
|
12
|
+
"Library",
|
|
13
|
+
"Application Support",
|
|
14
|
+
"Code",
|
|
15
|
+
"User",
|
|
16
|
+
"globalStorage",
|
|
17
|
+
"saoudrizwan.claude-dev"
|
|
18
|
+
) : join(home, ".config", "Code", "User", "globalStorage", "saoudrizwan.claude-dev");
|
|
19
|
+
return [
|
|
20
|
+
{
|
|
21
|
+
name: "claude-code",
|
|
22
|
+
label: "Claude Code",
|
|
23
|
+
configPath: join(home, ".claude", "settings.json"),
|
|
24
|
+
present: existsSync(join(home, ".claude", "projects")),
|
|
25
|
+
instrumented: true
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
name: "openclaw",
|
|
29
|
+
label: "OpenClaw",
|
|
30
|
+
configPath: join(home, ".openclaw"),
|
|
31
|
+
present: existsSync(join(home, ".openclaw")),
|
|
32
|
+
instrumented: true
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
name: "cursor",
|
|
36
|
+
label: "Cursor",
|
|
37
|
+
configPath: join(home, ".cursor", "mcp.json"),
|
|
38
|
+
present: existsSync(join(home, ".cursor")),
|
|
39
|
+
instrumented: true
|
|
40
|
+
// config-level only in v0; SQLite DB TBD
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
name: "gemini",
|
|
44
|
+
label: "Gemini CLI",
|
|
45
|
+
configPath: join(home, ".gemini", "settings.json"),
|
|
46
|
+
present: existsSync(join(home, ".gemini")),
|
|
47
|
+
instrumented: true
|
|
48
|
+
},
|
|
49
|
+
// Detected but not yet instrumented — surfaced so users don't think
|
|
50
|
+
// agentwatch is broken when these show up in their workflow.
|
|
51
|
+
{
|
|
52
|
+
name: "codex",
|
|
53
|
+
label: "Codex",
|
|
54
|
+
configPath: join(home, ".codex", "sessions"),
|
|
55
|
+
present: existsSync(join(home, ".codex")),
|
|
56
|
+
instrumented: false
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
name: "aider",
|
|
60
|
+
label: "Aider",
|
|
61
|
+
configPath: "./.aider.chat.history.md (per-repo)",
|
|
62
|
+
present: existsSync(join(home, ".aider.chat.history.md")) || existsSync(join(home, ".aider.input.history")),
|
|
63
|
+
instrumented: false
|
|
64
|
+
},
|
|
65
|
+
{
|
|
66
|
+
name: "cline",
|
|
67
|
+
label: "Cline (VS Code)",
|
|
68
|
+
configPath: clineDir,
|
|
69
|
+
present: existsSync(clineDir),
|
|
70
|
+
instrumented: false
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
name: "continue",
|
|
74
|
+
label: "Continue.dev",
|
|
75
|
+
configPath: join(home, ".continue"),
|
|
76
|
+
present: existsSync(join(home, ".continue")),
|
|
77
|
+
instrumented: false
|
|
78
|
+
},
|
|
79
|
+
{
|
|
80
|
+
name: "windsurf",
|
|
81
|
+
label: "Windsurf",
|
|
82
|
+
configPath: join(home, ".codeium"),
|
|
83
|
+
present: existsSync(join(home, ".codeium")),
|
|
84
|
+
instrumented: false
|
|
85
|
+
},
|
|
86
|
+
{
|
|
87
|
+
name: "goose",
|
|
88
|
+
label: "Goose (Block)",
|
|
89
|
+
configPath: join(home, ".config", "goose"),
|
|
90
|
+
present: existsSync(join(home, ".config", "goose")),
|
|
91
|
+
instrumented: false
|
|
92
|
+
}
|
|
93
|
+
];
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
export {
|
|
97
|
+
detectAgents
|
|
98
|
+
};
|