gitgalaxy 2.2.0__tar.gz → 2.2.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- gitgalaxy-2.2.1/.flake8 +3 -0
- gitgalaxy-2.2.1/CONTRIBUTING.md +75 -0
- {gitgalaxy-2.2.0 → gitgalaxy-2.2.1}/PKG-INFO +21 -5
- {gitgalaxy-2.2.0 → gitgalaxy-2.2.1}/README.md +20 -4
- gitgalaxy-2.2.1/cure_dead_ends.py +51 -0
- {gitgalaxy-2.2.0 → gitgalaxy-2.2.1}/gitgalaxy/README.md +6 -1
- {gitgalaxy-2.2.0 → gitgalaxy-2.2.1}/gitgalaxy/cobol_refractor_controller.py +144 -98
- {gitgalaxy-2.2.0 → gitgalaxy-2.2.1}/gitgalaxy/cobol_to_java_controller.py +104 -66
- {gitgalaxy-2.2.0 → gitgalaxy-2.2.1}/gitgalaxy/core/aperture.py +198 -142
- {gitgalaxy-2.2.0 → gitgalaxy-2.2.1}/gitgalaxy/core/detector.py +931 -561
- {gitgalaxy-2.2.0 → gitgalaxy-2.2.1}/gitgalaxy/core/guidestar_lens.py +167 -118
- {gitgalaxy-2.2.0 → gitgalaxy-2.2.1}/gitgalaxy/core/network_risk_sensor.py +91 -65
- {gitgalaxy-2.2.0 → gitgalaxy-2.2.1}/gitgalaxy/core/prism.py +210 -172
- {gitgalaxy-2.2.0 → gitgalaxy-2.2.1}/gitgalaxy/core/state_rehydrator.py +24 -21
- {gitgalaxy-2.2.0 → gitgalaxy-2.2.1}/gitgalaxy/galaxyscope.py +757 -524
- gitgalaxy-2.2.1/gitgalaxy/licensing.py +81 -0
- {gitgalaxy-2.2.0 → gitgalaxy-2.2.1}/gitgalaxy/physics/chronometer.py +160 -110
- {gitgalaxy-2.2.0 → gitgalaxy-2.2.1}/gitgalaxy/physics/neural_auditor.py +53 -37
- {gitgalaxy-2.2.0 → gitgalaxy-2.2.1}/gitgalaxy/physics/signal_processor.py +934 -463
- {gitgalaxy-2.2.0 → gitgalaxy-2.2.1}/gitgalaxy/physics/spectral_auditor.py +182 -123
- {gitgalaxy-2.2.0 → gitgalaxy-2.2.1}/gitgalaxy/recorders/audit_recorder.py +199 -127
- {gitgalaxy-2.2.0 → gitgalaxy-2.2.1}/gitgalaxy/recorders/gpu_recorder.py +135 -98
- {gitgalaxy-2.2.0 → gitgalaxy-2.2.1}/gitgalaxy/recorders/llm_recorder.py +708 -364
- {gitgalaxy-2.2.0 → gitgalaxy-2.2.1}/gitgalaxy/recorders/record_keeper.py +365 -163
- gitgalaxy-2.2.1/gitgalaxy/requirements.txt +142 -0
- {gitgalaxy-2.2.0 → gitgalaxy-2.2.1}/gitgalaxy/security/security_auditor.py +109 -75
- {gitgalaxy-2.2.0 → gitgalaxy-2.2.1}/gitgalaxy/security/security_lens.py +160 -125
- {gitgalaxy-2.2.0 → gitgalaxy-2.2.1}/gitgalaxy/standards/README.md +1 -1
- gitgalaxy-2.2.1/gitgalaxy/standards/analysis_lens.py +8322 -0
- {gitgalaxy-2.2.0 → gitgalaxy-2.2.1}/gitgalaxy/standards/gitgalaxy_config.py +317 -137
- {gitgalaxy-2.2.0 → gitgalaxy-2.2.1}/gitgalaxy/standards/how_to_add_a_language.md +29 -18
- {gitgalaxy-2.2.0 → gitgalaxy-2.2.1}/gitgalaxy/standards/language_lens.py +489 -307
- {gitgalaxy-2.2.0 → gitgalaxy-2.2.1}/gitgalaxy/standards/language_standards.py +1420 -2169
- {gitgalaxy-2.2.0 → gitgalaxy-2.2.1}/gitgalaxy/tools/ai_guardrails/ai_appsec_sensor.py +18 -17
- {gitgalaxy-2.2.0 → gitgalaxy-2.2.1}/gitgalaxy/tools/ai_guardrails/dev_agent_firewall.py +28 -18
- {gitgalaxy-2.2.0 → gitgalaxy-2.2.1}/gitgalaxy/tools/cobol_to_cobol/cobol_agent_task_forge.py +21 -19
- {gitgalaxy-2.2.0 → gitgalaxy-2.2.1}/gitgalaxy/tools/cobol_to_cobol/cobol_compiler_forge.py +97 -76
- {gitgalaxy-2.2.0 → gitgalaxy-2.2.1}/gitgalaxy/tools/cobol_to_cobol/cobol_dag_architect.py +36 -29
- {gitgalaxy-2.2.0 → gitgalaxy-2.2.1}/gitgalaxy/tools/cobol_to_cobol/cobol_etl_unpacker.py +73 -59
- {gitgalaxy-2.2.0 → gitgalaxy-2.2.1}/gitgalaxy/tools/cobol_to_cobol/cobol_graveyard_finder.py +63 -30
- {gitgalaxy-2.2.0 → gitgalaxy-2.2.1}/gitgalaxy/tools/cobol_to_cobol/cobol_jcl_auditor.py +68 -29
- {gitgalaxy-2.2.0 → gitgalaxy-2.2.1}/gitgalaxy/tools/cobol_to_cobol/cobol_jcl_forge.py +83 -59
- {gitgalaxy-2.2.0 → gitgalaxy-2.2.1}/gitgalaxy/tools/cobol_to_cobol/cobol_lexical_patcher.py +16 -19
- {gitgalaxy-2.2.0 → gitgalaxy-2.2.1}/gitgalaxy/tools/cobol_to_cobol/cobol_microservice_slicer.py +46 -34
- {gitgalaxy-2.2.0 → gitgalaxy-2.2.1}/gitgalaxy/tools/cobol_to_cobol/cobol_schema_forge.py +63 -47
- {gitgalaxy-2.2.0 → gitgalaxy-2.2.1}/gitgalaxy/tools/cobol_to_cobol/cobol_system_limits_reporter.py +21 -11
- {gitgalaxy-2.2.0 → gitgalaxy-2.2.1}/gitgalaxy/tools/cobol_to_java/README.md +4 -3
- {gitgalaxy-2.2.0 → gitgalaxy-2.2.1}/gitgalaxy/tools/cobol_to_java/batch_test_harness.py +49 -23
- {gitgalaxy-2.2.0 → gitgalaxy-2.2.1}/gitgalaxy/tools/cobol_to_java/cobol_to_java_agent_forge.py +8 -9
- {gitgalaxy-2.2.0 → gitgalaxy-2.2.1}/gitgalaxy/tools/cobol_to_java/cobol_to_java_api_contract_forge.py +44 -37
- {gitgalaxy-2.2.0 → gitgalaxy-2.2.1}/gitgalaxy/tools/cobol_to_java/cobol_to_java_build_forge.py +4 -1
- {gitgalaxy-2.2.0 → gitgalaxy-2.2.1}/gitgalaxy/tools/cobol_to_java/cobol_to_java_decoder_forge.py +2 -2
- {gitgalaxy-2.2.0 → gitgalaxy-2.2.1}/gitgalaxy/tools/cobol_to_java/cobol_to_java_service_forge.py +22 -15
- {gitgalaxy-2.2.0 → gitgalaxy-2.2.1}/gitgalaxy/tools/cobol_to_java/cobol_to_java_spring_forge.py +124 -76
- {gitgalaxy-2.2.0 → gitgalaxy-2.2.1}/gitgalaxy/tools/cobol_to_java/cobol_to_java_test_forge.py +21 -13
- {gitgalaxy-2.2.0 → gitgalaxy-2.2.1}/gitgalaxy/tools/compliance/sbom_generator.py +131 -92
- {gitgalaxy-2.2.0 → gitgalaxy-2.2.1}/gitgalaxy/tools/network_auditing/full_api_network_map.py +94 -47
- {gitgalaxy-2.2.0 → gitgalaxy-2.2.1}/gitgalaxy/tools/supply_chain_security/binary_anomaly_detector.py +92 -63
- {gitgalaxy-2.2.0 → gitgalaxy-2.2.1}/gitgalaxy/tools/supply_chain_security/supply_chain_firewall.py +96 -49
- {gitgalaxy-2.2.0 → gitgalaxy-2.2.1}/gitgalaxy/tools/supply_chain_security/vault_sentinel.py +42 -31
- {gitgalaxy-2.2.0 → gitgalaxy-2.2.1}/gitgalaxy/tools/terabyte_log_scanning/pii_leak_hunter.py +65 -36
- {gitgalaxy-2.2.0 → gitgalaxy-2.2.1}/gitgalaxy/tools/terabyte_log_scanning/terabyte_log_scanner.py +58 -40
- {gitgalaxy-2.2.0 → gitgalaxy-2.2.1}/gitgalaxy.egg-info/PKG-INFO +21 -5
- {gitgalaxy-2.2.0 → gitgalaxy-2.2.1}/gitgalaxy.egg-info/SOURCES.txt +7 -0
- {gitgalaxy-2.2.0 → gitgalaxy-2.2.1}/pyproject.toml +11 -0
- gitgalaxy-2.2.1/tests/README.md +48 -0
- {gitgalaxy-2.2.0 → gitgalaxy-2.2.1}/tests/cobol_mainframe/readme.md +2 -0
- {gitgalaxy-2.2.0 → gitgalaxy-2.2.1}/tests/cobol_mainframe/test_cobol_agent_task_forge.py +30 -33
- {gitgalaxy-2.2.0 → gitgalaxy-2.2.1}/tests/cobol_mainframe/test_cobol_compiler_forge.py +24 -21
- {gitgalaxy-2.2.0 → gitgalaxy-2.2.1}/tests/cobol_mainframe/test_cobol_dag_architect.py +37 -29
- {gitgalaxy-2.2.0 → gitgalaxy-2.2.1}/tests/cobol_mainframe/test_cobol_etl_unpacker.py +60 -46
- {gitgalaxy-2.2.0 → gitgalaxy-2.2.1}/tests/cobol_mainframe/test_cobol_graveyard_finder.py +30 -27
- {gitgalaxy-2.2.0 → gitgalaxy-2.2.1}/tests/cobol_mainframe/test_cobol_jcl_auditor.py +33 -34
- {gitgalaxy-2.2.0 → gitgalaxy-2.2.1}/tests/cobol_mainframe/test_cobol_jcl_forge.py +28 -25
- {gitgalaxy-2.2.0 → gitgalaxy-2.2.1}/tests/cobol_mainframe/test_cobol_lexical_patcher.py +20 -16
- {gitgalaxy-2.2.0 → gitgalaxy-2.2.1}/tests/cobol_mainframe/test_cobol_microservice_slicer.py +34 -24
- gitgalaxy-2.2.1/tests/cobol_mainframe/test_cobol_refractor_controller.py +250 -0
- {gitgalaxy-2.2.0 → gitgalaxy-2.2.1}/tests/cobol_mainframe/test_cobol_schema_forge.py +55 -22
- {gitgalaxy-2.2.0 → gitgalaxy-2.2.1}/tests/cobol_mainframe/test_cobol_system_limits_reporter.py +23 -20
- gitgalaxy-2.2.1/tests/core_engine/readme.md +40 -0
- gitgalaxy-2.2.1/tests/core_engine/test_aperture.py +333 -0
- gitgalaxy-2.2.1/tests/core_engine/test_chronometer.py +161 -0
- {gitgalaxy-2.2.0 → gitgalaxy-2.2.1}/tests/core_engine/test_chronometer_timeout.py +29 -20
- gitgalaxy-2.2.1/tests/core_engine/test_detector.py +705 -0
- {gitgalaxy-2.2.0 → gitgalaxy-2.2.1}/tests/core_engine/test_galaxyscope.py +15 -7
- {gitgalaxy-2.2.0 → gitgalaxy-2.2.1}/tests/core_engine/test_guidestar_lens.py +37 -33
- gitgalaxy-2.2.1/tests/core_engine/test_language_lens.py +335 -0
- {gitgalaxy-2.2.0 → gitgalaxy-2.2.1}/tests/core_engine/test_language_standards_strict.py +72 -30
- gitgalaxy-2.2.1/tests/core_engine/test_prism.py +287 -0
- gitgalaxy-2.2.1/tests/core_engine/test_signal_processor.py +381 -0
- {gitgalaxy-2.2.0 → gitgalaxy-2.2.1}/tests/core_engine/test_state_rehydrator.py +12 -8
- {gitgalaxy-2.2.0 → gitgalaxy-2.2.1}/tests/core_engine/test_zero_dependency.py +53 -36
- gitgalaxy-2.2.1/tests/extraction/readme.md +76 -0
- {gitgalaxy-2.2.0 → gitgalaxy-2.2.1}/tests/extraction/test_args_extraction_strict.py +130 -70
- {gitgalaxy-2.2.0 → gitgalaxy-2.2.1}/tests/extraction/test_class_extraction_strict.py +147 -112
- {gitgalaxy-2.2.0 → gitgalaxy-2.2.1}/tests/extraction/test_dependency_extraction_strict.py +165 -189
- {gitgalaxy-2.2.0 → gitgalaxy-2.2.1}/tests/extraction/test_function_extraction_strict.py +201 -133
- gitgalaxy-2.2.1/tests/fixtures/iwubi_frankenstein_test/config.py +1 -0
- {gitgalaxy-2.2.0 → gitgalaxy-2.2.1}/tests/fixtures/iwubi_frankenstein_test/insert_pinyin_to_db.py +8 -7
- {gitgalaxy-2.2.0 → gitgalaxy-2.2.1}/tests/fixtures/iwubi_frankenstein_test/iwubi.py +96 -59
- gitgalaxy-2.2.1/tests/fixtures/iwubi_frankenstein_test/logconfig.py +39 -0
- gitgalaxy-2.2.1/tests/security_auditing/readme.md +39 -0
- {gitgalaxy-2.2.0 → gitgalaxy-2.2.1}/tests/security_auditing/test_ai_appsec_sensor.py +56 -44
- gitgalaxy-2.2.1/tests/security_auditing/test_api_network_map.py +289 -0
- gitgalaxy-2.2.1/tests/security_auditing/test_binary_anomaly_detector.py +259 -0
- {gitgalaxy-2.2.0 → gitgalaxy-2.2.1}/tests/security_auditing/test_dev_agent_firewall.py +68 -59
- {gitgalaxy-2.2.0 → gitgalaxy-2.2.1}/tests/security_auditing/test_network_risk_sensor.py +34 -24
- {gitgalaxy-2.2.0 → gitgalaxy-2.2.1}/tests/security_auditing/test_neural_auditor.py +43 -27
- {gitgalaxy-2.2.0 → gitgalaxy-2.2.1}/tests/security_auditing/test_pii_leak_hunter.py +17 -15
- {gitgalaxy-2.2.0 → gitgalaxy-2.2.1}/tests/security_auditing/test_redos_poison.py +28 -25
- gitgalaxy-2.2.1/tests/security_auditing/test_sbom_generator.py +255 -0
- gitgalaxy-2.2.1/tests/security_auditing/test_security_auditor.py +168 -0
- gitgalaxy-2.2.1/tests/security_auditing/test_security_lens.py +210 -0
- {gitgalaxy-2.2.0 → gitgalaxy-2.2.1}/tests/security_auditing/test_spectral_auditor.py +51 -36
- {gitgalaxy-2.2.0 → gitgalaxy-2.2.1}/tests/security_auditing/test_supply_chain_firewall.py +26 -19
- {gitgalaxy-2.2.0 → gitgalaxy-2.2.1}/tests/security_auditing/test_terabyte_log_scanner.py +41 -34
- {gitgalaxy-2.2.0 → gitgalaxy-2.2.1}/tests/security_auditing/test_vault_sentinel.py +23 -16
- gitgalaxy-2.2.1/tests/tools_recorders/readme.md +34 -0
- {gitgalaxy-2.2.0 → gitgalaxy-2.2.1}/tests/tools_recorders/test_agent_forge.py +29 -20
- {gitgalaxy-2.2.0 → gitgalaxy-2.2.1}/tests/tools_recorders/test_batch_test_harness.py +24 -20
- {gitgalaxy-2.2.0 → gitgalaxy-2.2.1}/tests/tools_recorders/test_decoder_forge.py +9 -5
- {gitgalaxy-2.2.0 → gitgalaxy-2.2.1}/tests/tools_recorders/test_golden_forge.py +23 -15
- {gitgalaxy-2.2.0 → gitgalaxy-2.2.1}/tests/tools_recorders/test_gpu_recorder.py +34 -19
- {gitgalaxy-2.2.0 → gitgalaxy-2.2.1}/tests/tools_recorders/test_service_forge.py +11 -9
- gitgalaxy-2.2.0/CONTRIBUTING.md +0 -63
- gitgalaxy-2.2.0/gitgalaxy/standards/analysis_lens.py +0 -1125
- gitgalaxy-2.2.0/tests/README.md +0 -94
- gitgalaxy-2.2.0/tests/cobol_mainframe/test_cobol_refractor_controller.py +0 -88
- gitgalaxy-2.2.0/tests/core_engine/readme.md +0 -76
- gitgalaxy-2.2.0/tests/core_engine/test_aperture.py +0 -165
- gitgalaxy-2.2.0/tests/core_engine/test_detector.py +0 -161
- gitgalaxy-2.2.0/tests/core_engine/test_language_lens.py +0 -48
- gitgalaxy-2.2.0/tests/core_engine/test_prism.py +0 -165
- gitgalaxy-2.2.0/tests/core_engine/test_signal_processor.py +0 -161
- gitgalaxy-2.2.0/tests/extraction/readme.md +0 -72
- gitgalaxy-2.2.0/tests/fixtures/iwubi_frankenstein_test/config.py +0 -1
- gitgalaxy-2.2.0/tests/fixtures/iwubi_frankenstein_test/logconfig.py +0 -30
- gitgalaxy-2.2.0/tests/security_auditing/readme.md +0 -45
- gitgalaxy-2.2.0/tests/security_auditing/test_api_network_map.py +0 -80
- gitgalaxy-2.2.0/tests/security_auditing/test_binary_anomaly_detector.py +0 -102
- gitgalaxy-2.2.0/tests/security_auditing/test_sbom_generator.py +0 -101
- gitgalaxy-2.2.0/tests/tools_recorders/readme.md +0 -36
- {gitgalaxy-2.2.0 → gitgalaxy-2.2.1}/.github/ISSUE_TEMPLATE/parsing_discrepancy.yml +0 -0
- {gitgalaxy-2.2.0 → gitgalaxy-2.2.1}/.github/dependabot.yml +0 -0
- {gitgalaxy-2.2.0 → gitgalaxy-2.2.1}/.github/pull_request_template.md +0 -0
- {gitgalaxy-2.2.0 → gitgalaxy-2.2.1}/.github/workflows/codeql.yml +0 -0
- {gitgalaxy-2.2.0 → gitgalaxy-2.2.1}/.github/workflows/deploy-docs.yml +0 -0
- {gitgalaxy-2.2.0 → gitgalaxy-2.2.1}/.github/workflows/publish.yml +0 -0
- {gitgalaxy-2.2.0 → gitgalaxy-2.2.1}/.github/workflows/smoke-test.yml +0 -0
- {gitgalaxy-2.2.0 → gitgalaxy-2.2.1}/.gitignore +0 -0
- {gitgalaxy-2.2.0 → gitgalaxy-2.2.1}/LICENSE +0 -0
- {gitgalaxy-2.2.0 → gitgalaxy-2.2.1}/MANIFEST.in +0 -0
- {gitgalaxy-2.2.0 → gitgalaxy-2.2.1}/action.yml +0 -0
- {gitgalaxy-2.2.0 → gitgalaxy-2.2.1}/gitgalaxy/__init__.py +0 -0
- {gitgalaxy-2.2.0 → gitgalaxy-2.2.1}/gitgalaxy/core/README.md +0 -0
- {gitgalaxy-2.2.0 → gitgalaxy-2.2.1}/gitgalaxy/core/__init__.py +0 -0
- {gitgalaxy-2.2.0 → gitgalaxy-2.2.1}/gitgalaxy/physics/README.md +0 -0
- {gitgalaxy-2.2.0 → gitgalaxy-2.2.1}/gitgalaxy/physics/__init__.py +0 -0
- {gitgalaxy-2.2.0 → gitgalaxy-2.2.1}/gitgalaxy/recorders/README.md +0 -0
- {gitgalaxy-2.2.0 → gitgalaxy-2.2.1}/gitgalaxy/recorders/__init__.py +0 -0
- {gitgalaxy-2.2.0 → gitgalaxy-2.2.1}/gitgalaxy/security/README.md +0 -0
- {gitgalaxy-2.2.0 → gitgalaxy-2.2.1}/gitgalaxy/security/__init__.py +0 -0
- {gitgalaxy-2.2.0 → gitgalaxy-2.2.1}/gitgalaxy/standards/__init__.py +0 -0
- {gitgalaxy-2.2.0 → gitgalaxy-2.2.1}/gitgalaxy/tools/README.md +0 -0
- {gitgalaxy-2.2.0 → gitgalaxy-2.2.1}/gitgalaxy/tools/__init__.py +0 -0
- {gitgalaxy-2.2.0 → gitgalaxy-2.2.1}/gitgalaxy/tools/ai_guardrails/README.md +0 -0
- {gitgalaxy-2.2.0 → gitgalaxy-2.2.1}/gitgalaxy/tools/cobol_to_cobol/README.md +0 -0
- {gitgalaxy-2.2.0 → gitgalaxy-2.2.1}/gitgalaxy/tools/compliance/README.md +0 -0
- {gitgalaxy-2.2.0 → gitgalaxy-2.2.1}/gitgalaxy/tools/network_auditing/README.md +0 -0
- {gitgalaxy-2.2.0 → gitgalaxy-2.2.1}/gitgalaxy/tools/supply_chain_security/README.md +0 -0
- {gitgalaxy-2.2.0 → gitgalaxy-2.2.1}/gitgalaxy/tools/terabyte_log_scanning/README.md +0 -0
- {gitgalaxy-2.2.0 → gitgalaxy-2.2.1}/gitgalaxy.egg-info/dependency_links.txt +0 -0
- {gitgalaxy-2.2.0 → gitgalaxy-2.2.1}/gitgalaxy.egg-info/entry_points.txt +0 -0
- {gitgalaxy-2.2.0 → gitgalaxy-2.2.1}/gitgalaxy.egg-info/top_level.txt +0 -0
- {gitgalaxy-2.2.0 → gitgalaxy-2.2.1}/mkdocs.yml +0 -0
- {gitgalaxy-2.2.0 → gitgalaxy-2.2.1}/setup.cfg +0 -0
- {gitgalaxy-2.2.0 → gitgalaxy-2.2.1}/tests/fixtures/iwubi_frankenstein_test/.gitattributes +0 -0
- {gitgalaxy-2.2.0 → gitgalaxy-2.2.1}/tests/fixtures/iwubi_frankenstein_test/.gitignore +0 -0
- {gitgalaxy-2.2.0 → gitgalaxy-2.2.1}/tests/fixtures/iwubi_frankenstein_test/LICENSE +0 -0
- {gitgalaxy-2.2.0 → gitgalaxy-2.2.1}/tests/fixtures/iwubi_frankenstein_test/Makefile +0 -0
- {gitgalaxy-2.2.0 → gitgalaxy-2.2.1}/tests/fixtures/iwubi_frankenstein_test/README.md +0 -0
- {gitgalaxy-2.2.0 → gitgalaxy-2.2.1}/tests/fixtures/iwubi_frankenstein_test/bufio/bufio.go +0 -0
- {gitgalaxy-2.2.0 → gitgalaxy-2.2.1}/tests/fixtures/iwubi_frankenstein_test/bufio/bufio_test.go +0 -0
- {gitgalaxy-2.2.0 → gitgalaxy-2.2.1}/tests/fixtures/iwubi_frankenstein_test/bufio/example_test.go +0 -0
- {gitgalaxy-2.2.0 → gitgalaxy-2.2.1}/tests/fixtures/iwubi_frankenstein_test/bufio/export_test.go +0 -0
- {gitgalaxy-2.2.0 → gitgalaxy-2.2.1}/tests/fixtures/iwubi_frankenstein_test/bufio/net_test.go +0 -0
- {gitgalaxy-2.2.0 → gitgalaxy-2.2.1}/tests/fixtures/iwubi_frankenstein_test/bufio/scan.go +0 -0
- {gitgalaxy-2.2.0 → gitgalaxy-2.2.1}/tests/fixtures/iwubi_frankenstein_test/bufio/scan_test.go +0 -0
- {gitgalaxy-2.2.0 → gitgalaxy-2.2.1}/tests/fixtures/iwubi_frankenstein_test/convert_em.F +0 -0
- {gitgalaxy-2.2.0 → gitgalaxy-2.2.1}/tests/fixtures/iwubi_frankenstein_test/dnn_converters.cpp +0 -0
- {gitgalaxy-2.2.0 → gitgalaxy-2.2.1}/tests/fixtures/iwubi_frankenstein_test/dnn_converters.hpp +0 -0
- {gitgalaxy-2.2.0 → gitgalaxy-2.2.1}/tests/fixtures/iwubi_frankenstein_test/iwubi.svg +0 -0
- {gitgalaxy-2.2.0 → gitgalaxy-2.2.1}/tests/fixtures/iwubi_frankenstein_test/iwubi.xml +0 -0
- {gitgalaxy-2.2.0 → gitgalaxy-2.2.1}/tests/fixtures/iwubi_frankenstein_test/logconfig.yaml +0 -0
- {gitgalaxy-2.2.0 → gitgalaxy-2.2.1}/tests/fixtures/iwubi_frankenstein_test/pinyin_simp.dict.csv +0 -0
- {gitgalaxy-2.2.0 → gitgalaxy-2.2.1}/tests/fixtures/iwubi_frankenstein_test/screenshot/add.png +0 -0
- {gitgalaxy-2.2.0 → gitgalaxy-2.2.1}/tests/fixtures/iwubi_frankenstein_test/screenshot/iwubi.gif +0 -0
- {gitgalaxy-2.2.0 → gitgalaxy-2.2.1}/tests/fixtures/iwubi_frankenstein_test/screenshot/set_ibus.png +0 -0
- {gitgalaxy-2.2.0 → gitgalaxy-2.2.1}/tests/fixtures/iwubi_frankenstein_test/wubi-jidian86.db +0 -0
gitgalaxy-2.2.1/.flake8
ADDED
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
# 🤝 Contributing to GitGalaxy
|
|
2
|
+
|
|
3
|
+
First off, thank you for considering contributing to GitGalaxy! The blAST engine is a highly calibrated, deterministic mathematical instrument. Calibrating it across the vast ecosystem of open-source software requires a dedicated community of systems engineers.
|
|
4
|
+
|
|
5
|
+
Whether you are reporting a taxonomic discrepancy, refining the parsing engine, or expanding the documentation, your input helps map the architectural physics of software more accurately.
|
|
6
|
+
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
## ⚙️ The blAST Philosophy (Physics over ASTs)
|
|
10
|
+
|
|
11
|
+
Before diving in, please remember that GitGalaxy treats code as a physical structure governed by thermodynamic laws. The blAST engine evaluates structural logic, algorithmic complexity, and calculated **risk exposures**—not just rigid syntax.
|
|
12
|
+
|
|
13
|
+
Sometimes, what appears to be a traditional parsing error might actually be the blAST engine intentionally flagging a structural anomaly or a dense risk exposure. Please keep this in mind when reporting issues or proposing changes to the extraction heuristics.
|
|
14
|
+
|
|
15
|
+
---
|
|
16
|
+
|
|
17
|
+
## 🌐 Expanding the blAST Engine (Adding Languages)
|
|
18
|
+
|
|
19
|
+
GitGalaxy uses an AST-free, mathematical heuristics engine to build a comparative lexical taxonomical map across all programming languages. We do not write traditional parsers; we map thermodynamic language physics using bounded regular expressions.
|
|
20
|
+
|
|
21
|
+
If you want to add native support for a new language (e.g., Lua, Haskell, or a proprietary DSL), do not start writing regex from scratch. We use a strict LLM-driven calibration protocol to guarantee ReDoS immunity.
|
|
22
|
+
|
|
23
|
+
**Please read the strict engine calibration guide here:** **[Architecting a New Language (Extending the blAST Engine)](gitgalaxy/standards/how_to_add_a_language.md)**
|
|
24
|
+
|
|
25
|
+
---
|
|
26
|
+
|
|
27
|
+
## 🔬 The Differential Scan (Our PR Protocol)
|
|
28
|
+
|
|
29
|
+
We do not merge structural backend changes based solely on subjective code review. GitGalaxy operates at planetary scale, and every change to the parsing logic has cascading effects.
|
|
30
|
+
|
|
31
|
+
When you submit a Pull Request that alters the blAST engine, your candidate changes will be subjected to a **Full Differential Scan**.
|
|
32
|
+
|
|
33
|
+
* **The Control + Variable Test:** We run your branch against our calibrated baseline of ~80 massive open-source repositories, **plus** the specific repository your PR is designed to address.
|
|
34
|
+
* **Before and After:** We perform a strict mathematical comparison of the engine's output before and after your rule update across this entire dataset. This ensures your addition resolves the target discrepancy without degrading the established baseline or triggering Catastrophic Backtracking (ReDoS).
|
|
35
|
+
* **The Metrics:** The output is assessed strictly on four vectors: **Accuracy, Speed, Utility, and Ethos.**
|
|
36
|
+
* Only changes that are mathematically and practically *measurably better* across the broader ecosystem will be incorporated into the `main` branch.
|
|
37
|
+
|
|
38
|
+
---
|
|
39
|
+
|
|
40
|
+
## 🛠️ Submitting Pull Requests
|
|
41
|
+
|
|
42
|
+
To ensure your contribution integrates smoothly into the Zero-Trust ecosystem:
|
|
43
|
+
|
|
44
|
+
1. **Fork and Branch:** Create a feature branch from `main` (`git checkout -b feature/your-feature-name`).
|
|
45
|
+
2. **Maintain the Contract:** Ensure that any backend changes to the CLI do not break the universal JSON schema contract expected by the frontend Observatory.
|
|
46
|
+
3. **Test Visually:** Run your newly generated `_galaxy.json` through either **[GitGalaxy.io](https://gitgalaxy.io)** or your local **Airgap Observatory** to verify that 3D WebGPU rendering and visual physics constraints remain intact.
|
|
47
|
+
4. **Document:** If you are adding new language phenotypes or altering the parsing logic, please update the [Language Lens](docs/wiki/02-05-language-lens.md) documentation in the wiki.
|
|
48
|
+
5. **Submit:** Open a PR with a clear title. Explain the *why* behind your structural changes, not just the *what*. Be sure to include the link to the target repository so we can include it in the Differential Scan.
|
|
49
|
+
|
|
50
|
+
---
|
|
51
|
+
|
|
52
|
+
## 🐛 Reporting Discrepancies
|
|
53
|
+
|
|
54
|
+
If the GalaxyScope CLI misidentifies a repository's structure or fails to parse a specific file phenotype, please use our **[Parsing Discrepancy Form](https://github.com/squid-protocol/gitgalaxy/issues/new/choose)**.
|
|
55
|
+
|
|
56
|
+
To help us reproduce the issue with quantitative precision, you will be asked to provide:
|
|
57
|
+
* A direct link to the public repository being scanned.
|
|
58
|
+
* The Observatory viewer you were using ([GitGalaxy.io](https://gitgalaxy.io) or Airgap Observatory).
|
|
59
|
+
* A clear description of the expected vs. actual output.
|
|
60
|
+
* The contents of your custom `gitgalaxy_config.py` file (if applicable).
|
|
61
|
+
* Contact information for follow-up questions.
|
|
62
|
+
|
|
63
|
+
---
|
|
64
|
+
|
|
65
|
+
## 🛡️ Security Vulnerabilities
|
|
66
|
+
|
|
67
|
+
If you discover a vulnerability within GitGalaxy itself (e.g., a way to bypass the local sandbox, a ReDoS vector, or an issue in the Airgap Observatory), **do not open a public issue.** Please reach out directly via the contact portal at [GitGalaxy.io](https://gitgalaxy.io) so the vulnerability can be patched securely before public disclosure.
|
|
68
|
+
|
|
69
|
+
---
|
|
70
|
+
|
|
71
|
+
## 📜 Licensing Reminder
|
|
72
|
+
|
|
73
|
+
GitGalaxy is released under the **PolyForm Noncommercial License 1.0.0**. By contributing to this repository, you agree that your contributions will be licensed under these same terms.
|
|
74
|
+
|
|
75
|
+
*Note: This tool is free for research, education, testing, and hobby projects. Any commercial use or integration into commercial SaaS products or corporate CI/CD pipelines requires a separate commercial license.*
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: gitgalaxy
|
|
3
|
-
Version: 2.2.
|
|
3
|
+
Version: 2.2.1
|
|
4
4
|
Summary: An AST-free, LLM-free zero-trust static analysis engine for mapping architectural risk, securing CI/CD pipelines, and modernizing legacy monoliths.
|
|
5
5
|
Author: Joe Esquibel
|
|
6
6
|
Project-URL: Homepage, https://gitgalaxy.io
|
|
@@ -37,6 +37,8 @@ Dynamic: license-file
|
|
|
37
37
|
|
|
38
38
|
[](https://pypi.org/project/gitgalaxy/)
|
|
39
39
|
[](#)
|
|
40
|
+
[](https://pepy.tech/project/gitgalaxy)
|
|
41
|
+
[](https://github.com/squid-protocol/gitgalaxy/stargazers)
|
|
40
42
|
|
|
41
43
|
### **AST-Free Static Analysis & Knowledge Graph Engine**
|
|
42
44
|
|
|
@@ -55,13 +57,15 @@ Every assumption our system makes has been abstracted into over 300 tunable vari
|
|
|
55
57
|
**Core Codebase Mapping Technology**
|
|
56
58
|
* Bypasses LLMs and rigid ASTs.
|
|
57
59
|
* Doesn't require code to compile (AST-free).
|
|
58
|
-
* Produces full function
|
|
60
|
+
* Produces full network mapping via imports with generlized function calls per file.
|
|
59
61
|
* Deterministically maps code by 60+ keyword regex profiles (Structural markers, I/O intents, state mutations).
|
|
60
62
|
* Regex keyword profiles allow us to classify functions, files, classes, folders and repos.
|
|
61
63
|
* Eliminates LLM architectural hallucinations and context window limits.
|
|
62
64
|
* Scans 50+ languages, 250+ extensions, fully folder-aware. **([How to add a language in 1 minute and 1 prompt](gitgalaxy/standards/HOW_TO_ADD_LANGUAGE.md))**
|
|
63
65
|
|
|
64
66
|
**Enterprise Scale & Performance Metrics**
|
|
67
|
+
* **Active Pipeline Integration:** Over 11,000 PyPI downloads, driven heavily by automated CI/CD security sweeps and zero-trust DevSecOps workflows.
|
|
68
|
+
* **Production Tested:** Backed by an active early-adopter community on GitHub driving real-world issue resolution, architectural forks, and continuous engine hardening.
|
|
65
69
|
* 100,000 LOC/sec code analysis.
|
|
66
70
|
* 0.07 GB/sec raw log ingestion.
|
|
67
71
|
* Full-system scans in minutes without data sampling.
|
|
@@ -196,10 +200,22 @@ Your code never leaves your machine. GitGalaxy performs 100% of its scanning and
|
|
|
196
200
|
* **Ephemeral Memory Processing:** Repositories are unpacked into a volatile memory buffer (RAM) and are automatically purged when the browser tab is closed.
|
|
197
201
|
* **Privacy-by-Design:** Even when using the web-based viewer, the data remains behind the user's firewall at all times.
|
|
198
202
|
|
|
199
|
-
##
|
|
203
|
+
## ⚖️ Licensing & Usage
|
|
200
204
|
|
|
201
205
|
Copyright (c) 2026 Joe Esquibel
|
|
202
206
|
|
|
203
|
-
GitGalaxy is
|
|
207
|
+
GitGalaxy is distributed under the **PolyForm Noncommercial License 1.0.0**.
|
|
204
208
|
|
|
205
|
-
|
|
209
|
+
### 🎓 Community Free Tier (Academic, Research, & Hobbyist)
|
|
210
|
+
We are deeply committed to the open-source and academic communities. If you are using GitGalaxy for personal projects, academic research, or non-commercial development, the engine is 100% free to use.
|
|
211
|
+
|
|
212
|
+
To suppress the commercial licensing delays in your terminal or personal CI/CD pipelines, simply set the following environment variable:
|
|
213
|
+
|
|
214
|
+
```bash
|
|
215
|
+
export GITGALAXY_LICENSE_KEY="COMMUNITY_FREE_TIER"
|
|
216
|
+
```
|
|
217
|
+
|
|
218
|
+
### 🏢 Commercial & Enterprise Use
|
|
219
|
+
Running GitGalaxy in corporate environments, proprietary codebases, or commercial CI/CD pipelines requires an enterprise license. Unlicensed corporate pipelines will experience intentional execution friction, and attempting to use the Community Free Tier key in a corporate environment will trigger explicit non-compliance warnings in your audit logs.
|
|
220
|
+
|
|
221
|
+
To acquire a zero-trust commercial key for your organization and ensure clean compliance logs, please contact: **joe@gitgalaxy.io**
|
|
@@ -14,6 +14,8 @@
|
|
|
14
14
|
|
|
15
15
|
[](https://pypi.org/project/gitgalaxy/)
|
|
16
16
|
[](#)
|
|
17
|
+
[](https://pepy.tech/project/gitgalaxy)
|
|
18
|
+
[](https://github.com/squid-protocol/gitgalaxy/stargazers)
|
|
17
19
|
|
|
18
20
|
### **AST-Free Static Analysis & Knowledge Graph Engine**
|
|
19
21
|
|
|
@@ -32,13 +34,15 @@ Every assumption our system makes has been abstracted into over 300 tunable vari
|
|
|
32
34
|
**Core Codebase Mapping Technology**
|
|
33
35
|
* Bypasses LLMs and rigid ASTs.
|
|
34
36
|
* Doesn't require code to compile (AST-free).
|
|
35
|
-
* Produces full function
|
|
37
|
+
* Produces full network mapping via imports with generlized function calls per file.
|
|
36
38
|
* Deterministically maps code by 60+ keyword regex profiles (Structural markers, I/O intents, state mutations).
|
|
37
39
|
* Regex keyword profiles allow us to classify functions, files, classes, folders and repos.
|
|
38
40
|
* Eliminates LLM architectural hallucinations and context window limits.
|
|
39
41
|
* Scans 50+ languages, 250+ extensions, fully folder-aware. **([How to add a language in 1 minute and 1 prompt](gitgalaxy/standards/HOW_TO_ADD_LANGUAGE.md))**
|
|
40
42
|
|
|
41
43
|
**Enterprise Scale & Performance Metrics**
|
|
44
|
+
* **Active Pipeline Integration:** Over 11,000 PyPI downloads, driven heavily by automated CI/CD security sweeps and zero-trust DevSecOps workflows.
|
|
45
|
+
* **Production Tested:** Backed by an active early-adopter community on GitHub driving real-world issue resolution, architectural forks, and continuous engine hardening.
|
|
42
46
|
* 100,000 LOC/sec code analysis.
|
|
43
47
|
* 0.07 GB/sec raw log ingestion.
|
|
44
48
|
* Full-system scans in minutes without data sampling.
|
|
@@ -173,10 +177,22 @@ Your code never leaves your machine. GitGalaxy performs 100% of its scanning and
|
|
|
173
177
|
* **Ephemeral Memory Processing:** Repositories are unpacked into a volatile memory buffer (RAM) and are automatically purged when the browser tab is closed.
|
|
174
178
|
* **Privacy-by-Design:** Even when using the web-based viewer, the data remains behind the user's firewall at all times.
|
|
175
179
|
|
|
176
|
-
##
|
|
180
|
+
## ⚖️ Licensing & Usage
|
|
177
181
|
|
|
178
182
|
Copyright (c) 2026 Joe Esquibel
|
|
179
183
|
|
|
180
|
-
GitGalaxy is
|
|
184
|
+
GitGalaxy is distributed under the **PolyForm Noncommercial License 1.0.0**.
|
|
181
185
|
|
|
182
|
-
|
|
186
|
+
### 🎓 Community Free Tier (Academic, Research, & Hobbyist)
|
|
187
|
+
We are deeply committed to the open-source and academic communities. If you are using GitGalaxy for personal projects, academic research, or non-commercial development, the engine is 100% free to use.
|
|
188
|
+
|
|
189
|
+
To suppress the commercial licensing delays in your terminal or personal CI/CD pipelines, simply set the following environment variable:
|
|
190
|
+
|
|
191
|
+
```bash
|
|
192
|
+
export GITGALAXY_LICENSE_KEY="COMMUNITY_FREE_TIER"
|
|
193
|
+
```
|
|
194
|
+
|
|
195
|
+
### 🏢 Commercial & Enterprise Use
|
|
196
|
+
Running GitGalaxy in corporate environments, proprietary codebases, or commercial CI/CD pipelines requires an enterprise license. Unlicensed corporate pipelines will experience intentional execution friction, and attempting to use the Community Free Tier key in a corporate environment will trigger explicit non-compliance warnings in your audit logs.
|
|
197
|
+
|
|
198
|
+
To acquire a zero-trust commercial key for your organization and ensure clean compliance logs, please contact: **joe@gitgalaxy.io**
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import os
|
|
2
|
+
from pathlib import Path
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
def cure_dead_ends(wiki_dir="docs/wiki"):
|
|
6
|
+
"""
|
|
7
|
+
Sweeps the wiki directory and appends a 'Back to Master Index' footer
|
|
8
|
+
to every markdown file, calculating the correct relative path.
|
|
9
|
+
"""
|
|
10
|
+
wiki_root = Path(wiki_dir).resolve()
|
|
11
|
+
|
|
12
|
+
if not wiki_root.exists():
|
|
13
|
+
print(f"❌ Error: Could not find directory {wiki_dir}")
|
|
14
|
+
return
|
|
15
|
+
|
|
16
|
+
md_files = list(wiki_root.rglob("*.md"))
|
|
17
|
+
cured_count = 0
|
|
18
|
+
|
|
19
|
+
print(f"🩺 Scanning {len(md_files)} wiki files for Dead Ends...")
|
|
20
|
+
|
|
21
|
+
for file_path in md_files:
|
|
22
|
+
# We don't want the index linking to itself
|
|
23
|
+
if file_path.name.lower() == "index.md":
|
|
24
|
+
continue
|
|
25
|
+
|
|
26
|
+
# Calculate how many directories up we need to go to hit the root index.md
|
|
27
|
+
rel_to_root = os.path.relpath(wiki_root, file_path.parent)
|
|
28
|
+
index_path = Path(rel_to_root) / "index.md"
|
|
29
|
+
|
|
30
|
+
# Format the relative path safely for web/markdown
|
|
31
|
+
clean_index_path = index_path.as_posix()
|
|
32
|
+
|
|
33
|
+
footer = f"\n\n---\n\n**[⬅️ Back to Master Index]({clean_index_path})**\n"
|
|
34
|
+
|
|
35
|
+
try:
|
|
36
|
+
content = file_path.read_text(encoding="utf-8")
|
|
37
|
+
|
|
38
|
+
# Prevent double-injection if you run the script twice
|
|
39
|
+
if "[⬅️ Back to Master Index]" not in content:
|
|
40
|
+
with open(file_path, "a", encoding="utf-8") as f:
|
|
41
|
+
f.write(footer)
|
|
42
|
+
cured_count += 1
|
|
43
|
+
|
|
44
|
+
except Exception as e:
|
|
45
|
+
print(f"⚠️ Failed to patch {file_path.name}: {e}")
|
|
46
|
+
|
|
47
|
+
print(f"✅ Success! Cured {cured_count} dead ends.")
|
|
48
|
+
|
|
49
|
+
|
|
50
|
+
if __name__ == "__main__":
|
|
51
|
+
cure_dead_ends()
|
|
@@ -52,7 +52,12 @@ From the **root directory** of the repository, run:
|
|
|
52
52
|
pip install -e .
|
|
53
53
|
```
|
|
54
54
|
|
|
55
|
-
|
|
55
|
+
**Important:** GitGalaxy contains an embedded commercial licensing guardrail. To prevent a 5-second execution delay while testing your code locally, you must export the Community Free Tier key into your development environment before running the orchestrator:
|
|
56
|
+
```bash
|
|
57
|
+
export GITGALAXY_LICENSE_KEY="COMMUNITY_FREE_TIER"
|
|
58
|
+
```
|
|
59
|
+
|
|
60
|
+
Once installed and the key is set, you can trigger the main orchestrator globally from your terminal. This command runs the full [Data Pipeline](https://squid-protocol.github.io/gitgalaxy/02-01-pipeline-overview/) and outputs the final artifact.
|
|
56
61
|
```bash
|
|
57
62
|
galaxyscope /path/to/test/repo --debug
|
|
58
63
|
```
|