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.
@@ -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: false,
90
- observationMethod: "extension",
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: false,
99
- observationMethod: "extension",
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: false,
108
- observationMethod: "extension",
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: false,
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
- observerAvailable: false,
181
- observationMethod: "none",
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
- observerAvailable: false,
189
- observationMethod: "none",
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: false,
208
- observationMethod: "none",
209
+ observerAvailable: true,
210
+ observationMethod: "poller",
209
211
  },
210
212
  {
211
213
  id: "langchain",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jobarbiter",
3
- "version": "0.4.1",
3
+ "version": "0.4.2",
4
4
  "description": "CLI for JobArbiter — the first AI Proficiency Marketplace",
5
5
  "type": "module",
6
6
  "bin": {
@@ -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: false,
127
- observationMethod: "extension",
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: false,
136
- observationMethod: "extension",
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: false,
145
- observationMethod: "extension",
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: false,
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
- observerAvailable: false,
219
- observationMethod: "none",
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
- observerAvailable: false,
227
- observationMethod: "none",
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: false,
247
- observationMethod: "none",
248
+ observerAvailable: true,
249
+ observationMethod: "poller",
248
250
  },
249
251
  {
250
252
  id: "langchain",