jobarbiter 0.4.1 → 0.4.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/dist/lib/detect-tools.js +15 -13
- package/package.json +1 -1
- package/src/lib/detect-tools.ts +15 -13
package/dist/lib/detect-tools.js
CHANGED
|
@@ -86,8 +86,8 @@ const TOOL_DEFINITIONS = [
|
|
|
86
86
|
category: "ai-agent",
|
|
87
87
|
vscodeExtension: "saoudrizwan.claude-dev",
|
|
88
88
|
cursorExtension: "saoudrizwan.claude-dev",
|
|
89
|
-
observerAvailable:
|
|
90
|
-
observationMethod: "
|
|
89
|
+
observerAvailable: true,
|
|
90
|
+
observationMethod: "poller",
|
|
91
91
|
},
|
|
92
92
|
{
|
|
93
93
|
id: "windsurf",
|
|
@@ -95,8 +95,8 @@ const TOOL_DEFINITIONS = [
|
|
|
95
95
|
category: "ai-agent",
|
|
96
96
|
binary: "windsurf",
|
|
97
97
|
macApp: "/Applications/Windsurf.app",
|
|
98
|
-
observerAvailable:
|
|
99
|
-
observationMethod: "
|
|
98
|
+
observerAvailable: true,
|
|
99
|
+
observationMethod: "poller",
|
|
100
100
|
},
|
|
101
101
|
{
|
|
102
102
|
id: "copilot-chat",
|
|
@@ -104,8 +104,8 @@ const TOOL_DEFINITIONS = [
|
|
|
104
104
|
category: "ai-agent",
|
|
105
105
|
vscodeExtension: "github.copilot-chat",
|
|
106
106
|
cursorExtension: "github.copilot-chat",
|
|
107
|
-
observerAvailable:
|
|
108
|
-
observationMethod: "
|
|
107
|
+
observerAvailable: true,
|
|
108
|
+
observationMethod: "poller",
|
|
109
109
|
},
|
|
110
110
|
{
|
|
111
111
|
id: "zed-ai",
|
|
@@ -141,7 +141,7 @@ const TOOL_DEFINITIONS = [
|
|
|
141
141
|
binary: "letta",
|
|
142
142
|
configDir: join(homedir(), ".letta"),
|
|
143
143
|
pipPackage: "letta",
|
|
144
|
-
observerAvailable:
|
|
144
|
+
observerAvailable: true,
|
|
145
145
|
observationMethod: "poller",
|
|
146
146
|
},
|
|
147
147
|
{
|
|
@@ -177,16 +177,18 @@ const TOOL_DEFINITIONS = [
|
|
|
177
177
|
name: "ChatGPT Desktop",
|
|
178
178
|
category: "chat",
|
|
179
179
|
macApp: "/Applications/ChatGPT.app",
|
|
180
|
-
|
|
181
|
-
|
|
180
|
+
configDir: platform() === "darwin" ? join(homedir(), "Library", "Containers", "com.openai.chat") : undefined,
|
|
181
|
+
observerAvailable: true,
|
|
182
|
+
observationMethod: "poller",
|
|
182
183
|
},
|
|
183
184
|
{
|
|
184
185
|
id: "claude-desktop",
|
|
185
186
|
name: "Claude Desktop",
|
|
186
187
|
category: "chat",
|
|
187
188
|
macApp: "/Applications/Claude.app",
|
|
188
|
-
|
|
189
|
-
|
|
189
|
+
configDir: platform() === "darwin" ? join(homedir(), "Library", "Application Support", "Claude") : undefined,
|
|
190
|
+
observerAvailable: true,
|
|
191
|
+
observationMethod: "poller",
|
|
190
192
|
},
|
|
191
193
|
{
|
|
192
194
|
id: "ollama",
|
|
@@ -204,8 +206,8 @@ const TOOL_DEFINITIONS = [
|
|
|
204
206
|
category: "orchestration",
|
|
205
207
|
binary: "openclaw",
|
|
206
208
|
configDir: join(homedir(), ".openclaw"),
|
|
207
|
-
observerAvailable:
|
|
208
|
-
observationMethod: "
|
|
209
|
+
observerAvailable: true,
|
|
210
|
+
observationMethod: "poller",
|
|
209
211
|
},
|
|
210
212
|
{
|
|
211
213
|
id: "langchain",
|
package/package.json
CHANGED
package/src/lib/detect-tools.ts
CHANGED
|
@@ -123,8 +123,8 @@ const TOOL_DEFINITIONS: ToolDefinition[] = [
|
|
|
123
123
|
category: "ai-agent",
|
|
124
124
|
vscodeExtension: "saoudrizwan.claude-dev",
|
|
125
125
|
cursorExtension: "saoudrizwan.claude-dev",
|
|
126
|
-
observerAvailable:
|
|
127
|
-
observationMethod: "
|
|
126
|
+
observerAvailable: true,
|
|
127
|
+
observationMethod: "poller",
|
|
128
128
|
},
|
|
129
129
|
{
|
|
130
130
|
id: "windsurf",
|
|
@@ -132,8 +132,8 @@ const TOOL_DEFINITIONS: ToolDefinition[] = [
|
|
|
132
132
|
category: "ai-agent",
|
|
133
133
|
binary: "windsurf",
|
|
134
134
|
macApp: "/Applications/Windsurf.app",
|
|
135
|
-
observerAvailable:
|
|
136
|
-
observationMethod: "
|
|
135
|
+
observerAvailable: true,
|
|
136
|
+
observationMethod: "poller",
|
|
137
137
|
},
|
|
138
138
|
{
|
|
139
139
|
id: "copilot-chat",
|
|
@@ -141,8 +141,8 @@ const TOOL_DEFINITIONS: ToolDefinition[] = [
|
|
|
141
141
|
category: "ai-agent",
|
|
142
142
|
vscodeExtension: "github.copilot-chat",
|
|
143
143
|
cursorExtension: "github.copilot-chat",
|
|
144
|
-
observerAvailable:
|
|
145
|
-
observationMethod: "
|
|
144
|
+
observerAvailable: true,
|
|
145
|
+
observationMethod: "poller",
|
|
146
146
|
},
|
|
147
147
|
{
|
|
148
148
|
id: "zed-ai",
|
|
@@ -178,7 +178,7 @@ const TOOL_DEFINITIONS: ToolDefinition[] = [
|
|
|
178
178
|
binary: "letta",
|
|
179
179
|
configDir: join(homedir(), ".letta"),
|
|
180
180
|
pipPackage: "letta",
|
|
181
|
-
observerAvailable:
|
|
181
|
+
observerAvailable: true,
|
|
182
182
|
observationMethod: "poller",
|
|
183
183
|
},
|
|
184
184
|
{
|
|
@@ -215,16 +215,18 @@ const TOOL_DEFINITIONS: ToolDefinition[] = [
|
|
|
215
215
|
name: "ChatGPT Desktop",
|
|
216
216
|
category: "chat",
|
|
217
217
|
macApp: "/Applications/ChatGPT.app",
|
|
218
|
-
|
|
219
|
-
|
|
218
|
+
configDir: platform() === "darwin" ? join(homedir(), "Library", "Containers", "com.openai.chat") : undefined,
|
|
219
|
+
observerAvailable: true,
|
|
220
|
+
observationMethod: "poller",
|
|
220
221
|
},
|
|
221
222
|
{
|
|
222
223
|
id: "claude-desktop",
|
|
223
224
|
name: "Claude Desktop",
|
|
224
225
|
category: "chat",
|
|
225
226
|
macApp: "/Applications/Claude.app",
|
|
226
|
-
|
|
227
|
-
|
|
227
|
+
configDir: platform() === "darwin" ? join(homedir(), "Library", "Application Support", "Claude") : undefined,
|
|
228
|
+
observerAvailable: true,
|
|
229
|
+
observationMethod: "poller",
|
|
228
230
|
},
|
|
229
231
|
{
|
|
230
232
|
id: "ollama",
|
|
@@ -243,8 +245,8 @@ const TOOL_DEFINITIONS: ToolDefinition[] = [
|
|
|
243
245
|
category: "orchestration",
|
|
244
246
|
binary: "openclaw",
|
|
245
247
|
configDir: join(homedir(), ".openclaw"),
|
|
246
|
-
observerAvailable:
|
|
247
|
-
observationMethod: "
|
|
248
|
+
observerAvailable: true,
|
|
249
|
+
observationMethod: "poller",
|
|
248
250
|
},
|
|
249
251
|
{
|
|
250
252
|
id: "langchain",
|