-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
1089 lines (1089 loc) · 37.3 KB
/
package.json
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
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"name": "pddl",
"displayName": "PDDL",
"description": "Planning Domain Description Language support",
"author": "Jan Dolejsi",
"license": "MIT",
"version": "2.28.2",
"publisher": "jan-dolejsi",
"engines": {
"vscode": "^1.69.0",
"node": "^20.14.11"
},
"categories": [
"Snippets",
"Programming Languages",
"Debuggers"
],
"keywords": [
"PDDL",
"planning",
"AI",
"ai-planning"
],
"icon": "images/icon.png",
"galleryBanner": {
"color": "#ff402b",
"theme": "light"
},
"repository": {
"type": "git",
"url": "https://github.com/jan-dolejsi/vscode-pddl"
},
"vsce": {
"baseImagesUrl": "https://raw.githubusercontent.com/wiki/jan-dolejsi/vscode-pddl/img/"
},
"activationEvents": [
"onLanguage:pddl",
"onLanguage:plan",
"onLanguage:happenings",
"onCommand:pddl.configureParser",
"onCommand:pddl.configurePlanner",
"onCommand:pddl.selectPlanner",
"onCommand:pddl.showOverview",
"onCommand:pddl.searchDebugger.start",
"onCommand:pddl.planning.domains.session.load",
"onCommand:pddl.downloadVal",
"workspaceContains:.planning.domains.session.json",
"onView:pddl.planning.domains",
"onView:pddl.tests.explorer",
"onUri"
],
"main": "./out/extension",
"browser": "./out/web/extension.js",
"contributes": {
"languages": [
{
"id": "pddl",
"aliases": [
"PDDL",
"pddl"
],
"extensions": [
".pddl",
""
],
"configuration": "./language-configuration.json",
"firstLine": "\\(define\\s\\((domain|problem)\\b"
},
{
"id": "plan",
"aliases": [
"PDDL Plan",
"Plan"
],
"extensions": [
".plan"
],
"configuration": "./language-configuration.json"
},
{
"id": "happenings",
"aliases": [
"PDDL Plan Happenings",
"Happenings"
],
"extensions": [
".happenings"
],
"configuration": "./language-configuration.json"
}
],
"breakpoints": [
{
"language": "happenings"
}
],
"grammars": [
{
"language": "pddl",
"scopeName": "source.pddl",
"path": "./syntaxes/pddl.tmLanguage.json"
},
{
"language": "plan",
"scopeName": "source.pddl.plan",
"path": "./syntaxes/plan.tmLanguage.json"
},
{
"language": "happenings",
"scopeName": "source.pddl.happenings",
"path": "./syntaxes/happenings.tmLanguage.json"
}
],
"snippets": [
{
"language": "pddl",
"path": "./snippets/pddl.json"
}
],
"commands": [
{
"command": "pddl.showOverview",
"title": "PDDL: Show overview page"
},
{
"command": "pddl.planAndDisplayResult",
"title": "PDDL: Run the planner and display the plan"
},
{
"command": "pddl.stopPlanner",
"title": "PDDL: Stop planner"
},
{
"command": "pddl.configureParser",
"title": "PDDL: Configure parser"
},
{
"command": "pddl.syntaxTree",
"title": "PDDL: Syntax tree"
},
{
"command": "pddl.loginParserService",
"title": "PDDL: Login for parser service"
},
{
"command": "pddl.updateTokensParserService",
"title": "PDDL: Update tokens for parser service"
},
{
"command": "pddl.selectPlanner",
"title": "PDDL: Select planner"
},
{
"command": "pddl.configurePlanner",
"title": "PDDL: Configure planner"
},
{
"command": "pddl.loginPlannerService",
"title": "PDDL: Login for planner service"
},
{
"command": "pddl.updateTokensPlannerService",
"title": "PDDL: Update tokens for planner service"
},
{
"command": "pddl.planReport",
"title": "PDDL: Generate plan report"
},
{
"command": "pddl.exportPlan",
"title": "PDDL: Export plan a to file..."
},
{
"command": "pddl.saveAsExpectedPlan",
"title": "PDDL: Save as expected plan in PDDL test"
},
{
"command": "pddl.convertPlanToHappenings",
"title": "PDDL: Convert plan to happenings..."
},
{
"command": "pddl.convertHappeningsToPlan",
"title": "PDDL: Convert happenings to plan..."
},
{
"command": "pddl.tests.refresh",
"title": "PDDL: Refresh test cases",
"icon": {
"light": "images/light/refresh.svg",
"dark": "images/dark/refresh.svg"
}
},
{
"command": "pddl.tests.run",
"title": "Run",
"icon": {
"light": "images/light/run.svg",
"dark": "images/dark/run.svg"
}
},
{
"command": "pddl.tests.runAll",
"title": "Run all",
"icon": {
"light": "images/light/run-all.svg",
"dark": "images/dark/run-all.svg"
}
},
{
"command": "pddl.tests.view",
"title": "Open PDDL domain and test problem",
"icon": {
"light": "images/light/open-preview.svg",
"dark": "images/dark/open-preview.svg"
}
},
{
"command": "pddl.tests.viewDefinition",
"title": "Open test definition",
"icon": {
"light": "images/light/settings-gear.svg",
"dark": "images/dark/settings-gear.svg"
}
},
{
"command": "pddl.tests.viewExpectedPlans",
"title": "Open expected plan(s)"
},
{
"command": "pddl.tests.problemSaveAs",
"title": "PDDL: Open as an editable problem file..."
},
{
"command": "pddl.tests.report.view",
"title": "PDDL: Show test report"
},
{
"command": "pddl.searchDebugger.start",
"title": "PDDL: Start search debugger"
},
{
"command": "pddl.searchDebugger.stop",
"title": "PDDL: Stop search debugger"
},
{
"command": "pddl.searchDebugger.reset",
"title": "PDDL: Reset search debugger"
},
{
"command": "pddl.searchDebugger.mock",
"title": "PDDL: Mock search progress to test debugger"
},
{
"command": "pddl.plan.compareNormalized",
"title": "PDDL: Normalize and compare 2 plans"
},
{
"command": "pddl.plan.preview",
"title": "PDDL: Preview plan",
"icon": {
"light": "images/light/plan-preview.svg",
"dark": "images/dark/plan-preview.svg"
}
},
{
"command": "pddl.plan.normalize",
"title": "PDDL: Normalize and evaluate plan"
},
{
"command": "pddl.plan.validate",
"title": "PDDL: Validate plan"
},
{
"command": "pddl.happenings.debug",
"title": "PDDL: Debug plan happenings (mockup only)"
},
{
"command": "pddl.happenings.execute",
"title": "PDDL: Execute plan and show effects"
},
{
"command": "pddl.happenings.generatePlanResumeCases",
"title": "PDDL: Execute plan and generate plan-resume test cases"
},
{
"command": "pddl.configureValidate",
"title": "PDDL: Configure VAL/Validate tool"
},
{
"command": "pddl.planning.domains.session.load",
"title": "PDDL: Download Planning.domains session"
},
{
"command": "pddl.planning.domains.session.refresh",
"title": "PDDL: Refresh Planning.domains session",
"icon": {
"light": "images/light/refresh.svg",
"dark": "images/dark/refresh.svg"
}
},
{
"command": "pddl.planning.domains.session.refresh_all",
"title": "PDDL: Refresh all Planning.domains sessions",
"icon": {
"light": "images/light/refresh.svg",
"dark": "images/dark/refresh.svg"
}
},
{
"command": "pddl.planning.domains.session.commit",
"title": "PDDL: Commit local changes to Planning.Domains session",
"icon": {
"light": "images/light/cloud-upload.svg",
"dark": "images/dark/cloud-upload.svg"
}
},
{
"command": "pddl.planning.domains.session.discard",
"title": "PDDL: Discard local changes to the Planning.Domains session",
"icon": {
"light": "images/light/discard.svg",
"dark": "images/dark/discard.svg"
}
},
{
"command": "pddl.planning.domains.session.checkout",
"title": "PDDL: Checkout another version of this Planning.Domains session",
"icon": {
"light": "images/light/refresh.svg",
"dark": "images/dark/refresh.svg"
}
},
{
"command": "pddl.planning.domains.session.duplicate",
"title": "PDDL: Duplicate a Planning.Domains session as writable"
},
{
"command": "pddl.planning.domains.session.open",
"title": "PDDL: Open a Planning.Domains session in the browser"
},
{
"command": "pddl.planning.domains.session.share",
"title": "PDDL: Share a Planning.Domains session via email"
},
{
"command": "pddl.planning.domains.session.generateClassroom",
"title": "PDDL: Generate Planning.Domains classroom sessions from this template..."
},
{
"command": "pddl.downloadVal",
"title": "PDDL: Download VAL tools"
},
{
"command": "pddl.configureTarget",
"title": "PDDL: Configure planner output target..."
}
],
"menus": {
"editor/title": [
{
"command": "pddl.plan.preview",
"when": "resourceLangId == plan",
"group": "navigation"
}
],
"editor/title/context": [
{
"command": "pddl.planAndDisplayResult",
"when": "resourceLangId == pddl"
},
{
"command": "pddl.plan.preview",
"when": "resourceLangId == plan",
"group": "navigation"
}
],
"editor/context": [
{
"command": "pddl.planAndDisplayResult",
"when": "resourceLangId == pddl"
},
{
"command": "pddl.tests.problemSaveAs",
"when": "resourceLangId == pddl && resourceScheme == tpddl"
},
{
"command": "pddl.plan.preview",
"when": "resourceLangId == plan",
"group": "pddl"
},
{
"command": "pddl.convertPlanToHappenings",
"when": "resourceLangId == plan",
"group": "pddl"
},
{
"command": "pddl.convertHappeningsToPlan",
"when": "resourceLangId == happenings",
"group": "pddl"
},
{
"command": "pddl.plan.validate",
"when": "resourceLangId == plan",
"group": "pddl"
},
{
"command": "pddl.plan.normalize",
"when": "resourceLangId == plan",
"group": "pddl"
},
{
"command": "pddl.happenings.debug",
"when": "resourceLangId == happenings && false",
"group": "pddl"
},
{
"command": "pddl.happenings.execute",
"when": "resourceLangId == happenings",
"group": "pddl"
},
{
"command": "pddl.happenings.generatePlanResumeCases",
"when": "resourceLangId == happenings",
"group": "pddl"
}
],
"view/title": [
{
"command": "pddl.tests.runAll",
"when": "view == pddl.tests.explorer",
"group": "navigation"
},
{
"command": "pddl.tests.refresh",
"when": "view == pddl.tests.explorer",
"group": "navigation"
},
{
"command": "pddl.tests.report.view",
"when": "view == pddl.tests.explorer"
}
],
"view/item/context": [
{
"command": "pddl.tests.run",
"when": "view == pddl.tests.explorer && viewItem == test",
"group": "inline"
},
{
"command": "pddl.tests.runAll",
"when": "view == pddl.tests.explorer && viewItem != test",
"group": "inline"
},
{
"command": "pddl.tests.view",
"when": "view == pddl.tests.explorer && viewItem == test",
"group": "inline"
},
{
"command": "pddl.tests.viewDefinition",
"when": "view == pddl.tests.explorer && viewItem == manifest",
"group": "inline"
},
{
"command": "pddl.tests.viewDefinition",
"when": "view == pddl.tests.explorer && viewItem == test",
"group": "navigation"
},
{
"command": "pddl.tests.viewExpectedPlans",
"when": "view == pddl.tests.explorer && viewItem == test",
"group": "navigation"
}
],
"explorer/context": [
{
"command": "pddl.planAndDisplayResult",
"when": "resourceLangId == pddl",
"group": "navigation"
},
{
"command": "pddl.plan.compareNormalized",
"when": "viewItem != folder && resourceLangId == plan",
"group": "3_compare"
}
],
"scm/title": [
{
"command": "pddl.planning.domains.session.commit",
"group": "navigation",
"when": "scmProvider == planningDomainsSession"
},
{
"command": "pddl.planning.domains.session.discard",
"group": "navigation",
"when": "scmProvider == planningDomainsSession"
},
{
"command": "pddl.planning.domains.session.refresh",
"group": "navigation",
"when": "scmProvider == planningDomainsSession"
},
{
"command": "pddl.planning.domains.session.duplicate",
"when": "scmProvider == planningDomainsSession"
},
{
"command": "pddl.planning.domains.session.open",
"when": "scmProvider == planningDomainsSession"
},
{
"command": "pddl.planning.domains.session.share",
"when": "scmProvider == planningDomainsSession"
},
{
"command": "pddl.planning.domains.session.generateClassroom",
"when": "scmProvider == planningDomainsSession"
}
]
},
"keybindings": [
{
"command": "pddl.planAndDisplayResult",
"key": "alt+p",
"when": "resourceLangId == pddl"
},
{
"mac": "cmd+alt+p",
"key": "ctrl+alt+p",
"command": "pddl.selectPlanner",
"when": "resourceLangId == pddl"
}
],
"jsonValidation": [
{
"fileMatch": "*.planviz.json",
"url": "./schemas/planviz.json"
},
{
"fileMatch": "*.ptest.json",
"url": "./schemas/ptest.json"
}
],
"configuration": {
"type": "object",
"title": "PDDL parser and planner configuration",
"properties": {
"pddlParser.executableOrService": {
"type": "string",
"description": "PDDL parser for syntactical analysis. Specify executable location or service URL e.g. parser.exe, validate.exe, or http://localhost:8090/parse."
},
"pddlParser.executableOptions": {
"type": "string",
"description": "Override the command-line options passed to the PDDL parser configured in 'pddlParser.executableOrService'.",
"pattern": "(\\$\\((domain|problem)\\).*){2}",
"default": "$(domain) $(problem)"
},
"pddlParser.problemPattern": {
"scope": "resource",
"type": "string",
"description": "Pattern to match onto the parser output to extract the parsing problems. The syntax must be: '/regex/flags/order'. See more info at https://github.com/jan-dolejsi/vscode-pddl/wiki/Configuring-the-PDDL-parser"
},
"pddlParser.serviceAuthenticationEnabled": {
"scope": "resource",
"type": "boolean",
"description": "PDDL parser requires authentication."
},
"pddlParser.serviceAuthenticationUrl": {
"scope": "resource",
"type": "string",
"description": "Authentication URL."
},
"pddlParser.serviceAuthenticationRequestEncoded": {
"scope": "resource",
"type": "string",
"description": "Authentication request encoded."
},
"pddlParser.serviceAuthenticationClientId": {
"scope": "resource",
"type": "string",
"description": "Authentication clientid."
},
"pddlParser.serviceAuthenticationCallbackPort": {
"scope": "resource",
"type": "string",
"description": "Authentication callback port."
},
"pddlParser.serviceAuthenticationTimeoutInMs": {
"scope": "resource",
"type": "number",
"default": 10000,
"description": "Authentication timeout in ms."
},
"pddlParser.serviceAuthenticationTokensvcUrl": {
"scope": "resource",
"type": "string",
"description": "Authentication token service URL."
},
"pddlParser.serviceAuthenticationTokensvcApiKey": {
"scope": "resource",
"type": "string",
"description": "Authentication token service API Key."
},
"pddlParser.serviceAuthenticationTokensvcAccessPath": {
"scope": "resource",
"type": "string",
"description": "Authentication token service access path."
},
"pddlParser.serviceAuthenticationTokensvcValidatePath": {
"scope": "resource",
"type": "string",
"description": "Authentication token service validate path."
},
"pddlParser.serviceAuthenticationTokensvcCodePath": {
"scope": "resource",
"type": "string",
"description": "Authentication token service code path."
},
"pddlParser.serviceAuthenticationTokensvcRefreshPath": {
"scope": "resource",
"type": "string",
"description": "Authentication token service refresh path."
},
"pddlParser.serviceAuthenticationTokensvcSvctkPath": {
"scope": "resource",
"type": "string",
"description": "Authentication token service svctk path."
},
"pddlParser.serviceAuthenticationRefreshToken": {
"scope": "resource",
"type": "string",
"description": "Authentication refresh token."
},
"pddlParser.serviceAuthenticationAccessToken": {
"scope": "resource",
"type": "string",
"description": "Authentication access token."
},
"pddlParser.serviceAuthenticationSToken": {
"scope": "resource",
"type": "string",
"description": "Authentication s token."
},
"pddlParser.delayInSecondsBeforeParsing": {
"scope": "resource",
"type": "number",
"default": 3,
"minimum": 1,
"description": "Delay in seconds the extension should wait after a PDDL file is modified before calls the parser."
},
"pddlParser.maxNumberOfProblems": {
"scope": "resource",
"type": "number",
"default": 100,
"minimum": 1,
"description": "Controls the maximum number of problems produced by the parser."
},
"pddl.selectedPlanner": {
"scopeIWantToUse": "machine-overridable",
"scope": "resource",
"type": "string",
"description": "Title field of a planner from the `pddl.planners` setting.",
"default": "https://solver.planning.domains:5001/package"
},
"pddl.showPlannerInStatusBar": {
"scope": "application",
"type": "boolean",
"default": true,
"description": "Set to 'false' to hide the planner selector in the status bar. Needs restart to make effect."
},
"pddl.planners": {
"scopeIWantToUse": "machine-overridable",
"scope": "resource",
"type": "array",
"markdownDescription": "The PDDL Extension can work with multiple **PDDL Planners**. It has a notion of planner _kind_. The _kind_s are defined by the PDDL Extension, or by other extensions injecting in their _Planner Providers_. For more information, see [Configuring the PDDL planner](https://github.com/jan-dolejsi/vscode-pddl/wiki/Configuring-the-PDDL-planner) wiki page.",
"default": [
{
"kind": "PLANNING_AS_A_SERVICE",
"url": "https://solver.planning.domains:5001/package",
"title": "Planning as a service (solver.planning.domains)",
"canConfigure": false
}
],
"items": {
"type": "object",
"required": [
"kind",
"title"
],
"properties": {
"kind": {
"type": "string",
"examples": [
"EXECUTABLE",
"JAVA_JAR",
"NODE_JS_SCRIPT",
"COMMAND",
"SERVICE_SYNC",
"SERVICE_ASYNC",
"PLANNING_AS_A_SERVICE"
]
},
"title": {
"type": "string",
"uniqueItems": true,
"description": "User friendly (but short) name of the planner"
},
"canConfigure": {
"type": "boolean",
"description": "Can end-user configure (should the configure button be shown)?"
},
"path": {
"type": "string",
"description": "Path to a local executable."
},
"cwd": {
"type": "string",
"description": "Current working directory (optional). Normally, the extension sets the cwd of the process to the directory containing he domain or the problem."
},
"syntax": {
"type": "string",
"description": "Command-line syntax structure.",
"pattern": "^(\\$\\(planner\\))? (.*\\$\\((?:domain|problem|options)\\))(.*\\$\\((?:domain|problem|options)\\))(.*\\$\\((?:domain|problem|options)\\)).*$",
"default": "$(planner) $(options) $(domain) $(problem)"
},
"url": {
"type": "string",
"format": "uri",
"description": "URL of the service e.g. https://solver.planning.domains:5001/package."
},
"searchDebuggerSupport": {
"type": "string",
"default": "None",
"enum": [
"None",
"HttpCallback",
"WebSocketJson",
"WebSocketBinary"
],
"enumDescriptions": [
"Search Debugger not supported by this planner",
"HTTP callback to the port exposed by the Search Debugger.",
"HTTP Web Socket that the Search Debugger opens after the async request is sent to the planning service. Json format.",
"HTTP Web Socket that the Search Debugger opens after the async request is sent to the planning service. Binary format."
]
},
"searchDebuggerCommandLineSyntax": {
"type": "string",
"default": "--search-tree-dump=http://localhost:$(port)",
"description": "Planner command-line option for search debugger callback address. This only applies to locally executable planners. Include the `$(port)` placeholder to pass the HTTP port."
}
}
}
},
"pddlPlanner.executableOrService": {
"deprecationMessage": "Use pddl.planners setting. It is easy to set up multiple planners using PDDL: Show Overview Page command.",
"scope": "resource",
"type": "string",
"title": "Planner executable or service URL",
"description": "Enter the planner executable (e.g. planner.exe) with full path unless you have its location included in the %path% environment variable. If you are using a parsing service, make sure it starts with http: or https:"
},
"pddlPlanner.executableOptions": {
"deprecationMessage": "Use pddl.planners setting. It is easy to set up multiple planners using PDDL: Show Overview Page command.",
"scope": "resource",
"type": "string",
"description": "Override the command-line options passed to the PDDL planner configured in 'pddlPlanner.executableOrService'.",
"pattern": "^(\\$\\(planner\\))? (.*\\$\\((?:domain|problem|options)\\))(.*\\$\\((?:domain|problem|options)\\))(.*\\$\\((?:domain|problem|options)\\)).*$"
},
"pddlPlanner.executionTarget": {
"scope": "window",
"description": "Target to direct the planner output to.",
"enum": [
"Output window",
"Terminal",
"Search debugger"
],
"default": "Output window",
"enumDescriptions": [
"Planner output is displayed in the VS Code Output Window 'Planner output'.",
"Planner is executed in a terminal window. Plan is not displayed visually. Use this to interact with the planner.",
"Same as the 'Output window' option, but the output window and resulting plan are not revealed in order to keep the Search debugger in the forefront."
]
},
"pddlPlanner.serviceAuthenticationEnabled": {
"scope": "resource",
"type": "boolean",
"description": "PDDL planner requires authentication."
},
"pddlPlanner.serviceAuthenticationUrl": {
"scope": "resource",
"type": "string",
"description": "Authentication URL."
},
"pddlPlanner.serviceAuthenticationRequestEncoded": {
"scope": "resource",
"type": "string",
"description": "Authentication request encoded."
},
"pddlPlanner.serviceAuthenticationClientId": {
"scope": "resource",
"type": "string",
"description": "Authentication clientid."
},
"pddlPlanner.serviceAuthenticationCallbackPort": {
"scope": "resource",
"type": "string",
"description": "Authentication callback port."
},
"pddlPlanner.serviceAuthenticationTimeoutInMs": {
"scope": "resource",
"type": "number",
"default": 10000,
"description": "Authentication timeout in ms."
},
"pddlPlanner.serviceAuthenticationTokensvcUrl": {
"scope": "resource",
"type": "string",
"description": "Authentication token service URL."
},
"pddlPlanner.serviceAuthenticationTokensvcApiKey": {
"scope": "resource",
"type": "string",
"description": "Authentication token service API Key."
},
"pddlPlanner.serviceAuthenticationTokensvcAccessPath": {
"scope": "resource",
"type": "string",
"description": "Authentication token service access path."
},
"pddlPlanner.serviceAuthenticationTokensvcValidatePath": {
"scope": "resource",
"type": "string",
"description": "Authentication token service validate path."
},
"pddlPlanner.serviceAuthenticationTokensvcCodePath": {
"scope": "resource",
"type": "string",
"description": "Authentication token service code path."
},
"pddlPlanner.serviceAuthenticationTokensvcRefreshPath": {
"scope": "resource",
"type": "string",
"description": "Authentication token service refresh path."
},
"pddlPlanner.serviceAuthenticationTokensvcSvctkPath": {
"scope": "resource",
"type": "string",
"description": "Authentication token service svctk path."
},
"pddlPlanner.serviceAuthenticationRefreshToken": {
"scope": "resource",
"type": "string",
"description": "Authentication refresh token."
},
"pddlPlanner.serviceAuthenticationAccessToken": {
"scope": "resource",
"type": "string",
"description": "Authentication access token."
},
"pddlPlanner.serviceAuthenticationSToken": {
"scope": "resource",
"type": "string",
"description": "Authentication s token."
},
"pddlPlanner.epsilonTimeStep": {
"type": "number",
"default": 0.001,
"title": "Default epsilon time step used by your planner.",
"description": "Default epsilon time step used by your planner. This is used when interpreting/visualizing the plan. "
},
"pddl.validatorVersion": {
"type": "number",
"default": 64,
"title": "VAL build number",
"description": "Stable VAL build number to download or update to."
},
"pddl.valueSeqPath": {
"type": "string",
"description": "ValueSeq path - the tool that evaluates numeric values of functions at starts and ends of actions in the plan."
},
"pddl.validatorPath": {
"type": "string",
"description": "Path of the 'validate' executable."
},
"pddl.valStepPath": {
"type": "string",
"description": "Path of the 'valstep' executable."
},
"pddl.valVerbose": {
"type": "boolean",
"description": "Run Val tools with verbose output (to the console visible in Help > Toggle Developer Tools)",
"default": false
},
"pddl.planReport.linePlot.groupByLifted": {
"type": "boolean",
"description": "Group line plots of functions for different objects on the same chart - one per lifted function.",
"default": true
},
"pddl.planReport.width": {
"title": "PDDL: Plan visualization width (in pixels)",
"type": "integer",
"default": 200,
"minimum": 200
},
"pddl.planReport.exportWidth": {
"title": "PDDL: Plan Report width (in pixels) for exporting",
"type": "integer",
"default": 1000,
"minimum": 500
},
"pddl.formatter": {
"type": "boolean",
"default": true,
"description": "Enable/disable PDDL formatter (default is 'true')."
},
"pddl.modelHierarchy": {
"type": "boolean",
"default": true,
"description": "Enable the PDDL model hierarchy decorator (predicate and function usage)"
},
"pddl.jobScheduling": {
"type": "boolean",
"default": false,
"description": "Enable support for the experimental job-scheduling syntax (requires VS Code reload)"
},
"pddlSearchDebugger.defaultPort": {
"type": "integer",
"description": "Search debugger static port. If not specified (or set to zero, the port is randomized for security reasons).",
"default": 0
},
"pddlSearchDebugger.stateIdPattern": {
"type": "string",
"description": "Search debugger regular expression pattern to extract the numeric State ID.",
"default": "^(\\d+)$"
},
"pddlSearchDebugger.stateLogPattern": {
"type": "string",
"description": "Pattern to find the line in the state log file pertaining to the selected state.",
"default": "^\\s*State ID:\\s*(.*)\\s*$"
},
"pddlSearchDebugger.plannerCommandLine": {
"deprecationMessage": "Use the equivalent option on each planner configuration instead.",
"type": "string",
"description": "Command-line switch to configure planning engine to work with the Search Debugger pane. The '$(port)' part gets replaced by actual port number.",
"default": "--search-tree-dump=http://localhost:$(port)"
}
}
},
"views": {
"test": [
{
"id": "pddl.tests.explorer",
"name": "PDDL Tests"
}
],
"explorer": [
{
"id": "pddl.planning.domains",
"name": "Planning.domains"
}
]
},
"viewsWelcome": [
{
"view": "pddl.tests.explorer",
"contents": "No PDDL test manifest found.\n[Create tests](command:pddl.tests.createAll)\n [Learn about PDDL Tests](https://github.com/jan-dolejsi/vscode-pddl#regression-testing-of-pddl-domains) and see [tips and tricks](https://github.com/jan-dolejsi/vscode-pddl/wiki/Templating-hints) for templated problem file authoring."
}
],
"debuggers": [
{
"type": "pddl-happenings",
"label": "PDDL Plan Debugger",
"program": "./out/debugger/debugAdapter.js",
"runtime": "node",
"configurationAttributes": {
"launch": {
"required": [
"program"
],
"properties": {
"program": {
"type": "string",
"description": "Absolute path to a plan happenings file path.",
"default": "${command:PddlPlanHappenings}"
},
"stopOnEntry": {
"type": "boolean",
"description": "Automatically stop after launch.",
"default": true
},
"trace": {
"type": "boolean",
"description": "Enable logging of the Debug Adapter Protocol.",
"default": true
}
}
}
},
"initialConfigurations": [
{