-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
892 lines (892 loc) · 32.4 KB
/
Copy pathpackage.json
File metadata and controls
892 lines (892 loc) · 32.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
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
{
"name": "neuropilot-base",
"displayName": "NeuroPilot",
"private": true,
"description": "Allows Neuro-sama to either act as a companion/copilot or control Visual Studio Code by herself.",
"icon": "assets/heart-xaendril.png",
"version": "2.5.0",
"publisher": "VSC-NeuroPilot",
"repository": "https://github.com/VSC-NeuroPilot/neuropilot",
"homepage": "https://vsc-neuropilot.github.io/neuropilot",
"license": "MIT",
"engines": {
"vscode": "^1.95.0"
},
"devEngines": {
"runtime": {
"name": "node",
"onFail": "warn",
"version": "^24.16.0"
}
},
"packageManager": "pnpm@11.5.0",
"categories": [
"AI",
"Programming Languages",
"Machine Learning"
],
"activationEvents": [
"onStartupFinished"
],
"qna": false,
"main": "./out/desktop/extension.js",
"browser": "./out/web/extension.js",
"contributes": {
"chatParticipants": [
{
"id": "neuropilot.api",
"name": "neuroapi",
"fullName": "Neuro API (custom name selected)",
"description": "Chat with the connected server",
"when": "config.neuropilot.currentlyAsNeuroAPI != 'Neuro' && config.neuropilot.currentlyAsNeuroAPI != 'Evil'",
"isSticky": true,
"commands": [
{
"name": "fix",
"description": "Ask the server to fix an error"
},
{
"name": "explain",
"description": "Ask the server to explain something in your code"
}
]
},
{
"id": "neuropilot.neuro",
"name": "neuro",
"fullName": "Neuro-sama",
"description": "Chat with Neuro-sama",
"when": "config.neuropilot.currentlyAsNeuroAPI == 'Neuro'",
"isSticky": true,
"commands": [
{
"name": "fix",
"description": "Ask Neuro to fix an error"
},
{
"name": "explain",
"description": "Ask Neuro to explain something in your code"
}
]
},
{
"id": "neuropilot.evil",
"name": "evil",
"fullName": "Evil Neuro",
"description": "Chat with Evil Neuro",
"when": "config.neuropilot.currentlyAsNeuroAPI === 'Evil'",
"isSticky": true,
"commands": [
{
"name": "fix",
"description": "Ask Evil to fix an error"
},
{
"name": "explain",
"description": "Ask Evil to explain something in your code"
}
]
}
],
"commands": [
{
"command": "neuropilot.reconnect",
"title": "Reconnect",
"category": "NeuroPilot"
},
{
"command": "neuropilot.disconnect",
"title": "Disconnect",
"category": "NeuroPilot"
},
{
"command": "neuropilot.moveNeuroCursorHere",
"title": "Move Neuro's Cursor Here",
"category": "NeuroPilot"
},
{
"command": "neuropilot.sendCurrentFile",
"title": "Send Current File As Context",
"category": "NeuroPilot"
},
{
"command": "neuropilot.giveCookie",
"title": "Give Cookie",
"category": "NeuroPilot"
},
{
"command": "neuropilot.reloadPermissions",
"title": "Reload Permissions",
"category": "NeuroPilot"
},
{
"command": "neuropilot.disableAllPermissions",
"title": "Disable All Permissions",
"category": "NeuroPilot"
},
{
"command": "neuropilot.acceptRceRequest",
"title": "Accept Neuro's Request",
"category": "NeuroPilot"
},
{
"command": "neuropilot.denyRceRequest",
"title": "Deny Neuro's Request",
"category": "NeuroPilot"
},
{
"command": "neuropilot.revealRceNotification",
"title": "Reveal Neuro's Request",
"category": "NeuroPilot"
},
{
"command": "neuropilot.fixWithNeuro",
"title": "Ask Neuro to fix",
"category": "NeuroPilot"
},
{
"command": "neuropilot.explainWithNeuro",
"title": "Ask Neuro to explain",
"category": "NeuroPilot"
},
{
"command": "neuropilot.switchNeuroAPIUser",
"title": "Switch Neuro API user name",
"category": "NeuroPilot"
},
{
"command": "neuropilot.refreshExtensionDependencyState",
"title": "Refresh extension dependencies (workaround, will be deprecated soon)",
"category": "NeuroPilot"
},
{
"command": "neuropilot.showDocsHomepage",
"title": "Open the docs site",
"category": "NeuroPilot"
},
{
"command": "neuropilot.openSpecificDocsPage",
"title": "Open a specific page in the docs",
"category": "NeuroPilot"
},
{
"command": "neuropilot.resetTemporarilyDisabledActions",
"title": "Reset temporarily disabled actions",
"category": "NeuroPilot"
},
{
"command": "neuropilot.readChangelog",
"title": "Ask Neuro to read changelog",
"category": "NeuroPilot"
},
{
"command": "neuropilot.dev.clearMementos",
"title": "Clear all NeuroPilot mementos",
"category": "NeuroPilot [Dev]",
"enablement": "isDevelopment"
},
{
"command": "neuropilot.dev.addExecutionHistoryItem",
"title": "Add Custom Execution History Item",
"category": "NeuroPilot [Dev]",
"enablement": "isDevelopment"
},
{
"command": "neuropilot.sendSelectionToNeuro",
"title": "Send selection to Neuro",
"category": "NeuroPilot",
"enablement": "editorHasSelection"
}
],
"configuration": [
{
"title": "NeuroPilot",
"properties": {
"neuropilot.websocketUrl": {
"type": "string",
"description": "The URL to connect to the Neuro API",
"deprecationMessage": "This setting has been moved to `neuropilot.connection.websocketUrl`"
},
"neuropilot.gameName": {
"type": "string",
"description": "The name to use for this \"game\"",
"deprecationMessage": "This setting has been moved to `neuropilot.connection.gameName`"
},
"neuropilot.initialContext": {
"type": "string",
"description": "The initial context to sent to Neuro-sama (or whatever is connected to NeuroPilot)",
"deprecationMessage": "This setting has been moved to `neuropilot.connection.initialContext`",
"editPresentation": "multilineText"
},
"neuropilot.currentlyAsNeuroAPI": {
"type": "string",
"markdownDescription": "Who is currently acting as the Neuro API server?\nThis only changes the name in certain areas (such as Copilot-mode requests or Git commit messages) due to limitations.\n\nYou can add custom characters using `settings.json` if you ignore the lint error from VS Code.\n\n(Most) names mentioned here are not associated with NeuroPilot.",
"deprecationMessage": "This setting has been moved to neuropilot.connection.nameOfAPI",
"enum": [
"Neuro",
"Evil",
"Randy",
"Jippity",
"Tony",
"Gary"
],
"enumDescriptions": [
"#1 at osu!",
"Evil, but actually nice.",
"Random Dot Range (Alex)",
"A GPT model (EnterpriseScratchDev)",
"The human operator (Pasu4)",
"Literally in your computer walls (Govorunb)"
]
},
"neuropilot.docsURL": {
"type": "string",
"default": "https://vsc-neuropilot.github.io/docs",
"markdownDescription": "If you're using a mirror of the docs site, put its URL here.\n\nYou will most likely not need to change this, unless you are modifying the docs themselves."
},
"neuropilot.beforeContext": {
"type": "integer",
"default": 500,
"description": "The number of lines before the cursor position to include as context when editing a file or sending a completion request"
},
"neuropilot.afterContext": {
"type": "integer",
"default": 500,
"description": "The number of lines after the cursor position to include as context when editing a file or sending a completion request"
},
"neuropilot.maxCompletions": {
"type": "integer",
"default": 3,
"description": "The maximum number of completions to request"
},
"neuropilot.completionTrigger": {
"type": "string",
"default": "invokeOnly",
"description": "When to trigger completions",
"enum": [
"off",
"invokeOnly",
"automatic"
],
"enumDescriptions": [
"Disable inline completion suggestions",
"Only request completions when the user explicitly invokes the completion provider",
"Automatically request completions when the user stops typing"
]
},
"neuropilot.timeout": {
"type": "integer",
"default": 10000,
"description": "The timeout in milliseconds for completions and chat responses in ms"
},
"neuropilot.includePattern": {
"markdownDeprecationMessage": "This setting has been moved to `neuropilot.access.includePattern`."
},
"neuropilot.excludePattern": {
"markdownDeprecationMessage": "This setting has been moved to `neuropilot.access.excludePattern`."
},
"neuropilot.terminals": {
"type": "array",
"tags": [
"advanced"
],
"items": {
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "The name Neuro can reference this terminal by"
},
"path": {
"type": "string",
"description": "The path to the terminal executable"
},
"args": {
"type": "array",
"items": {
"type": "string"
},
"description": "The arguments to pass to the terminal executable"
}
},
"required": [
"name",
"path"
],
"additionalProperties": false
},
"markdownDescription": "A list of terminals Neuro can use.\nChanging this requires a [permission reload](command:neuropilot.reloadPermissions).",
"default": [
{
"name": "PowerShell",
"path": "C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\powershell.exe",
"args": []
},
{
"name": "Command Prompt",
"path": "C:\\Windows\\System32\\cmd.exe",
"args": [
"/K"
]
},
{
"name": "Git Bash",
"path": "C:\\Program Files\\Git\\bin\\bash.exe",
"args": [
"-i"
]
}
]
},
"neuropilot.showTimeOnTerminalStart": {
"type": "boolean",
"default": true,
"markdownDescription": "Display the date and time of when a terminal is started by Neuro."
},
"neuropilot.terminalContextDelay": {
"type": "number",
"default": 400,
"markdownDescription": "The time in ms to wait for the terminal to print more output before sending context to Neuro. This is to prevent sending multiple context messages if the terminal doesn't print fast enough."
},
"neuropilot.allowUnsafePaths": {
"markdownDeprecationMessage": "This setting is no longer used. Please use the more granular access permissions such as `neuropilot.access.dotFiles` and `neuropilot.access.externalFiles`."
},
"neuropilot.allowRunningAllTasks": {
"markdownDeprecationMessage": "This setting has been moved to neuropilot.actions.allowRunningAllTasks."
},
"neuropilot.sendNewLintingProblemsOn": {
"type": "string",
"default": "off",
"description": "If a new linting problem appears, on what condition should it be sent to Neuro?",
"enum": [
"off",
"inCurrentFile",
"inWorkspace"
],
"enumItemLabels": [
"When manually checked",
"If it's in the current file",
"If it's any Neuro-safe file in the workspace"
],
"enumDescriptions": [
"Only when Neuro explicitly checks for it.",
"If a new problem appears in the file she is currently viewing.",
"When a new problem appears anywhere in the workspace."
]
},
"neuropilot.sendSaveNotifications": {
"type": "boolean",
"default": true,
"markdownDescription": "Automatically send save notifications to Neuro."
},
"neuropilot.requestExpiryTimeout": {
"type": "number",
"default": 0,
"markdownDescription": "The time to wait (in milliseconds) before automatically rejecting Copilot-mode action requests from Neuro.\nSetting this to 0 will cause the requests to never expire."
},
"neuropilot.hideCopilotRequests": {
"markdownDeprecationMessage": "This setting has been moved to neuropilot.actions.hideCopilotRequests."
},
"neuropilot.cursorFollowsNeuro": {
"type": "boolean",
"default": false,
"markdownDescription": "Make the real cursor follow Neuro's cursor."
},
"neuropilot.defaultOpenDocsWindow": {
"type": "string",
"default": "ask",
"enum": [
"ask",
"alwaysBrowser",
"alwaysWebView"
],
"enumItemLabels": [
"Ask where to open",
"Always open in browser",
"Always open in a WebView"
],
"enumDescriptions": [
"Always ask where to open the docs",
"Always open docs in your browser",
"Always open docs in a new WebView window"
],
"markdownDescription": "Choose where to open docs links.\n\nThis applies to both docs commands."
},
"neuropilot.disabledActions": {
"markdownDeprecationMessage": "This setting has moved to neuropilot.actions.disabledActions"
},
"neuropilot.sendContentsOnFileChange": {
"type": "boolean",
"default": true,
"markdownDescription": "Send contents of a file to Neuro when you switch to it? If false, Neuro will still know what file you switched to, but won't get the contents. Neuro will never get the contents or the name of files that aren't Neuro-safe."
},
"neuropilot.cursorPositionContextStyle": {
"type": "string",
"default": "inline",
"markdownDescription": "The style to use for specifying the cursor position in context messages.",
"enum": [
"off",
"inline",
"lineAndColumn",
"both"
],
"enumItemLabels": [
"Off",
"Inline",
"Line and column",
"Inline + Line and column"
],
"markdownEnumDescriptions": [
"Cursor position will not be mentioned to Neuro",
"\"Cursor position denoted by `<<<|>>>`\"",
"\"Cursor is at 198:4\"",
"\"Cursor is at 198:4, denoted by `<<<|>>>`\""
]
},
"neuropilot.lineNumberContextFormat": {
"type": "string",
"default": "",
"markdownDescription": "The format to use for line numbers in context messages. This format will be prepended to every line. Use `{n}` for the line number. Edit in settings.json for examples.",
"examples": [
"",
"{n} ",
"{n}|",
"{n}: ",
"/* {n} */ ",
"L. {n}: "
]
},
"neuropilot.cosmetic.celebrations": {
"type": "boolean",
"default": true,
"description": "Whether or not to enable celebratory stuff. This is completely cosmetic and will not affect the main extension functionality."
},
"neuropilot.enableCancelEvents": {
"markdownDeprecationMessage": "This setting has been moved to neuropilot.actions.enableCancelEvents."
},
"neuropilot.permission.openFiles": {
"markdownDeprecationMessage": "Categorical permissions have been deprecated in favor of fine-grained permissions (`neuropilot.actionPermissions`)."
},
"neuropilot.permission.editActiveDocument": {
"markdownDeprecationMessage": "Categorical permissions have been deprecated in favor of fine-grained permissions (`neuropilot.actionPermissions`)."
},
"neuropilot.permission.create": {
"markdownDeprecationMessage": "Categorical permissions have been deprecated in favor of fine-grained permissions (`neuropilot.actionPermissions`)."
},
"neuropilot.permission.rename": {
"markdownDeprecationMessage": "Categorical permissions have been deprecated in favor of fine-grained permissions (`neuropilot.actionPermissions`)."
},
"neuropilot.permission.delete": {
"markdownDeprecationMessage": "Categorical permissions have been deprecated in favor of fine-grained permissions (`neuropilot.actionPermissions`)."
},
"neuropilot.permission.runTasks": {
"markdownDeprecationMessage": "Categorical permissions have been deprecated in favor of fine-grained permissions (`neuropilot.actionPermissions`)."
},
"neuropilot.permission.requestCookies": {
"markdownDeprecationMessage": "Categorical permissions have been deprecated in favor of fine-grained permissions (`neuropilot.actionPermissions`)."
},
"neuropilot.permission.gitOperations": {
"markdownDeprecationMessage": "Categorical permissions have been deprecated in favor of fine-grained permissions (`neuropilot.actionPermissions`)."
},
"neuropilot.permission.gitTags": {
"markdownDeprecationMessage": "Categorical permissions have been deprecated in favor of fine-grained permissions (`neuropilot.actionPermissions`)."
},
"neuropilot.permission.gitRemotes": {
"markdownDeprecationMessage": "Categorical permissions have been deprecated in favor of fine-grained permissions (`neuropilot.actionPermissions`)."
},
"neuropilot.permission.editRemoteData": {
"markdownDeprecationMessage": "Categorical permissions have been deprecated in favor of fine-grained permissions (`neuropilot.actionPermissions`)."
},
"neuropilot.permission.gitConfigs": {
"markdownDeprecationMessage": "Categorical permissions have been deprecated in favor of fine-grained permissions (`neuropilot.actionPermissions`)."
},
"neuropilot.permission.terminalAccess": {
"markdownDeprecationMessage": "Categorical permissions have been deprecated in favor of fine-grained permissions (`neuropilot.actionPermissions`)."
},
"neuropilot.permission.accessLintingAnalysis": {
"markdownDeprecationMessage": "Categorical permissions have been deprecated in favor of fine-grained permissions (`neuropilot.actionPermissions`)."
},
"neuropilot.permission.getUserSelection": {
"markdownDeprecationMessage": "Categorical permissions have been deprecated in favor of fine-grained permissions (`neuropilot.actionPermissions`)."
},
"neuropilot.access.dotFiles": {
"type": "boolean",
"default": false,
"markdownDescription": "Allows Neuro to access files and folders beginning with a dot."
},
"neuropilot.access.externalFiles": {
"type": "boolean",
"default": false,
"markdownDescription": "Allows Neuro to access files and folders outside the current workspace."
},
"neuropilot.access.environmentVariables": {
"type": "boolean",
"default": false,
"markdownDescription": "Allows Neuro to use environment variables in paths. This probably won't work, this security setting is just in case it somehow does."
},
"neuropilot.access.includePattern": {
"type": "array",
"items": {
"type": "string"
},
"default": [
"**/*"
],
"markdownDescription": "A case-sensitive list of glob patterns for files Neuro is allowed to open, i.e. she will be unable to open files that don't match this pattern.\n\nPatterns without a slash will match any file or folder with that name."
},
"neuropilot.access.excludePattern": {
"type": "array",
"items": {
"type": "string"
},
"default": [
"**/node_modules/**",
"**/venv/**",
"CNAME"
],
"markdownDescription": "A case-sensitive glob pattern for files Neuro is not allowed to open. Applied after the include pattern. Patterns without a slash will match any file or folder with that name."
},
"neuropilot.access.inheritFromIgnoreFiles": {
"type": "boolean",
"default": false,
"description": "Allow NeuroPilot to read ignore patterns from an ignore file (e.g. .gitignore)."
},
"neuropilot.access.ignoreFiles": {
"type": "array",
"items": {
"type": "string"
},
"default": [
".gitignore"
],
"markdownDescription": "A list of ignore-style files to inherit Neuro-safe glob paths from.\n\nSupports the full range of git's ignore pattern globs. Also automatically ignores comments (started with #).\n\nThe further down a file is on the list, the more priority it gets.\n\nNone of these files can override your own Neuro-safe patterns set in extension settings.\n\nEdit in settings.json for examples.",
"examples": [
[
".gitignore",
".npmignore",
".prettierignore"
],
[
".gitignore",
".vscodeignore"
],
[
".neuroignore"
]
]
},
"neuropilot.access.suppressIgnoreWarning": {
"type": "boolean",
"default": false,
"description": "Suppress the warning about NeuroPilot ignoring ignore patterns."
},
"neuropilot.connection.websocketUrl": {
"type": "string",
"default": "ws://localhost:8000",
"description": "The URL to connect to the Neuro API"
},
"neuropilot.connection.gameName": {
"type": "string",
"default": "Visual Studio Code",
"description": "The name to use for this \"game\""
},
"neuropilot.connection.initialContext": {
"type": "string",
"default": "You are using an extension in Visual Studio Code that allows you to code together with Vedal.",
"markdownDescription": "The initial context to sent to Neuro-sama (or whatever is connected to NeuroPilot)\n\nTo replace with your name (according to [this setting](vscode://settings/neuropilot.connection.userName)), use `insert_turtle_here`.",
"editPresentation": "multilineText"
},
"neuropilot.connection.autoConnect": {
"type": "boolean",
"default": true,
"markdownDescription": "Whether to auto-connect to the Neuro API on extension setup."
},
"neuropilot.connection.retryInterval": {
"type": "integer",
"default": 0,
"minimum": 0,
"markdownDescription": "The delay (in ms) between NeuroPilot retrying connections to NeuroPilot.\n\nSet to 0 if you want to retry as soon as possible."
},
"neuropilot.connection.retryAmount": {
"type": "integer",
"default": 0,
"minimum": 0,
"markdownDescription": "The amount of retries to connect to the Neuro API if it fails.\n\nThe amount of tries total will be (this setting) + 1.\n\nSet to 0 to disallow retries."
},
"neuropilot.connection.userName": {
"type": "string",
"default": "Vedal",
"description": "The name to indicate who is controlling this VS Code instance alongside the API server. This replaces the default name `Vedal`.",
"examples": [
"Vedal",
"Alex",
"Pasu4",
"KTrain",
"Frogneko"
]
},
"neuropilot.connection.nameOfAPI": {
"type": "string",
"markdownDescription": "Who is currently acting as the Neuro API server?\nThis only changes the name in certain areas (such as Copilot-mode requests or Git commit messages) due to limitations.\n\nYou can add custom characters using `settings.json` if you ignore the lint error from VS Code.\n\n(Most) names mentioned here are not associated with NeuroPilot.",
"default": "Neuro",
"enum": [
"Neuro",
"Evil",
"Randy",
"Jippity",
"Tony",
"Gary",
"Mini 2.0"
],
"markdownEnumDescriptions": [
"#1 at osu!",
"Evil, but actually nice.",
"Random Dot Range (Alex)",
"A GPT model (EnterpriseScratchDev)",
"The human operator (Pasu4)",
"Literally in your computer walls (Govorunb)",
"Built by Evil, living in her basement. (2025 Minithon coding subgoal **unofficial** celebration)"
]
},
"neuropilot.actions.disabledActions": {
"markdownDeprecationMessage": "Disabling specific actions has been deprecated in favor of fine-grained permissions (`neuropilot.actionPermissions`)."
},
"neuropilot.actionPermissions": {
"type": "object",
"tags": [
"advanced"
],
"markdownDescription": "The permissions that are currently active. If you want to edit this value, it is recommended to use the sidebar instead.",
"additionalProperties": {
"enum": [
"off",
"copilot",
"autopilot"
],
"markdownEnumDescriptions": [
"Disable this permission.",
"Require approval before execution.",
"Execute without oversight."
]
}
},
"neuropilot.actions.hideCopilotRequests": {
"type": "boolean",
"default": false,
"markdownDescription": "Don't immediately show Copilot-mode action requests, requiring clicking the status bar item to reveal them."
},
"neuropilot.actions.allowRunningAllTasks": {
"type": "boolean",
"default": false,
"markdownDescription": "Allow Neuro to run all tasks regardless of their prefix in their 'detail' key."
},
"neuropilot.actions.enableCancelEvents": {
"type": "boolean",
"default": true,
"markdownDescription": "Whether to enable cancellation events for RCE. See [this docs page](https://vsc-neuropilot.github.io/docs/references/rce#cancellation-events)."
},
"neuropilot.actions.disablePreviewEffects": {
"type": "boolean",
"default": false,
"markdownDescription": "Whether to disable preview effects for RCE. Preview effects allow certain actions to display a visual of the action's potential effect."
},
"neuropilot.actions.experimentalSchemas": {
"type": "boolean",
"default": true,
"markdownDescription": "Whether or not to toggle schemas that may use \"unsupported\" schema properties.\n\nRequires reloading permissions if changed.",
"deprecationMessage": "Experimental schemas are no longer existent, each action only has 1 schema."
}
}
}
],
"icons": {
"neuropilot-logo": {
"description": "NeuroPilot logo",
"default": {
"fontPath": "icons.woff",
"fontCharacter": "\\E900"
}
},
"neuropilot-heart": {
"description": "NeuroPilot heart",
"default": {
"fontPath": "icons.woff",
"fontCharacter": "\\E901"
}
}
},
"menus": {
"editor/context": [
{
"command": "neuropilot.sendSelectionToNeuro",
"when": "editorHasSelection",
"group": "navigation"
}
]
},
"viewsContainers": {
"activitybar": [
{
"id": "neuropilot",
"title": "NeuroPilot",
"icon": "assets/neuropilot-font.svg"
}
]
},
"views": {
"neuropilot": [
{
"type": "webview",
"id": "neuropilot.actionsView",
"name": "Action Permissions",
"icon": "assets/neuropilot-font.svg",
"visibility": "visible"
},
{
"type": "webview",
"id": "neuropilot.executionView",
"name": "Execution History",
"icon": "assets/neuropilot-font.svg",
"visibility": "visible"
},
{
"type": "webview",
"id": "neuropilot.imagesView",
"name": "Images",
"icon": "assets/neuropilot-font.svg"
},
{
"type": "webview",
"id": "neuropilot.testView",
"name": "Test View",
"icon": "assets/neuropilot-font.svg",
"when": "isDevelopment",
"visibility": "collapsed"
}
]
},
"colors": [
{
"id": "neuropilot.filePreviewEffectsColour",
"description": "Colour theme for filesystem-based preview effects (e.g. file actions, lint actions, etc)",
"defaults": {
"light": "#0066ff",
"dark": "#00e1ff"
}
}
]
},
"capabilities": {
"virtualWorkspaces": {
"supported": "limited",
"description": "In virtual workspaces, Terminal, Tasks, Git support (restricted on web) and Copilot Chat mode (restricted on web) is not available."
},
"untrustedWorkspaces": {
"supported": "limited",
"description": "Terminal access, running tasks and accessing unsafe paths will be disabled for Neuro, regardless of settings.",
"restrictedConfigurations": [
"neuropilot.permission.terminalAccess",
"neuropilot.permission.runTasks",
"neuropilot.terminals",
"neuropilot.allowRunningAllTasks",
"neuropilot.access.dotFiles",
"neuropilot.access.externalFiles",
"neuropilot.access.environmentVariables"
]
}
},
"sideEffects": [
"src/test/**"
],
"scripts": {
"preinstall": "node ./scripts/check-malicious-packages.js",
"version:changesets": "changeset version --global-changelog",
"vscode:prepublish": "pnpm build",
"vendor-codicons": "node ./scripts/vendor-codicons.mjs",
"build": "pnpm types && pnpm vendor-codicons && node ./scripts/esbuild.mjs",
"compile": "cross-env NODE_ENV=0 pnpm build",
"package": "cross-env NODE_ENV=1 pnpm build",
"lint": "eslint --fix",
"test": "npm-run-all -s test:web test:desktop --continue-on-error",
"qa:test:clean": "node ./scripts/test-utils/run-all-clean.mjs",
"qa:test:summary": "node ./scripts/test-utils/parse-failures.mjs",
"postinstall": "husky",
"types": "npm-run-all -p build:*:tsc",
"types:watch": "npm-run-all -p watch:*:tsc",
"build:web": "npm-run-all -s build:web:*",
"build:desktop": "npm-run-all -s build:desktop:*",
"build:web:tsc": "tsc --noEmit --project tsconfig.web.json",
"build:web:esbuild": "node ./scripts/esbuild.mjs --mode web",
"build:desktop:tsc": "tsc --noEmit --project tsconfig.app.json",
"build:desktop:esbuild": "node ./scripts/esbuild.mjs --mode desktop",
"watch:web": "npm-run-all -p watch:web:* watch:webview:*",
"watch:desktop": "npm-run-all -p watch:desktop:* watch:webview:*",
"watch:web:esbuild": "node ./scripts/esbuild.mjs --watch --mode web",
"watch:web:tsc": "tsc --noEmit --watch --project tsconfig.web.json",
"watch:desktop:esbuild": "node ./scripts/esbuild.mjs --watch --mode desktop",
"watch:desktop:tsc": "tsc --noEmit --watch --project tsconfig.app.json",
"watch:webview:esbuild": "node ./scripts/esbuild.mjs --watch --mode webview",
"watch:webview:tsc": "tsc --noEmit --watch --project tsconfig.webview.json",
"test:web": "pnpm run build:web && npm-run-all -s test:web:tsc test:web:esbuild test:web:browser",
"test:web:tsc": "tsc --noEmit --project test-tsconfigs/tsconfig.web.json",
"test:web:esbuild": "node ./scripts/esbuild.mjs --mode web --test",
"test:web:vscode": "vscode-test --label webUnitTest",
"test:web:browser": "pnpm run build:web && npm-run-all -s test:web:browser:*",
"test:web:browser:tsc": "tsc --noEmit --project test-tsconfigs/tsconfig.web.json",
"test:web:browser:esbuild": "node ./scripts/esbuild.mjs --mode web --test --web-browser-test",
"test:web:browser:vscode": "vscode-test-web --headless --extensionDevelopmentPath=. --extensionTestsPath=out/web/test/browser.js test-playground",
"test:web:browser:open": "npm-run-all -s test:web:browser:open:chromium --continue-on-error",
"test:web:browser:open:chromium": "vscode-test-web --headless --browser=chromium --extensionDevelopmentPath=. --extensionTestsPath=out/web/test/browser.js test-playground",
"test:web:browser:open:firefox": "vscode-test-web --headless --browser=firefox --extensionDevelopmentPath=. --extensionTestsPath=out/web/test/browser.js test-playground",
"test:web:browser:open:webkit": "vscode-test-web --headless --browser=webkit --extensionDevelopmentPath=. --extensionTestsPath=out/web/test/browser.js test-playground",
"test:web:browser:open:vscode": "vscode-test-web --headless --extensionDevelopmentPath=. --extensionTestsPath=out/web/test/browser.js test-playground",
"test:desktop": "npm run build:desktop && npm-run-all -s test:desktop:*",
"test:desktop:tsc": "tsc --noEmit --project test-tsconfigs/tsconfig.app.json",
"test:desktop:esbuild": "node ./scripts/esbuild.mjs --mode desktop --test",
"test:desktop:vscode": "vscode-test --label desktopUnitTest"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@stylistic/eslint-plugin": "^5.10.0",
"@types/glob-to-regexp": "^0.4.4",
"@types/json-schema": "^7.0.15",
"@types/mocha": "^10.0.10",
"@types/node": "^20",
"@types/vscode": "^1.95.0",
"@types/vscode-webview": "^1.57.5",
"@typescript/native": "npm:typescript@^7.0.2",
"@vscode/test-cli": "^0.0.15",
"@vscode/test-electron": "^3.0.0",
"@vscode/test-web": "^0.0.81",
"@vscode/vsce": "^3.9.2",
"baseline-browser-mapping": "^2.11.1",
"chalk": "^5.6.2",
"cross-env": "^10.1.0",
"esbuild": "^0.28.1",
"esbuild-plugin-polyfill-node": "^0.3.0",
"eslint": "^10.7.0",
"eslint-plugin-jsdoc": "^63.2.1",
"eslint-plugin-unicorn": "^72.0.0",
"glob": "^13.0.6",
"globals": "^17.7.0",
"husky": "^9.1.7",
"mocha": "^11.7.6",
"npm-run-all": "^4.1.5",
"ovsx": "^1.0.2",
"playwright": "^1.61.1",
"ts-mockito": "^2.6.1",
"tsx": "^4.23.1",
"typescript": "npm:@typescript/typescript6@^6.0.2",
"typescript-eslint": "^8.65.0",
"yaml": "^2.9.0"
},
"dependencies": {
"@vscode/codicons": "^0.0.45",
"file-type": "^22.0.1",
"glob-to-regexp": "^0.4.1",
"ignore": "^7.0.6",
"jsonschema": "^1.5.0",
"neuro-game-sdk": "^1.1.2",
"preact": "^10.29.7"
}
}