-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
506 lines (506 loc) · 18.4 KB
/
Copy pathpackage.json
File metadata and controls
506 lines (506 loc) · 18.4 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
{
"name": "codex-session-tools",
"displayName": "Codex Session Tools",
"description": "VS Code extension for Codex and Kilo workflows, account rotation, and Codex LB routing helpers.",
"version": "0.2.0",
"publisher": "oll4com",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/oll4com/codex-session-tools.git"
},
"homepage": "https://github.com/oll4com/codex-session-tools",
"bugs": {
"url": "https://github.com/oll4com/codex-session-tools/issues"
},
"files": [
"extension.js",
"config-editor.js",
"README.md",
"PUBLISHING.md",
"LICENSE.md",
"CHANGELOG.md",
"media"
],
"engines": {
"vscode": "^1.96.2"
},
"categories": [
"Other"
],
"keywords": [
"codex",
"kilo",
"vscode-extension",
"productivity",
"session-tools",
"routing"
],
"activationEvents": [
"onStartupFinished",
"onCommand:codexProviderStatusbar.pickProvider",
"onCommand:codexProviderStatusbar.openQuickActions",
"onCommand:codexProviderStatusbar.logoutToBestAccount",
"onCommand:codexProviderStatusbar.loginWithSavedAccount",
"onCommand:codexProviderStatusbar.saveCurrentAuthSnapshot",
"onCommand:codexProviderStatusbar.showCurrentAndNextAccount",
"onCommand:codexProviderStatusbar.showCurrentRemainingMetrics",
"onCommand:codexProviderStatusbar.showDebugLog",
"onCommand:codexProviderStatusbar.reloadWindow",
"onCommand:codexProviderStatusbar.sendContinuePrompt",
"onCommand:codexProviderStatusbar.openVoiceDraft",
"onCommand:codexProviderStatusbar.openScreenClipTool",
"onCommand:codexProviderStatusbar.captureScreenToChat",
"onCommand:codexProviderStatusbar.showCodexLbStatus",
"onCommand:codexProviderStatusbar.showCodexLbUsage",
"onCommand:codexProviderStatusbar.refreshCodexLbUsage",
"onCommand:codexProviderStatusbar.refreshCodexLbModels",
"onCommand:codexProviderStatusbar.selectCodexLbRoute",
"onCommand:codexProviderStatusbar.openCodexLbDashboard",
"onCommand:codexProviderStatusbar.lowReasoningAndSaveMemoryPrompt",
"onCommand:codexProviderStatusbar.openNextRemoteSession",
"onCommand:codexProviderStatusbar.openCodexSidebar",
"onCommand:codexProviderStatusbar.newCodexThread"
],
"main": "./extension.js",
"contributes": {
"keybindings": [
{
"command": "codexProviderStatusbar.pickProvider",
"key": "ctrl+alt+p",
"mac": "cmd+alt+p"
},
{
"command": "codexProviderStatusbar.newCodexThread",
"key": "ctrl+alt+n",
"mac": "cmd+alt+n"
},
{
"command": "codexProviderStatusbar.lowReasoningAndSaveMemoryPrompt",
"key": "ctrl+alt+l",
"mac": "cmd+alt+l"
},
{
"command": "codexProviderStatusbar.openCodexSidebar",
"key": "ctrl+alt+o",
"mac": "cmd+alt+o"
}
],
"commands": [
{
"command": "codexProviderStatusbar.openQuickActions",
"title": "Codex Session Tools: Open Quick Actions",
"icon": "$(list-selection)"
},
{
"command": "codexProviderStatusbar.pickProvider",
"title": "Codex Session Tools: Switch Provider",
"icon": "$(plug)"
},
{
"command": "codexProviderStatusbar.logoutToBestAccount",
"title": "Codex Session Tools: Logout To Best Account",
"icon": "$(sign-out)"
},
{
"command": "codexProviderStatusbar.loginWithSavedAccount",
"title": "Codex Session Tools: Login With Saved Account",
"icon": "$(sign-in)"
},
{
"command": "codexProviderStatusbar.saveCurrentAuthSnapshot",
"title": "Codex Session Tools: Save Current Auth Snapshot",
"icon": "$(save)"
},
{
"command": "codexProviderStatusbar.showCurrentAndNextAccount",
"title": "Codex Session Tools: Show Current/Next Account",
"icon": "$(account)"
},
{
"command": "codexProviderStatusbar.showCurrentRemainingMetrics",
"title": "Codex Session Tools: Show Current Remaining Metrics",
"icon": "$(dashboard)"
},
{
"command": "codexProviderStatusbar.showDebugLog",
"title": "Codex Session Tools: Show Debug Log",
"icon": "$(output)"
},
{
"command": "codexProviderStatusbar.reloadWindow",
"title": "Codex Session Tools: Reload Window",
"icon": "$(refresh)"
},
{
"command": "codexProviderStatusbar.sendContinuePrompt",
"title": "Codex Session Tools: Send \"συνεχισε\"",
"icon": "$(arrow-right)"
},
{
"command": "codexProviderStatusbar.openVoiceDraft",
"title": "Codex Session Tools: Greek Voice Draft",
"icon": "$(mic)"
},
{
"command": "codexProviderStatusbar.openScreenClipTool",
"title": "Codex Session Tools: Open Screen Clip Tool",
"icon": "$(device-camera)"
},
{
"command": "codexProviderStatusbar.captureScreenToChat",
"title": "Codex Session Tools: Capture Screen To Chat",
"icon": "$(screen-full)"
},
{
"command": "codexProviderStatusbar.showCodexLbStatus",
"title": "Codex Session Tools: Show Codex LB Status",
"icon": "$(pulse)"
},
{
"command": "codexProviderStatusbar.showCodexLbUsage",
"title": "Codex Session Tools: Show Codex LB Usage",
"icon": "$(dashboard)"
},
{
"command": "codexProviderStatusbar.refreshCodexLbUsage",
"title": "Codex Session Tools: Refresh Codex LB Usage",
"icon": "$(refresh)"
},
{
"command": "codexProviderStatusbar.refreshCodexLbModels",
"title": "Codex Session Tools: Refresh Codex LB Models",
"icon": "$(refresh)"
},
{
"command": "codexProviderStatusbar.selectCodexLbRoute",
"title": "Codex Session Tools: Select Codex LB Route",
"icon": "$(server)"
},
{
"command": "codexProviderStatusbar.openCodexLbDashboard",
"title": "Codex Session Tools: Open Codex LB Dashboard",
"icon": "$(link-external)"
},
{
"command": "codexProviderStatusbar.lowReasoningAndSaveMemoryPrompt",
"title": "Codex Session Tools: Low Reasoning + Save Memory",
"icon": "$(history)"
},
{
"command": "codexProviderStatusbar.openNewWindow",
"title": "Codex Session Tools: Open New VS Code Window",
"icon": "$(empty-window)"
},
{
"command": "codexProviderStatusbar.openNextRemoteSession",
"title": "Codex Session Tools: Open Next Remote Session Window",
"icon": "$(vm-connect)"
},
{
"command": "codexProviderStatusbar.openCodexSidebar",
"title": "Codex Session Tools: Open Codex Sidebar",
"icon": "$(comment-discussion)"
},
{
"command": "codexProviderStatusbar.newCodexThread",
"title": "Codex Session Tools: New Codex Thread",
"icon": "$(plus)"
}
],
"menus": {
"view/title": [
{
"command": "codexProviderStatusbar.openQuickActions",
"when": "view == kilo-code.SidebarProvider || view == chatgpt.sidebarView || view == chatgpt.sidebarSecondaryView",
"group": "navigation@0"
},
{
"command": "codexProviderStatusbar.reloadWindow",
"when": "view == kilo-code.SidebarProvider || view == chatgpt.sidebarView || view == chatgpt.sidebarSecondaryView",
"group": "navigation@1"
},
{
"command": "codexProviderStatusbar.captureScreenToChat",
"when": "view == kilo-code.SidebarProvider || view == chatgpt.sidebarView || view == chatgpt.sidebarSecondaryView",
"group": "navigation@2"
},
{
"command": "codexProviderStatusbar.openScreenClipTool",
"when": "view == kilo-code.SidebarProvider || view == chatgpt.sidebarView || view == chatgpt.sidebarSecondaryView",
"group": "navigation@3"
},
{
"command": "codexProviderStatusbar.openNextRemoteSession",
"when": "view == kilo-code.SidebarProvider || view == chatgpt.sidebarView || view == chatgpt.sidebarSecondaryView",
"group": "navigation@4"
},
{
"command": "codexProviderStatusbar.selectCodexLbRoute",
"when": "view == kilo-code.SidebarProvider || view == chatgpt.sidebarView || view == chatgpt.sidebarSecondaryView",
"group": "navigation@5"
}
],
"editor/title": [
{
"command": "codexProviderStatusbar.openQuickActions",
"when": "activeWebviewPanelId == 'kilo-code.new.TabPanel'",
"group": "navigation@0"
},
{
"command": "codexProviderStatusbar.reloadWindow",
"when": "activeWebviewPanelId == 'kilo-code.new.TabPanel'",
"group": "navigation@1"
},
{
"command": "codexProviderStatusbar.captureScreenToChat",
"when": "activeWebviewPanelId == 'kilo-code.new.TabPanel'",
"group": "navigation@2"
},
{
"command": "codexProviderStatusbar.openScreenClipTool",
"when": "activeWebviewPanelId == 'kilo-code.new.TabPanel'",
"group": "navigation@3"
},
{
"command": "codexProviderStatusbar.openNextRemoteSession",
"when": "activeWebviewPanelId == 'kilo-code.new.TabPanel'",
"group": "navigation@4"
},
{
"command": "codexProviderStatusbar.selectCodexLbRoute",
"when": "activeWebviewPanelId == 'kilo-code.new.TabPanel'",
"group": "navigation@5"
}
],
"commandPalette": [
{
"command": "codexProviderStatusbar.openQuickActions"
},
{
"command": "codexProviderStatusbar.pickProvider"
},
{
"command": "codexProviderStatusbar.logoutToBestAccount"
},
{
"command": "codexProviderStatusbar.loginWithSavedAccount"
},
{
"command": "codexProviderStatusbar.saveCurrentAuthSnapshot"
},
{
"command": "codexProviderStatusbar.showCurrentAndNextAccount"
},
{
"command": "codexProviderStatusbar.showCurrentRemainingMetrics"
},
{
"command": "codexProviderStatusbar.showDebugLog"
},
{
"command": "codexProviderStatusbar.reloadWindow"
},
{
"command": "codexProviderStatusbar.sendContinuePrompt"
},
{
"command": "codexProviderStatusbar.openVoiceDraft"
},
{
"command": "codexProviderStatusbar.openScreenClipTool"
},
{
"command": "codexProviderStatusbar.captureScreenToChat"
},
{
"command": "codexProviderStatusbar.showCodexLbStatus"
},
{
"command": "codexProviderStatusbar.showCodexLbUsage"
},
{
"command": "codexProviderStatusbar.refreshCodexLbUsage"
},
{
"command": "codexProviderStatusbar.refreshCodexLbModels"
},
{
"command": "codexProviderStatusbar.selectCodexLbRoute"
},
{
"command": "codexProviderStatusbar.openCodexLbDashboard"
},
{
"command": "codexProviderStatusbar.lowReasoningAndSaveMemoryPrompt"
},
{
"command": "codexProviderStatusbar.openNextRemoteSession"
},
{
"command": "codexProviderStatusbar.openCodexSidebar"
},
{
"command": "codexProviderStatusbar.newCodexThread"
}
]
},
"configuration": {
"title": "Codex Session Tools",
"properties": {
"codexProviderStatusbar.openaiModel": {
"type": "string",
"default": "gpt-5.4",
"scope": "application",
"description": "Model written to [profiles.openai].model."
},
"codexProviderStatusbar.autoOpenCodexSidebar": {
"type": "boolean",
"default": true,
"scope": "application",
"description": "Open the official Codex sidebar after the extension host restarts."
},
"codexProviderStatusbar.showStatusBarItem": {
"type": "boolean",
"default": true,
"scope": "application",
"description": "Show the provider switcher in the VS Code status bar."
},
"codexProviderStatusbar.showCodexLbUsageStatusBarItem": {
"type": "boolean",
"default": true,
"scope": "application",
"description": "Show the Codex LB weekly-remaining status item in the VS Code status bar."
},
"codexProviderStatusbar.rotationEnabled": {
"type": "boolean",
"default": true,
"scope": "application",
"description": "Enable account rotation actions (detect current account, pick best next account, and run Codex logout)."
},
"codexProviderStatusbar.rotationShowStatusBarItem": {
"type": "boolean",
"default": true,
"scope": "application",
"description": "Show the status bar quick-action entry point for account rotation."
},
"codexProviderStatusbar.rotationVmAlias": {
"type": "string",
"default": "codex-usage-host",
"scope": "application",
"description": "SSH alias used to read account ranking data for one-click rotation."
},
"codexProviderStatusbar.rotationAccountsPath": {
"type": "string",
"default": "$HOME/.codex/codex-usage/accounts.json",
"scope": "application",
"description": "Remote JSON path containing the account list used by rotation actions."
},
"codexProviderStatusbar.rotationUsageCachePath": {
"type": "string",
"default": "$HOME/.codex/codex-usage/usage-cache.json",
"scope": "application",
"description": "Remote JSON path containing cached usage metrics for ranked account selection."
},
"codexProviderStatusbar.rotationAutoLoginFromSnapshot": {
"type": "boolean",
"default": true,
"scope": "application",
"description": "When enabled, Logout to Best Account requires a saved auth snapshot for the target account and applies it automatically for one-click ChatGPT login switching."
},
"codexProviderStatusbar.rotationAuthSnapshotsDir": {
"type": "string",
"default": "~/.codex/.codex-provider-statusbar/accounts",
"scope": "application",
"description": "Directory where per-account auth.json snapshots are stored for account auto-login switching."
},
"codexProviderStatusbar.remoteSessionDefaultAlias": {
"type": "string",
"default": "codex-dev",
"scope": "application",
"description": "Fallback SSH alias used by 'Open Next Remote Session' when the next alias cannot be derived from the current window."
},
"codexProviderStatusbar.remoteSessionMaxIndex": {
"type": "number",
"default": 5,
"minimum": 1,
"maximum": 5,
"scope": "application",
"description": "Highest codex-dev index opened by 'Open Next Remote Session'. The hard maximum is 5, giving 6 total windows: codex-dev plus codex-dev1..codex-dev5."
},
"codexProviderStatusbar.remoteSessionOpenPath": {
"type": "string",
"default": "/",
"scope": "application",
"description": "Remote path opened in the new SSH window for 'Open Next Remote Session'."
},
"codexProviderStatusbar.remoteSessionPresenceAlias": {
"type": "string",
"default": "codex-usage-host",
"scope": "application",
"description": "SSH alias used to publish live remote-session presence metadata."
},
"codexProviderStatusbar.remoteSessionPresenceDir": {
"type": "string",
"default": "/var/tmp/codex-session-tools/ssh-sessions",
"scope": "application",
"description": "Remote directory where live remote-session presence files are written."
},
"codexProviderStatusbar.codexLbProxyBaseUrl": {
"type": "string",
"default": "http://127.0.0.1:2458",
"scope": "application",
"description": "Base URL of the local Codex-LB editor proxy."
},
"codexProviderStatusbar.codexLbDashboardUrl": {
"type": "string",
"default": "http://127.0.0.1:2455/dashboard",
"scope": "application",
"description": "Browser URL for the Codex-LB dashboard."
},
"codexProviderStatusbar.codexLbPrimaryBaseUrl": {
"type": "string",
"default": "http://127.0.0.1:2455",
"scope": "application",
"description": "Primary direct Codex-LB base URL used for fallback reads and route metadata."
},
"codexProviderStatusbar.codexLbFallbackBaseUrl": {
"type": "string",
"default": "http://127.0.0.1:2456",
"scope": "application",
"description": "Fallback direct Codex-LB base URL used for route metadata."
},
"codexProviderStatusbar.codexLbHeadroomBaseUrl": {
"type": "string",
"default": "http://127.0.0.1:8787",
"scope": "application",
"description": "Headroom gateway base URL used for route metadata."
},
"codexProviderStatusbar.codexLbRouteStatePath": {
"type": "string",
"default": "~/.config/codex-lb-vscode-route.json",
"scope": "application",
"description": "JSON file written by the Codex-LB route selector."
},
"codexProviderStatusbar.codexLbProviderEnvPath": {
"type": "string",
"default": "~/.config/codex-lb-provider.env",
"scope": "application",
"description": "Optional env file used to expose Codex-LB credentials to helper commands."
},
"codexProviderStatusbar.codexLbModelCacheRefresherPath": {
"type": "string",
"default": "~/scripts/codex_lb_refresh_model_cache.js",
"scope": "application",
"description": "Helper script used to refresh the local Codex-LB model cache."
},
"codexProviderStatusbar.codexLbRouteSelectorPath": {
"type": "string",
"default": "~/.local/bin/codex-lb-vscode-select",
"scope": "application",
"description": "Helper executable that switches the active Codex-LB route."
}
}
}
}
}