-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathproject_summary.yaml
More file actions
979 lines (979 loc) · 53.9 KB
/
project_summary.yaml
File metadata and controls
979 lines (979 loc) · 53.9 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
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
project_info:
project_name: nlp2cmd Advanced Analysis & Optimization
project_path: .
analysis_date: '2026-02-28T20:11:38.271902'
version: '2.0'
components:
- Hybrid Export System
- Advanced Data Analysis
- Interactive Visualization
- LLM-based Refactoring
- Optimization Framework
analysis_results:
hybrid_export:
total_files: &id001
- consolidated/functions_adapters_appspec.yaml
- consolidated/functions_adapters_appspec_AppSpecAdapter.yaml
- consolidated/functions_adapters_base.yaml
- consolidated/functions_adapters_base_BaseDSLAdapter.yaml
- consolidated/functions_adapters_browser.yaml
- consolidated/functions_adapters_browser_BrowserAdapter.yaml
- consolidated/functions_adapters_canvas.yaml
- consolidated/functions_adapters_canvas_CanvasAdapter.yaml
- consolidated/functions_adapters_desktop.yaml
- consolidated/functions_adapters_desktop_DesktopAdapter.yaml
- consolidated/functions_adapters_desktop_DesktopSafetyPolicy.yaml
- consolidated/functions_adapters_docker.yaml
- consolidated/functions_adapters_docker_DockerAdapter.yaml
- consolidated/functions_adapters_dql.yaml
- consolidated/functions_adapters_dql_DQLAdapter.yaml
- consolidated/functions_adapters_dynamic.yaml
- consolidated/functions_adapters_dynamic_DynamicAdapter.yaml
- consolidated/functions_adapters_dynamic_DynamicSafetyPolicy.yaml
- consolidated/functions_adapters_kubernetes.yaml
- consolidated/functions_adapters_kubernetes_KubernetesAdapter.yaml
- consolidated/functions_adapters_kubernetes_KubernetesSafetyPolicy.yaml
- consolidated/functions_adapters_shell.yaml
- consolidated/functions_adapters_shell_ShellAdapter.yaml
- consolidated/functions_adapters_shell_generators.yaml
- consolidated/functions_adapters_shell_generators_DevelopmentGenerator.yaml
- consolidated/functions_adapters_shell_generators_DockerGenerator.yaml
- consolidated/functions_adapters_shell_generators_FileOperationGenerator.yaml
- consolidated/functions_adapters_shell_generators_GitGenerator.yaml
- consolidated/functions_adapters_shell_generators_NetworkGenerator.yaml
- consolidated/functions_adapters_shell_generators_ProcessManagementGenerator.yaml
- consolidated/functions_adapters_shell_generators_SystemMaintenanceGenerator.yaml
- consolidated/functions_adapters_shell_generators_TextProcessingGenerator.yaml
- consolidated/functions_adapters_sql.yaml
- consolidated/functions_adapters_sql_SQLAdapter.yaml
- consolidated/functions_aggregator.yaml
- consolidated/functions_aggregator_ResultAggregator.yaml
- consolidated/functions_appspec_runtime.yaml
- consolidated/functions_automation_action_planner.yaml
- consolidated/functions_automation_action_planner_ActionPlan.yaml
- consolidated/functions_automation_action_planner_ActionPlanner.yaml
- consolidated/functions_automation_captcha_solver.yaml
- consolidated/functions_automation_captcha_solver_CaptchaSolver.yaml
- consolidated/functions_automation_complex_planner.yaml
- consolidated/functions_automation_complex_planner_ComplexCommandPlanner.yaml
- consolidated/functions_automation_complex_planner_ExecutionPlan.yaml
- consolidated/functions_automation_drawing_blueprints.yaml
- consolidated/functions_automation_env_extractor.yaml
- consolidated/functions_automation_env_extractor_EnvExtractor.yaml
- consolidated/functions_automation_feedback_loop.yaml
- consolidated/functions_automation_feedback_loop_FeedbackLoop.yaml
- consolidated/functions_automation_feedback_loop_PageAnalyzer.yaml
- consolidated/functions_automation_firefox_sessions.yaml
- consolidated/functions_automation_firefox_sessions_FirefoxSessionImporter.yaml
- consolidated/functions_automation_mouse_controller.yaml
- consolidated/functions_automation_mouse_controller_MouseController.yaml
- consolidated/functions_automation_password_store.yaml
- consolidated/functions_automation_password_store_BitwardenReader.yaml
- consolidated/functions_automation_password_store_Credential.yaml
- consolidated/functions_automation_password_store_EnvPasswordReader.yaml
- consolidated/functions_automation_password_store_FirefoxPasswordReader.yaml
- consolidated/functions_automation_password_store_KeePassXCReader.yaml
- consolidated/functions_automation_password_store_SessionPasswordStore.yaml
- consolidated/functions_automation_schema_fallback.yaml
- consolidated/functions_automation_schema_fallback_SchemaFallback.yaml
- consolidated/functions_automation_service_configs.yaml
- consolidated/functions_automation_shape_planner.yaml
- consolidated/functions_automation_shape_planner_ShapePlanner.yaml
- consolidated/functions_automation_step_validator.yaml
- consolidated/functions_automation_step_validator_StepValidator.yaml
- consolidated/functions_automation_vector_store.yaml
- consolidated/functions_automation_vector_store_DrawingPattern.yaml
- consolidated/functions_automation_vector_store_DrawingVectorStore.yaml
- consolidated/functions_cli_auto_repair.yaml
- consolidated/functions_cli_auto_repair_AutoRepairSystem.yaml
- consolidated/functions_cli_cache.yaml
- consolidated/functions_cli_cache_Console.yaml
- consolidated/functions_cli_commands_doctor.yaml
- consolidated/functions_cli_commands_doctor_NP2CMDDoctor.yaml
- consolidated/functions_cli_commands_generate.yaml
- consolidated/functions_cli_commands_interactive.yaml
- consolidated/functions_cli_commands_interactive_InteractiveSession.yaml
- consolidated/functions_cli_commands_run.yaml
- consolidated/functions_cli_commands_tools.yaml
- consolidated/functions_cli_debug_info.yaml
- consolidated/functions_cli_display.yaml
- consolidated/functions_cli_helpers.yaml
- consolidated/functions_cli_history.yaml
- consolidated/functions_cli_history_Console.yaml
- consolidated/functions_cli_main.yaml
- consolidated/functions_cli_markdown_output.yaml
- consolidated/functions_cli_markdown_output_MarkdownBlockStream.yaml
- consolidated/functions_cli_markdown_output_MarkdownConsoleProxy.yaml
- consolidated/functions_cli_session_logger.yaml
- consolidated/functions_cli_session_logger_SessionLogger.yaml
- consolidated/functions_cli_syntax_cache.yaml
- consolidated/functions_cli_syntax_cache_SyntaxCache.yaml
- consolidated/functions_cli_web_schema.yaml
- consolidated/functions_cli_web_schema_Console.yaml
- consolidated/functions_context_disambiguator.yaml
- consolidated/functions_context_disambiguator_CommandDisambiguator.yaml
- consolidated/functions_core_core_backends.yaml
- consolidated/functions_core_core_backends_LLMBackend.yaml
- consolidated/functions_core_core_backends_RuleBasedBackend.yaml
- consolidated/functions_core_core_backends_SpaCyBackend.yaml
- consolidated/functions_core_core_models.yaml
- consolidated/functions_core_core_models_BaseModel.yaml
- consolidated/functions_core_core_models_ExecutionPlan.yaml
- consolidated/functions_core_core_models_TransformResult.yaml
- consolidated/functions_core_core_transform.yaml
- consolidated/functions_core_core_transform_NLP2CMD.yaml
- consolidated/functions_core_toon_integration.yaml
- consolidated/functions_core_toon_integration_ToonDataManager.yaml
- consolidated/functions_enhanced.yaml
- consolidated/functions_enhanced_EnhancedNLP2CMD.yaml
- consolidated/functions_environment.yaml
- consolidated/functions_environment_EnvironmentAnalyzer.yaml
- consolidated/functions_execution_base.yaml
- consolidated/functions_execution_base_ExecutorResult.yaml
- consolidated/functions_execution_browser.yaml
- consolidated/functions_execution_browser_BrowserExecutor.yaml
- consolidated/functions_execution_executor_registry.yaml
- consolidated/functions_execution_executor_registry_ExecutorRegistry.yaml
- consolidated/functions_execution_media_recorder.yaml
- consolidated/functions_execution_media_recorder_MediaRecorder.yaml
- consolidated/functions_execution_runner.yaml
- consolidated/functions_execution_runner_Console.yaml
- consolidated/functions_execution_runner_ExecutionRunner.yaml
- consolidated/functions_execution_shell_executor.yaml
- consolidated/functions_execution_shell_executor_ShellExecutor.yaml
- consolidated/functions_executor.yaml
- consolidated/functions_executor_ExecutionContext.yaml
- consolidated/functions_executor_ExecutionPlan.yaml
- consolidated/functions_executor_PlanExecutor.yaml
- consolidated/functions_executor_PlanValidator.yaml
- consolidated/functions_exploration_base.yaml
- consolidated/functions_exploration_base_BaseExplorer.yaml
- consolidated/functions_exploration_base_ExplorerRegistry.yaml
- consolidated/functions_exploration_data_tree.yaml
- consolidated/functions_exploration_data_tree_DataTreeExplorer.yaml
- consolidated/functions_exploration_disk.yaml
- consolidated/functions_exploration_disk_DiskExplorer.yaml
- consolidated/functions_exploration_resource_discovery.yaml
- consolidated/functions_exploration_resource_discovery_ResourceDiscoveryManager.yaml
- consolidated/functions_exploration_service.yaml
- consolidated/functions_exploration_service_ServiceExplorer.yaml
- consolidated/functions_feedback.yaml
- consolidated/functions_feedback_CorrectionEngine.yaml
- consolidated/functions_feedback_FeedbackAnalyzer.yaml
- consolidated/functions_generation.yaml
- consolidated/functions_generation_auto_repair.yaml
- consolidated/functions_generation_auto_repair_CommandRepairer.yaml
- consolidated/functions_generation_complex_detector.yaml
- consolidated/functions_generation_complex_detector_ComplexQueryDetector.yaml
- consolidated/functions_generation_data_loader.yaml
- consolidated/functions_generation_data_loader_DataLoader.yaml
- consolidated/functions_generation_data_loader_PhraseDatabase.yaml
- consolidated/functions_generation_data_loader_PhraseEntry.yaml
- consolidated/functions_generation_enhanced_context.yaml
- consolidated/functions_generation_enhanced_context_EnhancedContextDetector.yaml
- consolidated/functions_generation_evolutionary_cache.yaml
- consolidated/functions_generation_evolutionary_cache_CacheEntry.yaml
- consolidated/functions_generation_evolutionary_cache_EvolutionaryCache.yaml
- consolidated/functions_generation_fuzzy_schema_matcher.yaml
- consolidated/functions_generation_fuzzy_schema_matcher_FuzzySchemaMatcher.yaml
- consolidated/functions_generation_hybrid.yaml
- consolidated/functions_generation_hybrid_AdaptiveHybridGenerator.yaml
- consolidated/functions_generation_hybrid_HybridGenerator.yaml
- consolidated/functions_generation_keywords_keyword_detector.yaml
- consolidated/functions_generation_keywords_keyword_detector_KeywordIntentDetector.yaml
- consolidated/functions_generation_keywords_keyword_patterns.yaml
- consolidated/functions_generation_keywords_keyword_patterns_KeywordPatterns.yaml
- consolidated/functions_generation_llm_multi.yaml
- consolidated/functions_generation_llm_multi_CachedMultiDomainGenerator.yaml
- consolidated/functions_generation_llm_multi_LLMDomainRouter.yaml
- consolidated/functions_generation_llm_multi_MultiDomainGenerator.yaml
- consolidated/functions_generation_llm_simple.yaml
- consolidated/functions_generation_llm_simple_BaseLLMGenerator.yaml
- consolidated/functions_generation_llm_simple_LiteLLMClient.yaml
- consolidated/functions_generation_llm_simple_MockLLMClient.yaml
- consolidated/functions_generation_llm_simple_SimpleLLMDockerGenerator.yaml
- consolidated/functions_generation_llm_simple_SimpleLLMKubernetesGenerator.yaml
- consolidated/functions_generation_llm_simple_SimpleLLMSQLGenerator.yaml
- consolidated/functions_generation_llm_simple_SimpleLLMShellGenerator.yaml
- consolidated/functions_generation_ml_intent_classifier.yaml
- consolidated/functions_generation_ml_intent_classifier_MLIntentClassifier.yaml
- consolidated/functions_generation_multi_command.yaml
- consolidated/functions_generation_multi_command_MultiCommandDetector.yaml
- consolidated/functions_generation_pipeline.yaml
- consolidated/functions_generation_pipeline_RuleBasedPipeline.yaml
- consolidated/functions_generation_pipeline_components.yaml
- consolidated/functions_generation_pipeline_components_PipelineMetrics.yaml
- consolidated/functions_generation_pipeline_components_PipelineResult.yaml
- consolidated/functions_generation_regex.yaml
- consolidated/functions_generation_regex_RegexEntityExtractor.yaml
- consolidated/functions_generation_schema_adapter.yaml
- consolidated/functions_generation_schema_adapter_SchemaDrivenAppSpecAdapter.yaml
- consolidated/functions_generation_schema_generator.yaml
- consolidated/functions_generation_schema_generator_SchemaBasedGenerator.yaml
- consolidated/functions_generation_schema_generator_SchemaRegistry.yaml
- consolidated/functions_generation_semantic_entities.yaml
- consolidated/functions_generation_semantic_entities_SemanticEntityExtractor.yaml
- consolidated/functions_generation_semantic_matcher_optimized.yaml
- consolidated/functions_generation_semantic_matcher_optimized_OptimizedSemanticMatcher.yaml
- consolidated/functions_generation_structured.yaml
- consolidated/functions_generation_structured_MultiStepPlan.yaml
- consolidated/functions_generation_structured_MultiStepPlanner.yaml
- consolidated/functions_generation_structured_StructuredLLMPlanner.yaml
- consolidated/functions_generation_template_generator.yaml
- consolidated/functions_generation_template_generator_TemplateGenerator.yaml
- consolidated/functions_generation_thermodynamic.yaml
- consolidated/functions_generation_thermodynamic_HybridThermodynamicGenerator.yaml
- consolidated/functions_generation_thermodynamic_ThermodynamicGenerator.yaml
- consolidated/functions_generation_thermodynamic__NumpyStub.yaml
- consolidated/functions_generation_thermodynamic_components.yaml
- consolidated/functions_generation_thermodynamic_components_OptimizationProblem.yaml
- consolidated/functions_generation_thermodynamic_components_ThermodynamicConfig.yaml
- consolidated/functions_generation_thermodynamic_components_ThermodynamicProblemDetector.yaml
- consolidated/functions_generation_thermodynamic_components_ThermodynamicResult.yaml
- consolidated/functions_generation_thermodynamic_components__NumpyStub.yaml
- consolidated/functions_generation_train_model.yaml
- consolidated/functions_generation_validating.yaml
- consolidated/functions_generation_validating_SimpleDockerValidator.yaml
- consolidated/functions_generation_validating_SimpleKubernetesValidator.yaml
- consolidated/functions_generation_validating_SimpleSQLValidator.yaml
- consolidated/functions_generation_validating_SimpleShellValidator.yaml
- consolidated/functions_generation_validating_ValidatingGenerator.yaml
- consolidated/functions_history_tracker.yaml
- consolidated/functions_history_tracker_CommandHistory.yaml
- consolidated/functions_history_tracker_CommandRecord.yaml
- consolidated/functions_history_tracker_SchemaUsage.yaml
- consolidated/functions_intelligent_command_detector.yaml
- consolidated/functions_intelligent_command_detector_CommandDetector.yaml
- consolidated/functions_intelligent_dynamic_generator.yaml
- consolidated/functions_intelligent_dynamic_generator_DynamicSchemaGenerator.yaml
- consolidated/functions_intelligent_version_aware_generator.yaml
- consolidated/functions_intelligent_version_aware_generator_VersionAwareCommandGenerator.yaml
- consolidated/functions_llm_openrouter.yaml
- consolidated/functions_llm_openrouter_OpenRouterClient.yaml
- consolidated/functions_llm_repair.yaml
- consolidated/functions_llm_repair_LLMRepair.yaml
- consolidated/functions_llm_validator.yaml
- consolidated/functions_llm_validator_LLMValidator.yaml
- consolidated/functions_llm_vision.yaml
- consolidated/functions_llm_vision_VisionAnalyzer.yaml
- consolidated/functions_monitoring_resources.yaml
- consolidated/functions_monitoring_resources_ResourceMonitor.yaml
- consolidated/functions_monitoring_resources__ProcessStub.yaml
- consolidated/functions_monitoring_resources__PsutilStub.yaml
- consolidated/functions_monitoring_token_costs.yaml
- consolidated/functions_monitoring_token_costs_TokenCostEstimator.yaml
- consolidated/functions_nlp_config.yaml
- consolidated/functions_nlp_config_IntentConfig.yaml
- consolidated/functions_nlp_config_IntentRegistry.yaml
- consolidated/functions_nlp_config_ServiceConfig.yaml
- consolidated/functions_nlp_config_ServiceRegistry.yaml
- consolidated/functions_nlp_enhanced.yaml
- consolidated/functions_nlp_enhanced_HybridNLPBackend.yaml
- consolidated/functions_nlp_enhanced_ShellGPTBackend.yaml
- consolidated/functions_nlp_entity_resolver.yaml
- consolidated/functions_nlp_entity_resolver_AppInfo.yaml
- consolidated/functions_nlp_entity_resolver_EntityResolver.yaml
- consolidated/functions_nlp_intent_matcher.yaml
- consolidated/functions_nlp_intent_matcher_IntentDef.yaml
- consolidated/functions_nlp_intent_matcher_IntentMatcher.yaml
- consolidated/functions_nlp_light_semantic_shell.yaml
- consolidated/functions_nlp_light_semantic_shell_SemanticShellBackend.yaml
- consolidated/functions_nlp_normalizer.yaml
- consolidated/functions_nlp_normalizer_QueryNormalizer.yaml
- consolidated/functions_parsing_toon_parser.yaml
- consolidated/functions_parsing_toon_parser_ToonParser.yaml
- consolidated/functions_pipeline_runner.yaml
- consolidated/functions_pipeline_runner_PipelineRunner.yaml
- consolidated/functions_pipeline_runner_browser.yaml
- consolidated/functions_pipeline_runner_browser_BrowserExecutionMixin.yaml
- consolidated/functions_pipeline_runner_desktop.yaml
- consolidated/functions_pipeline_runner_desktop_DesktopExecutionMixin.yaml
- consolidated/functions_pipeline_runner_plans.yaml
- consolidated/functions_pipeline_runner_plans_PlanExecutionMixin.yaml
- consolidated/functions_pipeline_runner_shell.yaml
- consolidated/functions_pipeline_runner_shell_ShellExecutionMixin.yaml
- consolidated/functions_pipeline_runner_utils.yaml
- consolidated/functions_pipeline_runner_utils_ShellExecutionPolicy.yaml
- consolidated/functions_pipeline_runner_utils_VideoRecorder.yaml
- consolidated/functions_pipeline_runner_utils__Capture.yaml
- consolidated/functions_pipeline_runner_utils__MarkdownConsoleWrapper.yaml
- consolidated/functions_planner.yaml
- consolidated/functions_planner_LLMPlanner.yaml
- consolidated/functions_polish_support.yaml
- consolidated/functions_polish_support_PolishLanguageSupport.yaml
- consolidated/functions_registry.yaml
- consolidated/functions_registry_ActionHandler.yaml
- consolidated/functions_registry_ActionRegistry.yaml
- consolidated/functions_registry_ActionResult.yaml
- consolidated/functions_router.yaml
- consolidated/functions_router_DecisionRouter.yaml
- consolidated/functions_schema_driven.yaml
- consolidated/functions_schema_driven_SchemaDrivenNLP2CMD.yaml
- consolidated/functions_schema_extraction_extractors.yaml
- consolidated/functions_schema_extraction_extractors_ExtractedSchema.yaml
- consolidated/functions_schema_extraction_extractors_OpenAPISchemaExtractor.yaml
- consolidated/functions_schema_extraction_extractors_ShellHelpExtractor.yaml
- consolidated/functions_schema_extraction_llm_extractor.yaml
- consolidated/functions_schema_extraction_llm_extractor_LLMSchemaExtractor.yaml
- consolidated/functions_schema_extraction_python_extractors.yaml
- consolidated/functions_schema_extraction_python_extractors_ClickExtractor.yaml
- consolidated/functions_schema_extraction_python_extractors_PythonCodeExtractor.yaml
- consolidated/functions_schema_extraction_registry.yaml
- consolidated/functions_schema_extraction_registry_SchemaRegistry.yaml
- consolidated/functions_schema_extraction_script_extractors.yaml
- consolidated/functions_schema_extraction_script_extractors_MakefileExtractor.yaml
- consolidated/functions_schema_extraction_script_extractors_ShellScriptExtractor.yaml
- consolidated/functions_schemas.yaml
- consolidated/functions_schemas_FileFormatSchema.yaml
- consolidated/functions_schemas_SchemaRegistry.yaml
- consolidated/functions_service.yaml
- consolidated/functions_service_NLP2CMDService.yaml
- consolidated/functions_service_ServiceConfig.yaml
- consolidated/functions_service_cli.yaml
- consolidated/functions_src_nlp2cmd_execution_refactored_executor.yaml
- consolidated/functions_src_nlp2cmd_execution_refactored_executor_ActionExecutor.yaml
- consolidated/functions_src_nlp2cmd_execution_refactored_executor_RefactoredPlanExecutor.yaml
- consolidated/functions_src_nlp2cmd_processing_framework.yaml
- consolidated/functions_src_nlp2cmd_processing_framework_AggregateProcessor.yaml
- consolidated/functions_src_nlp2cmd_processing_framework_BaseProcessor.yaml
- consolidated/functions_src_nlp2cmd_processing_framework_FilterProcessor.yaml
- consolidated/functions_src_nlp2cmd_processing_framework_MapProcessor.yaml
- consolidated/functions_src_nlp2cmd_processing_framework_ProcessingPipeline.yaml
- consolidated/functions_src_nlp2cmd_processing_framework_ReduceProcessor.yaml
- consolidated/functions_src_nlp2cmd_processing_framework_TransformProcessor.yaml
- consolidated/functions_src_nlp2cmd_validation_framework.yaml
- consolidated/functions_src_nlp2cmd_validation_framework_BaseValidator.yaml
- consolidated/functions_src_nlp2cmd_validation_framework_FormFieldValidator.yaml
- consolidated/functions_src_nlp2cmd_validation_framework_SafetyPolicyValidator.yaml
- consolidated/functions_src_nlp2cmd_validation_framework_ValidationFramework.yaml
- consolidated/functions_storage_per_command_store.yaml
- consolidated/functions_storage_per_command_store_PerCommandSchemaStore.yaml
- consolidated/functions_storage_versioned_store.yaml
- consolidated/functions_storage_versioned_store_VersionedSchemaStore.yaml
- consolidated/functions_streams_base.yaml
- consolidated/functions_streams_base_StreamAdapter.yaml
- consolidated/functions_streams_ftp_stream.yaml
- consolidated/functions_streams_ftp_stream_FTPStreamAdapter.yaml
- consolidated/functions_streams_http_stream.yaml
- consolidated/functions_streams_http_stream_HTTPStreamAdapter.yaml
- consolidated/functions_streams_libvirt_stream.yaml
- consolidated/functions_streams_libvirt_stream_LibvirtStreamAdapter.yaml
- consolidated/functions_streams_rdp_stream.yaml
- consolidated/functions_streams_rdp_stream_RDPStreamAdapter.yaml
- consolidated/functions_streams_router.yaml
- consolidated/functions_streams_router_StreamRouter.yaml
- consolidated/functions_streams_rtsp_stream.yaml
- consolidated/functions_streams_rtsp_stream_RTSPStreamAdapter.yaml
- consolidated/functions_streams_spice_stream.yaml
- consolidated/functions_streams_spice_stream_SPICEStreamAdapter.yaml
- consolidated/functions_streams_ssh_stream.yaml
- consolidated/functions_streams_ssh_stream_SSHStreamAdapter.yaml
- consolidated/functions_streams_vnc_stream.yaml
- consolidated/functions_streams_vnc_stream_VNCStreamAdapter.yaml
- consolidated/functions_streams_ws_stream.yaml
- consolidated/functions_streams_ws_stream_WSStreamAdapter.yaml
- consolidated/functions_thermodynamic.yaml
- consolidated/functions_thermodynamic_ConstraintEnergy.yaml
- consolidated/functions_thermodynamic_EnergyModel.yaml
- consolidated/functions_thermodynamic_LangevinSampler.yaml
- consolidated/functions_thermodynamic_MajorityVoter.yaml
- consolidated/functions_thermodynamic_QuadraticEnergy.yaml
- consolidated/functions_thermodynamic_ThermodynamicRouter.yaml
- consolidated/functions_thermodynamic__NumpyStub.yaml
- consolidated/functions_thermodynamic_energy_models.yaml
- consolidated/functions_thermodynamic_energy_models_AllocationEnergy.yaml
- consolidated/functions_thermodynamic_energy_models_CSPEnergy.yaml
- consolidated/functions_thermodynamic_energy_models_RoutingEnergy.yaml
- consolidated/functions_thermodynamic_energy_models_SchedulingEnergy.yaml
- consolidated/functions_utils_data_files.yaml
- consolidated/functions_utils_external_cache.yaml
- consolidated/functions_utils_external_cache_ExternalCacheManager.yaml
- consolidated/functions_utils_playwright_installer.yaml
- consolidated/functions_utils_yaml_compat.yaml
- consolidated/functions_validators.yaml
- consolidated/functions_validators_BaseValidator.yaml
- consolidated/functions_validators_CompositeValidator.yaml
- consolidated/functions_validators_DockerValidator.yaml
- consolidated/functions_validators_KubernetesValidator.yaml
- consolidated/functions_validators_SQLValidator.yaml
- consolidated/functions_validators_ShellValidator.yaml
- consolidated/functions_validators_SyntaxValidator.yaml
- consolidated/functions_validators_ValidationResult.yaml
- consolidated/functions_web_schema_browser_config.yaml
- consolidated/functions_web_schema_browser_config_BrowserConfigLoader.yaml
- consolidated/functions_web_schema_browser_config_DynamicSelectorGenerator.yaml
- consolidated/functions_web_schema_extractor.yaml
- consolidated/functions_web_schema_extractor_WebPageSchema.yaml
- consolidated/functions_web_schema_extractor_WebSchemaExtractor.yaml
- consolidated/functions_web_schema_form_data_loader.yaml
- consolidated/functions_web_schema_form_data_loader_FormDataLoader.yaml
- consolidated/functions_web_schema_form_handler.yaml
- consolidated/functions_web_schema_form_handler_FormField.yaml
- consolidated/functions_web_schema_form_handler_FormHandler.yaml
- consolidated/functions_web_schema_history.yaml
- consolidated/functions_web_schema_history_InteractionHistory.yaml
- consolidated/functions_web_schema_history_InteractionRecord.yaml
- consolidated/functions_web_schema_site_explorer.yaml
- consolidated/functions_web_schema_site_explorer_SiteExplorer.yaml
- consolidated/summary.yaml
- orphans/functions__.yaml
- orphans/functions_a.yaml
- orphans/functions_b.yaml
- orphans/functions_c.yaml
- orphans/functions_d.yaml
- orphans/functions_e.yaml
- orphans/functions_f.yaml
- orphans/functions_g.yaml
- orphans/functions_h.yaml
- orphans/functions_i.yaml
- orphans/functions_l.yaml
- orphans/functions_m.yaml
- orphans/functions_o.yaml
- orphans/functions_p.yaml
- orphans/functions_q.yaml
- orphans/functions_r.yaml
- orphans/functions_s.yaml
- orphans/functions_t.yaml
- orphans/functions_v.yaml
- orphans/nodes_adapters_appspec.yaml
- orphans/nodes_adapters_appspec_AppSpecAdapter.yaml
- orphans/nodes_adapters_base.yaml
- orphans/nodes_adapters_base_BaseDSLAdapter.yaml
- orphans/nodes_adapters_browser.yaml
- orphans/nodes_adapters_browser_BrowserAdapter.yaml
- orphans/nodes_adapters_canvas.yaml
- orphans/nodes_adapters_canvas_CanvasAdapter.yaml
- orphans/nodes_adapters_desktop.yaml
- orphans/nodes_adapters_desktop_DesktopAdapter.yaml
- orphans/nodes_adapters_desktop_DesktopSafetyPolicy.yaml
- orphans/nodes_adapters_docker.yaml
- orphans/nodes_adapters_docker_DockerAdapter.yaml
- orphans/nodes_adapters_docker_DockerSafetyPolicy.yaml
- orphans/nodes_adapters_dql.yaml
- orphans/nodes_adapters_dql_DQLAdapter.yaml
- orphans/nodes_adapters_dynamic.yaml
- orphans/nodes_adapters_dynamic_DynamicAdapter.yaml
- orphans/nodes_adapters_dynamic_DynamicSafetyPolicy.yaml
- orphans/nodes_adapters_kubernetes.yaml
- orphans/nodes_adapters_kubernetes_KubernetesAdapter.yaml
- orphans/nodes_adapters_kubernetes_KubernetesSafetyPolicy.yaml
- orphans/nodes_adapters_shell.yaml
- orphans/nodes_adapters_shell_ShellAdapter.yaml
- orphans/nodes_adapters_shell_generators.yaml
- orphans/nodes_adapters_shell_generators_DevelopmentGenerator.yaml
- orphans/nodes_adapters_shell_generators_DockerGenerator.yaml
- orphans/nodes_adapters_shell_generators_FileOperationGenerator.yaml
- orphans/nodes_adapters_shell_generators_GitGenerator.yaml
- orphans/nodes_adapters_shell_generators_NetworkGenerator.yaml
- orphans/nodes_adapters_shell_generators_ProcessManagementGenerator.yaml
- orphans/nodes_adapters_shell_generators_SystemMaintenanceGenerator.yaml
- orphans/nodes_adapters_shell_generators_TextProcessingGenerator.yaml
- orphans/nodes_adapters_sql.yaml
- orphans/nodes_adapters_sql_SQLAdapter.yaml
- orphans/nodes_aggregator.yaml
- orphans/nodes_aggregator_ResultAggregator.yaml
- orphans/nodes_appspec_runtime.yaml
- orphans/nodes_appspec_runtime_AppSpec.yaml
- orphans/nodes_automation_action_planner.yaml
- orphans/nodes_automation_action_planner_ActionPlan.yaml
- orphans/nodes_automation_action_planner_ActionPlanner.yaml
- orphans/nodes_automation_action_planner_ActionStep.yaml
- orphans/nodes_automation_captcha_solver.yaml
- orphans/nodes_automation_captcha_solver_CaptchaSolver.yaml
- orphans/nodes_automation_complex_planner.yaml
- orphans/nodes_automation_complex_planner_ActionStep.yaml
- orphans/nodes_automation_complex_planner_ComplexCommandPlanner.yaml
- orphans/nodes_automation_complex_planner_ExecutionPlan.yaml
- orphans/nodes_automation_drawing_blueprints.yaml
- orphans/nodes_automation_env_extractor.yaml
- orphans/nodes_automation_env_extractor_EnvExtractor.yaml
- orphans/nodes_automation_feedback_loop.yaml
- orphans/nodes_automation_feedback_loop_FeedbackLoop.yaml
- orphans/nodes_automation_feedback_loop_PageAnalyzer.yaml
- orphans/nodes_automation_firefox_sessions.yaml
- orphans/nodes_automation_firefox_sessions_FirefoxSessionImporter.yaml
- orphans/nodes_automation_mouse_controller.yaml
- orphans/nodes_automation_mouse_controller_MouseController.yaml
- orphans/nodes_automation_password_store.yaml
- orphans/nodes_automation_password_store_BitwardenReader.yaml
- orphans/nodes_automation_password_store_Credential.yaml
- orphans/nodes_automation_password_store_EnvPasswordReader.yaml
- orphans/nodes_automation_password_store_FirefoxPasswordReader.yaml
- orphans/nodes_automation_password_store_KeePassXCReader.yaml
- orphans/nodes_automation_password_store_SessionPasswordStore.yaml
- orphans/nodes_automation_schema_fallback.yaml
- orphans/nodes_automation_schema_fallback_SchemaFallback.yaml
- orphans/nodes_automation_service_configs.yaml
- orphans/nodes_automation_shape_planner.yaml
- orphans/nodes_automation_shape_planner_ShapePlanner.yaml
- orphans/nodes_automation_step_validator.yaml
- orphans/nodes_automation_step_validator_StepValidator.yaml
- orphans/nodes_automation_vector_store.yaml
- orphans/nodes_automation_vector_store_DrawingPattern.yaml
- orphans/nodes_automation_vector_store_DrawingVectorStore.yaml
- orphans/nodes_cli_auto_repair.yaml
- orphans/nodes_cli_auto_repair_AutoRepairSystem.yaml
- orphans/nodes_cli_cache.yaml
- orphans/nodes_cli_cache_Console.yaml
- orphans/nodes_cli_cache_Group.yaml
- orphans/nodes_cli_cache__ClickStub.yaml
- orphans/nodes_cli_commands_doctor.yaml
- orphans/nodes_cli_commands_doctor_NP2CMDDoctor.yaml
- orphans/nodes_cli_commands_generate.yaml
- orphans/nodes_cli_commands_interactive.yaml
- orphans/nodes_cli_commands_interactive_InteractiveSession.yaml
- orphans/nodes_cli_commands_interactive_MockResult.yaml
- orphans/nodes_cli_commands_run.yaml
- orphans/nodes_cli_commands_tools.yaml
- orphans/nodes_cli_debug_info.yaml
- orphans/nodes_cli_display.yaml
- orphans/nodes_cli_helpers.yaml
- orphans/nodes_cli_history.yaml
- orphans/nodes_cli_history_Console.yaml
- orphans/nodes_cli_history__ClickStub.yaml
- orphans/nodes_cli_main.yaml
- orphans/nodes_cli_markdown_output.yaml
- orphans/nodes_cli_markdown_output_MarkdownBlockStream.yaml
- orphans/nodes_cli_markdown_output_MarkdownConsoleProxy.yaml
- orphans/nodes_cli_session_logger.yaml
- orphans/nodes_cli_session_logger_SessionLogger.yaml
- orphans/nodes_cli_syntax_cache.yaml
- orphans/nodes_cli_syntax_cache_SyntaxCache.yaml
- orphans/nodes_cli_web_schema.yaml
- orphans/nodes_cli_web_schema_Console.yaml
- orphans/nodes_cli_web_schema_Group.yaml
- orphans/nodes_cli_web_schema__ClickStub.yaml
- orphans/nodes_context_disambiguator.yaml
- orphans/nodes_context_disambiguator_CommandDisambiguator.yaml
- orphans/nodes_core_core_backends.yaml
- orphans/nodes_core_core_backends_LLMBackend.yaml
- orphans/nodes_core_core_backends_NLPBackend.yaml
- orphans/nodes_core_core_backends_RuleBasedBackend.yaml
- orphans/nodes_core_core_backends_SpaCyBackend.yaml
- orphans/nodes_core_core_models.yaml
- orphans/nodes_core_core_models_BaseModel.yaml
- orphans/nodes_core_core_models_ExecutionPlan.yaml
- orphans/nodes_core_core_models_TransformResult.yaml
- orphans/nodes_core_core_transform.yaml
- orphans/nodes_core_core_transform_NLP2CMD.yaml
- orphans/nodes_core_toon_integration.yaml
- orphans/nodes_core_toon_integration_ToonDataManager.yaml
- orphans/nodes_enhanced.yaml
- orphans/nodes_enhanced_EnhancedNLP2CMD.yaml
- orphans/nodes_environment.yaml
- orphans/nodes_environment_EnvironmentAnalyzer.yaml
- orphans/nodes_execution_base.yaml
- orphans/nodes_execution_base_BaseExecutor.yaml
- orphans/nodes_execution_base_ExecutorResult.yaml
- orphans/nodes_execution_browser.yaml
- orphans/nodes_execution_browser_BrowserExecutor.yaml
- orphans/nodes_execution_executor_registry.yaml
- orphans/nodes_execution_executor_registry_ExecutorRegistry.yaml
- orphans/nodes_execution_media_recorder.yaml
- orphans/nodes_execution_media_recorder_MediaRecorder.yaml
- orphans/nodes_execution_runner.yaml
- orphans/nodes_execution_runner_Console.yaml
- orphans/nodes_execution_runner_ExecutionRunner.yaml
- orphans/nodes_execution_shell_executor.yaml
- orphans/nodes_execution_shell_executor_ShellExecutor.yaml
- orphans/nodes_executor.yaml
- orphans/nodes_executor_ExecutionContext.yaml
- orphans/nodes_executor_ExecutionPlan.yaml
- orphans/nodes_executor_PlanExecutor.yaml
- orphans/nodes_executor_PlanStep.yaml
- orphans/nodes_executor_PlanValidator.yaml
- orphans/nodes_exploration_base.yaml
- orphans/nodes_exploration_base_BaseExplorer.yaml
- orphans/nodes_exploration_base_ExplorerRegistry.yaml
- orphans/nodes_exploration_data_tree.yaml
- orphans/nodes_exploration_data_tree_DataTreeExplorer.yaml
- orphans/nodes_exploration_disk.yaml
- orphans/nodes_exploration_disk_DiskExplorer.yaml
- orphans/nodes_exploration_resource_discovery.yaml
- orphans/nodes_exploration_resource_discovery_ResourceDiscoveryManager.yaml
- orphans/nodes_exploration_service.yaml
- orphans/nodes_exploration_service_ServiceExplorer.yaml
- orphans/nodes_feedback.yaml
- orphans/nodes_feedback_CorrectionEngine.yaml
- orphans/nodes_feedback_FeedbackAnalyzer.yaml
- orphans/nodes_feedback_FeedbackResult.yaml
- orphans/nodes_generation.yaml
- orphans/nodes_generation_auto_repair.yaml
- orphans/nodes_generation_auto_repair_CommandRepairer.yaml
- orphans/nodes_generation_complex_detector.yaml
- orphans/nodes_generation_complex_detector_ComplexQueryDetector.yaml
- orphans/nodes_generation_data_loader.yaml
- orphans/nodes_generation_data_loader_DataLoader.yaml
- orphans/nodes_generation_data_loader_PhraseDatabase.yaml
- orphans/nodes_generation_data_loader_PhraseEntry.yaml
- orphans/nodes_generation_enhanced_context.yaml
- orphans/nodes_generation_enhanced_context_EnhancedContextDetector.yaml
- orphans/nodes_generation_evolutionary_cache.yaml
- orphans/nodes_generation_evolutionary_cache_CacheEntry.yaml
- orphans/nodes_generation_evolutionary_cache_EvolutionaryCache.yaml
- orphans/nodes_generation_fuzzy_schema_matcher.yaml
- orphans/nodes_generation_fuzzy_schema_matcher_FuzzySchemaMatcher.yaml
- orphans/nodes_generation_fuzzy_schema_matcher_FuzzySchemaMatcherConfig.yaml
- orphans/nodes_generation_hybrid.yaml
- orphans/nodes_generation_hybrid_AdaptiveHybridGenerator.yaml
- orphans/nodes_generation_hybrid_HybridGenerator.yaml
- orphans/nodes_generation_hybrid_HybridStats.yaml
- orphans/nodes_generation_keywords_keyword_detector.yaml
- orphans/nodes_generation_keywords_keyword_detector_DetectionResult.yaml
- orphans/nodes_generation_keywords_keyword_detector_KeywordIntentDetector.yaml
- orphans/nodes_generation_keywords_keyword_patterns.yaml
- orphans/nodes_generation_keywords_keyword_patterns_KeywordPatterns.yaml
- orphans/nodes_generation_llm_multi.yaml
- orphans/nodes_generation_llm_multi_CachedMultiDomainGenerator.yaml
- orphans/nodes_generation_llm_multi_LLMDomainRouter.yaml
- orphans/nodes_generation_llm_multi_MultiDomainGenerator.yaml
- orphans/nodes_generation_llm_simple.yaml
- orphans/nodes_generation_llm_simple_BaseLLMGenerator.yaml
- orphans/nodes_generation_llm_simple_LLMClient.yaml
- orphans/nodes_generation_llm_simple_LiteLLMClient.yaml
- orphans/nodes_generation_llm_simple_MockLLMClient.yaml
- orphans/nodes_generation_llm_simple_SimpleLLMDockerGenerator.yaml
- orphans/nodes_generation_llm_simple_SimpleLLMKubernetesGenerator.yaml
- orphans/nodes_generation_llm_simple_SimpleLLMSQLGenerator.yaml
- orphans/nodes_generation_llm_simple_SimpleLLMShellGenerator.yaml
- orphans/nodes_generation_ml_intent_classifier.yaml
- orphans/nodes_generation_ml_intent_classifier_MLIntentClassifier.yaml
- orphans/nodes_generation_multi_command.yaml
- orphans/nodes_generation_multi_command_MultiCommandDetector.yaml
- orphans/nodes_generation_multi_command_MultiCommandResult.yaml
- orphans/nodes_generation_pipeline.yaml
- orphans/nodes_generation_pipeline_RuleBasedPipeline.yaml
- orphans/nodes_generation_pipeline_components.yaml
- orphans/nodes_generation_pipeline_components_PipelineMetrics.yaml
- orphans/nodes_generation_pipeline_components_PipelineResult.yaml
- orphans/nodes_generation_regex.yaml
- orphans/nodes_generation_regex_ExtractionResult.yaml
- orphans/nodes_generation_regex_RegexEntityExtractor.yaml
- orphans/nodes_generation_schema_adapter.yaml
- orphans/nodes_generation_schema_adapter_SchemaDrivenAppSpecAdapter.yaml
- orphans/nodes_generation_schema_generator.yaml
- orphans/nodes_generation_schema_generator_SchemaBasedGenerator.yaml
- orphans/nodes_generation_schema_generator_SchemaRegistry.yaml
- orphans/nodes_generation_semantic_entities.yaml
- orphans/nodes_generation_semantic_entities_SemanticEntityExtractor.yaml
- orphans/nodes_generation_semantic_matcher_optimized.yaml
- orphans/nodes_generation_semantic_matcher_optimized_OptimizedSemanticMatcher.yaml
- orphans/nodes_generation_structured.yaml
- orphans/nodes_generation_structured_MultiStepPlan.yaml
- orphans/nodes_generation_structured_MultiStepPlanner.yaml
- orphans/nodes_generation_structured_StructuredLLMPlanner.yaml
- orphans/nodes_generation_structured_StructuredPlan.yaml
- orphans/nodes_generation_template_generator.yaml
- orphans/nodes_generation_template_generator_TemplateGenerator.yaml
- orphans/nodes_generation_thermodynamic.yaml
- orphans/nodes_generation_thermodynamic_HybridThermodynamicGenerator.yaml
- orphans/nodes_generation_thermodynamic_SolutionQuality.yaml
- orphans/nodes_generation_thermodynamic_ThermodynamicGenerator.yaml
- orphans/nodes_generation_thermodynamic__NumpyStub.yaml
- orphans/nodes_generation_thermodynamic_components.yaml
- orphans/nodes_generation_thermodynamic_components_OptimizationProblem.yaml
- orphans/nodes_generation_thermodynamic_components_ThermodynamicConfig.yaml
- orphans/nodes_generation_thermodynamic_components_ThermodynamicProblemDetector.yaml
- orphans/nodes_generation_thermodynamic_components_ThermodynamicResult.yaml
- orphans/nodes_generation_thermodynamic_components__NumpyStub.yaml
- orphans/nodes_generation_train_model.yaml
- orphans/nodes_generation_validating.yaml
- orphans/nodes_generation_validating_DSLValidator.yaml
- orphans/nodes_generation_validating_SimpleDockerValidator.yaml
- orphans/nodes_generation_validating_SimpleKubernetesValidator.yaml
- orphans/nodes_generation_validating_SimpleSQLValidator.yaml
- orphans/nodes_generation_validating_SimpleShellValidator.yaml
- orphans/nodes_generation_validating_ValidatingGenerator.yaml
- orphans/nodes_history_tracker.yaml
- orphans/nodes_history_tracker_CommandHistory.yaml
- orphans/nodes_history_tracker_CommandRecord.yaml
- orphans/nodes_history_tracker_SchemaUsage.yaml
- orphans/nodes_intelligent_command_detector.yaml
- orphans/nodes_intelligent_command_detector_CommandDetector.yaml
- orphans/nodes_intelligent_dynamic_generator.yaml
- orphans/nodes_intelligent_dynamic_generator_DynamicSchemaGenerator.yaml
- orphans/nodes_intelligent_version_aware_generator.yaml
- orphans/nodes_intelligent_version_aware_generator_VersionAwareCommandGenerator.yaml
- orphans/nodes_ir.yaml
- orphans/nodes_ir_ActionIR.yaml
- orphans/nodes_llm_openrouter.yaml
- orphans/nodes_llm_openrouter_OpenRouterClient.yaml
- orphans/nodes_llm_repair.yaml
- orphans/nodes_llm_repair_LLMRepair.yaml
- orphans/nodes_llm_validator.yaml
- orphans/nodes_llm_validator_LLMValidator.yaml
- orphans/nodes_llm_vision.yaml
- orphans/nodes_llm_vision_VisionAnalyzer.yaml
- orphans/nodes_monitoring_resources.yaml
- orphans/nodes_monitoring_resources_ResourceMonitor.yaml
- orphans/nodes_monitoring_resources__ProcessStub.yaml
- orphans/nodes_monitoring_resources__PsutilStub.yaml
- orphans/nodes_monitoring_token_costs.yaml
- orphans/nodes_monitoring_token_costs_TokenCostEstimator.yaml
- orphans/nodes_nlp_config.yaml
- orphans/nodes_nlp_config_IntentConfig.yaml
- orphans/nodes_nlp_config_IntentRegistry.yaml
- orphans/nodes_nlp_config_ServiceConfig.yaml
- orphans/nodes_nlp_config_ServiceRegistry.yaml
- orphans/nodes_nlp_enhanced.yaml
- orphans/nodes_nlp_enhanced_HybridNLPBackend.yaml
- orphans/nodes_nlp_enhanced_ShellGPTBackend.yaml
- orphans/nodes_nlp_entity_resolver.yaml
- orphans/nodes_nlp_entity_resolver_AppInfo.yaml
- orphans/nodes_nlp_entity_resolver_EntityResolver.yaml
- orphans/nodes_nlp_intent_matcher.yaml
- orphans/nodes_nlp_intent_matcher_IntentDef.yaml
- orphans/nodes_nlp_intent_matcher_IntentMatcher.yaml
- orphans/nodes_nlp_light_semantic_shell.yaml
- orphans/nodes_nlp_light_semantic_shell_SemanticShellBackend.yaml
- orphans/nodes_nlp_normalizer.yaml
- orphans/nodes_nlp_normalizer_QueryNormalizer.yaml
- orphans/nodes_parsing_toon_parser.yaml
- orphans/nodes_parsing_toon_parser_ToonParser.yaml
- orphans/nodes_pipeline_runner.yaml
- orphans/nodes_pipeline_runner_PipelineRunner.yaml
- orphans/nodes_pipeline_runner_browser.yaml
- orphans/nodes_pipeline_runner_browser_BrowserExecutionMixin.yaml
- orphans/nodes_pipeline_runner_desktop.yaml
- orphans/nodes_pipeline_runner_desktop_DesktopExecutionMixin.yaml
- orphans/nodes_pipeline_runner_plans.yaml
- orphans/nodes_pipeline_runner_plans_PlanExecutionMixin.yaml
- orphans/nodes_pipeline_runner_shell.yaml
- orphans/nodes_pipeline_runner_shell_ShellExecutionMixin.yaml
- orphans/nodes_pipeline_runner_utils.yaml
- orphans/nodes_pipeline_runner_utils_ShellExecutionPolicy.yaml
- orphans/nodes_pipeline_runner_utils_VideoRecorder.yaml
- orphans/nodes_pipeline_runner_utils__Capture.yaml
- orphans/nodes_pipeline_runner_utils__MarkdownConsoleWrapper.yaml
- orphans/nodes_planner.yaml
- orphans/nodes_planner_LLMPlanner.yaml
- orphans/nodes_polish_support.yaml
- orphans/nodes_polish_support_PolishLanguageSupport.yaml
- orphans/nodes_registry.yaml
- orphans/nodes_registry_ActionHandler.yaml
- orphans/nodes_registry_ActionRegistry.yaml
- orphans/nodes_registry_ActionResult.yaml
- orphans/nodes_registry_ActionSchema.yaml
- orphans/nodes_router.yaml
- orphans/nodes_router_DecisionRouter.yaml
- orphans/nodes_schema_driven.yaml
- orphans/nodes_schema_driven_SchemaDrivenNLP2CMD.yaml
- orphans/nodes_schema_extraction_extractors.yaml
- orphans/nodes_schema_extraction_extractors_ExtractedSchema.yaml
- orphans/nodes_schema_extraction_extractors_OpenAPISchemaExtractor.yaml
- orphans/nodes_schema_extraction_extractors_ShellHelpExtractor.yaml
- orphans/nodes_schema_extraction_llm_extractor.yaml
- orphans/nodes_schema_extraction_llm_extractor_LLMSchemaExtractor.yaml
- orphans/nodes_schema_extraction_python_extractors.yaml
- orphans/nodes_schema_extraction_python_extractors_ClickExtractor.yaml
- orphans/nodes_schema_extraction_python_extractors_PythonCodeExtractor.yaml
- orphans/nodes_schema_extraction_registry.yaml
- orphans/nodes_schema_extraction_registry_SchemaRegistry.yaml
- orphans/nodes_schema_extraction_script_extractors.yaml
- orphans/nodes_schema_extraction_script_extractors_MakefileExtractor.yaml
- orphans/nodes_schema_extraction_script_extractors_ShellScriptExtractor.yaml
- orphans/nodes_schemas.yaml
- orphans/nodes_schemas_FileFormatSchema.yaml
- orphans/nodes_schemas_SchemaRegistry.yaml
- orphans/nodes_service.yaml
- orphans/nodes_service_NLP2CMDService.yaml
- orphans/nodes_service_ServiceConfig.yaml
- orphans/nodes_service_cli.yaml
- orphans/nodes_src_nlp2cmd_execution_refactored_executor.yaml
- orphans/nodes_src_nlp2cmd_execution_refactored_executor_ActionExecutor.yaml
- orphans/nodes_src_nlp2cmd_execution_refactored_executor_RefactoredPlanExecutor.yaml
- orphans/nodes_src_nlp2cmd_processing_framework.yaml
- orphans/nodes_src_nlp2cmd_processing_framework_AggregateProcessor.yaml
- orphans/nodes_src_nlp2cmd_processing_framework_BaseProcessor.yaml
- orphans/nodes_src_nlp2cmd_processing_framework_FilterProcessor.yaml
- orphans/nodes_src_nlp2cmd_processing_framework_MapProcessor.yaml
- orphans/nodes_src_nlp2cmd_processing_framework_ProcessingPipeline.yaml
- orphans/nodes_src_nlp2cmd_processing_framework_ReduceProcessor.yaml
- orphans/nodes_src_nlp2cmd_processing_framework_TransformProcessor.yaml
- orphans/nodes_src_nlp2cmd_validation_framework.yaml
- orphans/nodes_src_nlp2cmd_validation_framework_BaseValidator.yaml
- orphans/nodes_src_nlp2cmd_validation_framework_FormFieldValidator.yaml
- orphans/nodes_src_nlp2cmd_validation_framework_SafetyPolicyValidator.yaml
- orphans/nodes_src_nlp2cmd_validation_framework_ValidationFramework.yaml
- orphans/nodes_storage_per_command_store.yaml
- orphans/nodes_storage_per_command_store_PerCommandSchemaStore.yaml
- orphans/nodes_storage_versioned_store.yaml
- orphans/nodes_storage_versioned_store_VersionedSchemaStore.yaml
- orphans/nodes_streams_base.yaml
- orphans/nodes_streams_base_StreamAdapter.yaml
- orphans/nodes_streams_ftp_stream.yaml
- orphans/nodes_streams_ftp_stream_FTPStreamAdapter.yaml
- orphans/nodes_streams_http_stream.yaml
- orphans/nodes_streams_http_stream_HTTPStreamAdapter.yaml
- orphans/nodes_streams_libvirt_stream.yaml
- orphans/nodes_streams_libvirt_stream_LibvirtStreamAdapter.yaml
- orphans/nodes_streams_rdp_stream.yaml
- orphans/nodes_streams_rdp_stream_RDPStreamAdapter.yaml
- orphans/nodes_streams_router.yaml
- orphans/nodes_streams_router_StreamRouter.yaml
- orphans/nodes_streams_rtsp_stream.yaml
- orphans/nodes_streams_rtsp_stream_RTSPStreamAdapter.yaml
- orphans/nodes_streams_spice_stream.yaml
- orphans/nodes_streams_spice_stream_SPICEStreamAdapter.yaml
- orphans/nodes_streams_ssh_stream.yaml
- orphans/nodes_streams_ssh_stream_SSHStreamAdapter.yaml
- orphans/nodes_streams_vnc_stream.yaml
- orphans/nodes_streams_vnc_stream_VNCStreamAdapter.yaml
- orphans/nodes_streams_ws_stream.yaml
- orphans/nodes_streams_ws_stream_WSStreamAdapter.yaml
- orphans/nodes_thermodynamic.yaml
- orphans/nodes_thermodynamic_ConstraintEnergy.yaml
- orphans/nodes_thermodynamic_EnergyEstimator.yaml
- orphans/nodes_thermodynamic_EnergyModel.yaml
- orphans/nodes_thermodynamic_EntropyProductionRegularizer.yaml
- orphans/nodes_thermodynamic_LangevinSampler.yaml
- orphans/nodes_thermodynamic_MajorityVoter.yaml
- orphans/nodes_thermodynamic_QuadraticEnergy.yaml
- orphans/nodes_thermodynamic_ThermodynamicRouter.yaml
- orphans/nodes_thermodynamic__NumpyStub.yaml
- orphans/nodes_thermodynamic_energy_models.yaml
- orphans/nodes_thermodynamic_energy_models_AllocationEnergy.yaml
- orphans/nodes_thermodynamic_energy_models_CSPEnergy.yaml
- orphans/nodes_thermodynamic_energy_models_RoutingEnergy.yaml
- orphans/nodes_thermodynamic_energy_models_SchedulingEnergy.yaml
- orphans/nodes_utils_data_files.yaml
- orphans/nodes_utils_external_cache.yaml
- orphans/nodes_utils_external_cache_ExternalCacheManager.yaml
- orphans/nodes_utils_playwright_installer.yaml
- orphans/nodes_utils_yaml_compat.yaml
- orphans/nodes_utils_yaml_compat__Frame.yaml
- orphans/nodes_validators.yaml
- orphans/nodes_validators_BaseValidator.yaml
- orphans/nodes_validators_CompositeValidator.yaml
- orphans/nodes_validators_DockerValidator.yaml
- orphans/nodes_validators_KubernetesValidator.yaml
- orphans/nodes_validators_SQLValidator.yaml
- orphans/nodes_validators_ShellValidator.yaml
- orphans/nodes_validators_SyntaxValidator.yaml
- orphans/nodes_validators_ValidationResult.yaml
- orphans/nodes_web_schema_browser_config.yaml
- orphans/nodes_web_schema_browser_config_BrowserConfigLoader.yaml
- orphans/nodes_web_schema_browser_config_DynamicSelectorGenerator.yaml
- orphans/nodes_web_schema_extractor.yaml
- orphans/nodes_web_schema_extractor_WebElement.yaml
- orphans/nodes_web_schema_extractor_WebPageSchema.yaml
- orphans/nodes_web_schema_extractor_WebSchemaExtractor.yaml
- orphans/nodes_web_schema_form_data_loader.yaml
- orphans/nodes_web_schema_form_data_loader_FormDataLoader.yaml
- orphans/nodes_web_schema_form_handler.yaml
- orphans/nodes_web_schema_form_handler_FormField.yaml
- orphans/nodes_web_schema_form_handler_FormHandler.yaml
- orphans/nodes_web_schema_history.yaml
- orphans/nodes_web_schema_history_InteractionHistory.yaml
- orphans/nodes_web_schema_history_InteractionRecord.yaml
- orphans/nodes_web_schema_site_explorer.yaml
- orphans/nodes_web_schema_site_explorer_SiteExplorer.yaml
- orphans/summary.yaml
consolidated_files:
functions: 3375
nodes: 0
orphan_files:
functions: 274
nodes: 27378
total_nodes: 27378
total_functions: 3649
data_structures:
unique_types: 0
process_patterns: 0
optimization_potential: 0
llm_analysis:
total_queries: 10
total_insights: 2
successful_analyses: 1
optimization_results:
advanced_optimization:
communities_detected: 0
centrality_candidates: 0
type_clusters: 0
overall_score: 0
test_results:
success_rate: 100.0
total_tests: 5
passed_tests: 5
performance_improvements:
lines_of_code: 849
classes: 23
functions: 63
type_hints: 341
docstrings: 146
error_handling: 6
validation_improvement: 88.23529411764706
old_validation_time: 8.106231689453125e-06
new_validation_time: 9.5367431640625e-07
processing_improvement: 92.3076923076923
old_processing_time: 9.298324584960938e-06
new_processing_time: 7.152557373046875e-07
function_reduction_percent: 98.95968790637191
complexity_reduction_percent: 70.0
original_functions: 769
optimized_components: 8
visualization_tools:
tree_viewer:
file: output_hybrid/index.html
size: 72.9K
features:
- Interactive tree navigation
- Search filtering
- Category filtering
- Responsive design
nodes_displayed: 858
graph_viewer:
file: output_hybrid/graph_viewer.html
size: 261.5K
features:
- Interactive graph
- Zoom/pan
- Multiple layouts
- Node tooltips
- Export functionality
nodes_rendered: 591
edges_rendered: 851
refactoring_plan:
execution_summary:
success_rate: 100.0
total_actions: 15
implementation_phases:
complexity_reduction: 7.0
code_reduction: 5.0
performance_improvement: 6.0
estimated_impact:
complexity_reduction: 7.0
code_reduction: 5.0
performance_improvement: 6.0
implementation_timeline: 22 days for critical refactoring
impact_assessment:
code_base_analysis:
total_functions_analyzed: 3649
nodes_analyzed: 27378
files_processed: *id001
optimization_achievements:
function_reduction: 98.96%
complexity_reduction: 70%
performance_improvement: 89%
test_success_rate: 100%
refactoring_potential:
complexity_reduction: 7.0
code_reduction: 5.0
performance_improvement: 6.0
next_steps:
- priority: high
action: Implement Critical Refactoring
description: Execute 22-day refactoring plan for data hubs consolidation
estimated_impact: 25% complexity reduction
- priority: medium
action: Fix Analysis Functions
description: Debug remaining 9 analysis functions with map object errors
estimated_impact: Complete analysis coverage
- priority: medium
action: Expand Data Collection
description: Include more comprehensive data sources for deeper analysis
estimated_impact: Better insights and recommendations
- priority: low
action: Enhance Visualization
description: Add more interactive features and real-time updates
estimated_impact: Improved user experience