gitgalaxy 2.1.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.
Files changed (191) hide show
  1. gitgalaxy-2.2.1/.flake8 +3 -0
  2. gitgalaxy-2.2.1/CONTRIBUTING.md +75 -0
  3. {gitgalaxy-2.1.0 → gitgalaxy-2.2.1}/PKG-INFO +21 -5
  4. {gitgalaxy-2.1.0 → gitgalaxy-2.2.1}/README.md +20 -4
  5. gitgalaxy-2.2.1/cure_dead_ends.py +51 -0
  6. {gitgalaxy-2.1.0 → gitgalaxy-2.2.1}/gitgalaxy/README.md +6 -1
  7. {gitgalaxy-2.1.0 → gitgalaxy-2.2.1}/gitgalaxy/cobol_refractor_controller.py +144 -98
  8. {gitgalaxy-2.1.0 → gitgalaxy-2.2.1}/gitgalaxy/cobol_to_java_controller.py +104 -66
  9. {gitgalaxy-2.1.0 → gitgalaxy-2.2.1}/gitgalaxy/core/aperture.py +217 -164
  10. {gitgalaxy-2.1.0 → gitgalaxy-2.2.1}/gitgalaxy/core/detector.py +936 -561
  11. {gitgalaxy-2.1.0 → gitgalaxy-2.2.1}/gitgalaxy/core/guidestar_lens.py +167 -118
  12. {gitgalaxy-2.1.0 → gitgalaxy-2.2.1}/gitgalaxy/core/network_risk_sensor.py +101 -68
  13. {gitgalaxy-2.1.0 → gitgalaxy-2.2.1}/gitgalaxy/core/prism.py +210 -172
  14. {gitgalaxy-2.1.0 → gitgalaxy-2.2.1}/gitgalaxy/core/state_rehydrator.py +24 -21
  15. {gitgalaxy-2.1.0 → gitgalaxy-2.2.1}/gitgalaxy/galaxyscope.py +759 -526
  16. gitgalaxy-2.2.1/gitgalaxy/licensing.py +81 -0
  17. {gitgalaxy-2.1.0 → gitgalaxy-2.2.1}/gitgalaxy/physics/chronometer.py +160 -110
  18. {gitgalaxy-2.1.0 → gitgalaxy-2.2.1}/gitgalaxy/physics/neural_auditor.py +53 -37
  19. {gitgalaxy-2.1.0 → gitgalaxy-2.2.1}/gitgalaxy/physics/signal_processor.py +934 -463
  20. {gitgalaxy-2.1.0 → gitgalaxy-2.2.1}/gitgalaxy/physics/spectral_auditor.py +182 -123
  21. {gitgalaxy-2.1.0 → gitgalaxy-2.2.1}/gitgalaxy/recorders/audit_recorder.py +199 -127
  22. {gitgalaxy-2.1.0 → gitgalaxy-2.2.1}/gitgalaxy/recorders/gpu_recorder.py +135 -98
  23. {gitgalaxy-2.1.0 → gitgalaxy-2.2.1}/gitgalaxy/recorders/llm_recorder.py +747 -389
  24. {gitgalaxy-2.1.0 → gitgalaxy-2.2.1}/gitgalaxy/recorders/record_keeper.py +378 -172
  25. gitgalaxy-2.2.1/gitgalaxy/requirements.txt +142 -0
  26. {gitgalaxy-2.1.0 → gitgalaxy-2.2.1}/gitgalaxy/security/security_auditor.py +160 -84
  27. {gitgalaxy-2.1.0 → gitgalaxy-2.2.1}/gitgalaxy/security/security_lens.py +201 -175
  28. {gitgalaxy-2.1.0 → gitgalaxy-2.2.1}/gitgalaxy/standards/README.md +1 -1
  29. gitgalaxy-2.2.1/gitgalaxy/standards/analysis_lens.py +8322 -0
  30. {gitgalaxy-2.1.0 → gitgalaxy-2.2.1}/gitgalaxy/standards/gitgalaxy_config.py +317 -137
  31. {gitgalaxy-2.1.0 → gitgalaxy-2.2.1}/gitgalaxy/standards/how_to_add_a_language.md +29 -18
  32. {gitgalaxy-2.1.0 → gitgalaxy-2.2.1}/gitgalaxy/standards/language_lens.py +489 -307
  33. {gitgalaxy-2.1.0 → gitgalaxy-2.2.1}/gitgalaxy/standards/language_standards.py +1809 -2142
  34. {gitgalaxy-2.1.0 → gitgalaxy-2.2.1}/gitgalaxy/tools/ai_guardrails/ai_appsec_sensor.py +18 -17
  35. {gitgalaxy-2.1.0 → gitgalaxy-2.2.1}/gitgalaxy/tools/ai_guardrails/dev_agent_firewall.py +28 -18
  36. {gitgalaxy-2.1.0 → gitgalaxy-2.2.1}/gitgalaxy/tools/cobol_to_cobol/README.md +3 -2
  37. {gitgalaxy-2.1.0 → gitgalaxy-2.2.1}/gitgalaxy/tools/cobol_to_cobol/cobol_agent_task_forge.py +21 -19
  38. {gitgalaxy-2.1.0 → gitgalaxy-2.2.1}/gitgalaxy/tools/cobol_to_cobol/cobol_compiler_forge.py +103 -71
  39. {gitgalaxy-2.1.0 → gitgalaxy-2.2.1}/gitgalaxy/tools/cobol_to_cobol/cobol_dag_architect.py +36 -29
  40. {gitgalaxy-2.1.0 → gitgalaxy-2.2.1}/gitgalaxy/tools/cobol_to_cobol/cobol_etl_unpacker.py +73 -59
  41. {gitgalaxy-2.1.0 → gitgalaxy-2.2.1}/gitgalaxy/tools/cobol_to_cobol/cobol_graveyard_finder.py +64 -31
  42. {gitgalaxy-2.1.0 → gitgalaxy-2.2.1}/gitgalaxy/tools/cobol_to_cobol/cobol_jcl_auditor.py +68 -29
  43. {gitgalaxy-2.1.0 → gitgalaxy-2.2.1}/gitgalaxy/tools/cobol_to_cobol/cobol_jcl_forge.py +83 -59
  44. {gitgalaxy-2.1.0 → gitgalaxy-2.2.1}/gitgalaxy/tools/cobol_to_cobol/cobol_lexical_patcher.py +16 -19
  45. {gitgalaxy-2.1.0 → gitgalaxy-2.2.1}/gitgalaxy/tools/cobol_to_cobol/cobol_microservice_slicer.py +48 -35
  46. {gitgalaxy-2.1.0 → gitgalaxy-2.2.1}/gitgalaxy/tools/cobol_to_cobol/cobol_schema_forge.py +63 -46
  47. {gitgalaxy-2.1.0 → gitgalaxy-2.2.1}/gitgalaxy/tools/cobol_to_cobol/cobol_system_limits_reporter.py +21 -11
  48. {gitgalaxy-2.1.0 → gitgalaxy-2.2.1}/gitgalaxy/tools/cobol_to_java/README.md +4 -3
  49. {gitgalaxy-2.1.0 → gitgalaxy-2.2.1}/gitgalaxy/tools/cobol_to_java/batch_test_harness.py +49 -23
  50. {gitgalaxy-2.1.0 → gitgalaxy-2.2.1}/gitgalaxy/tools/cobol_to_java/cobol_to_java_agent_forge.py +8 -9
  51. {gitgalaxy-2.1.0 → gitgalaxy-2.2.1}/gitgalaxy/tools/cobol_to_java/cobol_to_java_api_contract_forge.py +44 -37
  52. {gitgalaxy-2.1.0 → gitgalaxy-2.2.1}/gitgalaxy/tools/cobol_to_java/cobol_to_java_build_forge.py +4 -1
  53. {gitgalaxy-2.1.0 → gitgalaxy-2.2.1}/gitgalaxy/tools/cobol_to_java/cobol_to_java_decoder_forge.py +2 -2
  54. {gitgalaxy-2.1.0 → gitgalaxy-2.2.1}/gitgalaxy/tools/cobol_to_java/cobol_to_java_service_forge.py +22 -15
  55. {gitgalaxy-2.1.0 → gitgalaxy-2.2.1}/gitgalaxy/tools/cobol_to_java/cobol_to_java_spring_forge.py +124 -76
  56. {gitgalaxy-2.1.0 → gitgalaxy-2.2.1}/gitgalaxy/tools/cobol_to_java/cobol_to_java_test_forge.py +21 -13
  57. {gitgalaxy-2.1.0 → gitgalaxy-2.2.1}/gitgalaxy/tools/compliance/sbom_generator.py +131 -92
  58. {gitgalaxy-2.1.0 → gitgalaxy-2.2.1}/gitgalaxy/tools/network_auditing/full_api_network_map.py +94 -47
  59. {gitgalaxy-2.1.0 → gitgalaxy-2.2.1}/gitgalaxy/tools/supply_chain_security/binary_anomaly_detector.py +92 -63
  60. {gitgalaxy-2.1.0 → gitgalaxy-2.2.1}/gitgalaxy/tools/supply_chain_security/supply_chain_firewall.py +96 -49
  61. {gitgalaxy-2.1.0 → gitgalaxy-2.2.1}/gitgalaxy/tools/supply_chain_security/vault_sentinel.py +42 -31
  62. {gitgalaxy-2.1.0 → gitgalaxy-2.2.1}/gitgalaxy/tools/terabyte_log_scanning/pii_leak_hunter.py +65 -36
  63. {gitgalaxy-2.1.0 → gitgalaxy-2.2.1}/gitgalaxy/tools/terabyte_log_scanning/terabyte_log_scanner.py +58 -40
  64. {gitgalaxy-2.1.0 → gitgalaxy-2.2.1}/gitgalaxy.egg-info/PKG-INFO +21 -5
  65. {gitgalaxy-2.1.0 → gitgalaxy-2.2.1}/gitgalaxy.egg-info/SOURCES.txt +60 -18
  66. {gitgalaxy-2.1.0 → gitgalaxy-2.2.1}/mkdocs.yml +9 -2
  67. {gitgalaxy-2.1.0 → gitgalaxy-2.2.1}/pyproject.toml +11 -0
  68. gitgalaxy-2.2.1/tests/README.md +48 -0
  69. gitgalaxy-2.2.1/tests/cobol_mainframe/readme.md +72 -0
  70. gitgalaxy-2.2.1/tests/cobol_mainframe/test_cobol_agent_task_forge.py +114 -0
  71. gitgalaxy-2.2.1/tests/cobol_mainframe/test_cobol_compiler_forge.py +107 -0
  72. gitgalaxy-2.2.1/tests/cobol_mainframe/test_cobol_dag_architect.py +146 -0
  73. gitgalaxy-2.2.1/tests/cobol_mainframe/test_cobol_etl_unpacker.py +146 -0
  74. gitgalaxy-2.2.1/tests/cobol_mainframe/test_cobol_graveyard_finder.py +120 -0
  75. gitgalaxy-2.2.1/tests/cobol_mainframe/test_cobol_jcl_auditor.py +122 -0
  76. gitgalaxy-2.2.1/tests/cobol_mainframe/test_cobol_jcl_forge.py +130 -0
  77. gitgalaxy-2.2.1/tests/cobol_mainframe/test_cobol_lexical_patcher.py +91 -0
  78. gitgalaxy-2.2.1/tests/cobol_mainframe/test_cobol_microservice_slicer.py +121 -0
  79. gitgalaxy-2.2.1/tests/cobol_mainframe/test_cobol_refractor_controller.py +250 -0
  80. gitgalaxy-2.2.1/tests/cobol_mainframe/test_cobol_schema_forge.py +121 -0
  81. gitgalaxy-2.2.1/tests/cobol_mainframe/test_cobol_system_limits_reporter.py +108 -0
  82. gitgalaxy-2.2.1/tests/core_engine/readme.md +40 -0
  83. gitgalaxy-2.2.1/tests/core_engine/test_aperture.py +333 -0
  84. gitgalaxy-2.2.1/tests/core_engine/test_chronometer.py +161 -0
  85. {gitgalaxy-2.1.0/tests → gitgalaxy-2.2.1/tests/core_engine}/test_chronometer_timeout.py +29 -20
  86. gitgalaxy-2.2.1/tests/core_engine/test_detector.py +705 -0
  87. {gitgalaxy-2.1.0/tests → gitgalaxy-2.2.1/tests/core_engine}/test_galaxyscope.py +16 -8
  88. gitgalaxy-2.2.1/tests/core_engine/test_guidestar_lens.py +138 -0
  89. gitgalaxy-2.2.1/tests/core_engine/test_language_lens.py +335 -0
  90. gitgalaxy-2.2.1/tests/core_engine/test_language_standards_strict.py +233 -0
  91. gitgalaxy-2.2.1/tests/core_engine/test_prism.py +287 -0
  92. gitgalaxy-2.2.1/tests/core_engine/test_signal_processor.py +381 -0
  93. gitgalaxy-2.2.1/tests/core_engine/test_state_rehydrator.py +123 -0
  94. {gitgalaxy-2.1.0/tests → gitgalaxy-2.2.1/tests/core_engine}/test_zero_dependency.py +53 -36
  95. gitgalaxy-2.2.1/tests/extraction/readme.md +76 -0
  96. gitgalaxy-2.2.1/tests/extraction/test_args_extraction_strict.py +349 -0
  97. gitgalaxy-2.2.1/tests/extraction/test_class_extraction_strict.py +364 -0
  98. gitgalaxy-2.2.1/tests/extraction/test_dependency_extraction_strict.py +438 -0
  99. gitgalaxy-2.2.1/tests/extraction/test_function_extraction_strict.py +540 -0
  100. gitgalaxy-2.2.1/tests/fixtures/iwubi_frankenstein_test/config.py +1 -0
  101. {gitgalaxy-2.1.0 → gitgalaxy-2.2.1}/tests/fixtures/iwubi_frankenstein_test/insert_pinyin_to_db.py +8 -7
  102. {gitgalaxy-2.1.0 → gitgalaxy-2.2.1}/tests/fixtures/iwubi_frankenstein_test/iwubi.py +96 -59
  103. gitgalaxy-2.2.1/tests/fixtures/iwubi_frankenstein_test/logconfig.py +39 -0
  104. gitgalaxy-2.2.1/tests/security_auditing/readme.md +39 -0
  105. gitgalaxy-2.2.1/tests/security_auditing/test_ai_appsec_sensor.py +117 -0
  106. gitgalaxy-2.2.1/tests/security_auditing/test_api_network_map.py +289 -0
  107. gitgalaxy-2.2.1/tests/security_auditing/test_binary_anomaly_detector.py +259 -0
  108. gitgalaxy-2.2.1/tests/security_auditing/test_dev_agent_firewall.py +146 -0
  109. gitgalaxy-2.2.1/tests/security_auditing/test_network_risk_sensor.py +158 -0
  110. gitgalaxy-2.2.1/tests/security_auditing/test_neural_auditor.py +123 -0
  111. gitgalaxy-2.2.1/tests/security_auditing/test_pii_leak_hunter.py +80 -0
  112. gitgalaxy-2.2.1/tests/security_auditing/test_redos_poison.py +116 -0
  113. gitgalaxy-2.2.1/tests/security_auditing/test_sbom_generator.py +255 -0
  114. gitgalaxy-2.2.1/tests/security_auditing/test_security_auditor.py +168 -0
  115. gitgalaxy-2.2.1/tests/security_auditing/test_security_lens.py +210 -0
  116. gitgalaxy-2.2.1/tests/security_auditing/test_spectral_auditor.py +162 -0
  117. {gitgalaxy-2.1.0/tests → gitgalaxy-2.2.1/tests/security_auditing}/test_supply_chain_firewall.py +26 -19
  118. gitgalaxy-2.2.1/tests/security_auditing/test_terabyte_log_scanner.py +134 -0
  119. {gitgalaxy-2.1.0/tests → gitgalaxy-2.2.1/tests/security_auditing}/test_vault_sentinel.py +23 -16
  120. gitgalaxy-2.2.1/tests/tools_recorders/readme.md +34 -0
  121. {gitgalaxy-2.1.0/tests → gitgalaxy-2.2.1/tests/tools_recorders}/test_agent_forge.py +29 -20
  122. {gitgalaxy-2.1.0/tests → gitgalaxy-2.2.1/tests/tools_recorders}/test_batch_test_harness.py +24 -20
  123. {gitgalaxy-2.1.0/tests → gitgalaxy-2.2.1/tests/tools_recorders}/test_decoder_forge.py +9 -5
  124. {gitgalaxy-2.1.0/tests → gitgalaxy-2.2.1/tests/tools_recorders}/test_golden_forge.py +23 -15
  125. {gitgalaxy-2.1.0/tests → gitgalaxy-2.2.1/tests/tools_recorders}/test_gpu_recorder.py +34 -19
  126. {gitgalaxy-2.1.0/tests → gitgalaxy-2.2.1/tests/tools_recorders}/test_service_forge.py +11 -9
  127. gitgalaxy-2.1.0/CONTRIBUTING.md +0 -63
  128. gitgalaxy-2.1.0/gitgalaxy/standards/analysis_lens.py +0 -1125
  129. gitgalaxy-2.1.0/tests/fixtures/iwubi_frankenstein_test/config.py +0 -1
  130. gitgalaxy-2.1.0/tests/fixtures/iwubi_frankenstein_test/logconfig.py +0 -30
  131. gitgalaxy-2.1.0/tests/test_api_network_map.py +0 -80
  132. gitgalaxy-2.1.0/tests/test_binary_anomaly_detector.py +0 -102
  133. gitgalaxy-2.1.0/tests/test_language_lens.py +0 -48
  134. gitgalaxy-2.1.0/tests/test_neural_auditor.py +0 -60
  135. gitgalaxy-2.1.0/tests/test_redos_poison.py +0 -74
  136. gitgalaxy-2.1.0/tests/test_sbom_generator.py +0 -101
  137. {gitgalaxy-2.1.0 → gitgalaxy-2.2.1}/.github/ISSUE_TEMPLATE/parsing_discrepancy.yml +0 -0
  138. {gitgalaxy-2.1.0 → gitgalaxy-2.2.1}/.github/dependabot.yml +0 -0
  139. {gitgalaxy-2.1.0 → gitgalaxy-2.2.1}/.github/pull_request_template.md +0 -0
  140. {gitgalaxy-2.1.0 → gitgalaxy-2.2.1}/.github/workflows/codeql.yml +0 -0
  141. {gitgalaxy-2.1.0 → gitgalaxy-2.2.1}/.github/workflows/deploy-docs.yml +0 -0
  142. {gitgalaxy-2.1.0 → gitgalaxy-2.2.1}/.github/workflows/publish.yml +0 -0
  143. {gitgalaxy-2.1.0 → gitgalaxy-2.2.1}/.github/workflows/smoke-test.yml +0 -0
  144. {gitgalaxy-2.1.0 → gitgalaxy-2.2.1}/.gitignore +0 -0
  145. {gitgalaxy-2.1.0 → gitgalaxy-2.2.1}/LICENSE +0 -0
  146. {gitgalaxy-2.1.0 → gitgalaxy-2.2.1}/MANIFEST.in +0 -0
  147. {gitgalaxy-2.1.0 → gitgalaxy-2.2.1}/action.yml +0 -0
  148. {gitgalaxy-2.1.0 → gitgalaxy-2.2.1}/gitgalaxy/__init__.py +0 -0
  149. {gitgalaxy-2.1.0 → gitgalaxy-2.2.1}/gitgalaxy/core/README.md +0 -0
  150. {gitgalaxy-2.1.0 → gitgalaxy-2.2.1}/gitgalaxy/core/__init__.py +0 -0
  151. {gitgalaxy-2.1.0 → gitgalaxy-2.2.1}/gitgalaxy/physics/README.md +0 -0
  152. {gitgalaxy-2.1.0 → gitgalaxy-2.2.1}/gitgalaxy/physics/__init__.py +0 -0
  153. {gitgalaxy-2.1.0 → gitgalaxy-2.2.1}/gitgalaxy/recorders/README.md +0 -0
  154. {gitgalaxy-2.1.0 → gitgalaxy-2.2.1}/gitgalaxy/recorders/__init__.py +0 -0
  155. {gitgalaxy-2.1.0 → gitgalaxy-2.2.1}/gitgalaxy/security/README.md +0 -0
  156. {gitgalaxy-2.1.0 → gitgalaxy-2.2.1}/gitgalaxy/security/__init__.py +0 -0
  157. {gitgalaxy-2.1.0 → gitgalaxy-2.2.1}/gitgalaxy/standards/__init__.py +0 -0
  158. {gitgalaxy-2.1.0 → gitgalaxy-2.2.1}/gitgalaxy/tools/README.md +0 -0
  159. {gitgalaxy-2.1.0 → gitgalaxy-2.2.1}/gitgalaxy/tools/__init__.py +0 -0
  160. {gitgalaxy-2.1.0 → gitgalaxy-2.2.1}/gitgalaxy/tools/ai_guardrails/README.md +0 -0
  161. {gitgalaxy-2.1.0 → gitgalaxy-2.2.1}/gitgalaxy/tools/compliance/README.md +0 -0
  162. {gitgalaxy-2.1.0 → gitgalaxy-2.2.1}/gitgalaxy/tools/network_auditing/README.md +0 -0
  163. {gitgalaxy-2.1.0 → gitgalaxy-2.2.1}/gitgalaxy/tools/supply_chain_security/README.md +0 -0
  164. {gitgalaxy-2.1.0 → gitgalaxy-2.2.1}/gitgalaxy/tools/terabyte_log_scanning/README.md +0 -0
  165. {gitgalaxy-2.1.0 → gitgalaxy-2.2.1}/gitgalaxy.egg-info/dependency_links.txt +0 -0
  166. {gitgalaxy-2.1.0 → gitgalaxy-2.2.1}/gitgalaxy.egg-info/entry_points.txt +0 -0
  167. {gitgalaxy-2.1.0 → gitgalaxy-2.2.1}/gitgalaxy.egg-info/top_level.txt +0 -0
  168. {gitgalaxy-2.1.0 → gitgalaxy-2.2.1}/setup.cfg +0 -0
  169. {gitgalaxy-2.1.0 → gitgalaxy-2.2.1}/tests/fixtures/iwubi_frankenstein_test/.gitattributes +0 -0
  170. {gitgalaxy-2.1.0 → gitgalaxy-2.2.1}/tests/fixtures/iwubi_frankenstein_test/.gitignore +0 -0
  171. {gitgalaxy-2.1.0 → gitgalaxy-2.2.1}/tests/fixtures/iwubi_frankenstein_test/LICENSE +0 -0
  172. {gitgalaxy-2.1.0 → gitgalaxy-2.2.1}/tests/fixtures/iwubi_frankenstein_test/Makefile +0 -0
  173. {gitgalaxy-2.1.0 → gitgalaxy-2.2.1}/tests/fixtures/iwubi_frankenstein_test/README.md +0 -0
  174. {gitgalaxy-2.1.0 → gitgalaxy-2.2.1}/tests/fixtures/iwubi_frankenstein_test/bufio/bufio.go +0 -0
  175. {gitgalaxy-2.1.0 → gitgalaxy-2.2.1}/tests/fixtures/iwubi_frankenstein_test/bufio/bufio_test.go +0 -0
  176. {gitgalaxy-2.1.0 → gitgalaxy-2.2.1}/tests/fixtures/iwubi_frankenstein_test/bufio/example_test.go +0 -0
  177. {gitgalaxy-2.1.0 → gitgalaxy-2.2.1}/tests/fixtures/iwubi_frankenstein_test/bufio/export_test.go +0 -0
  178. {gitgalaxy-2.1.0 → gitgalaxy-2.2.1}/tests/fixtures/iwubi_frankenstein_test/bufio/net_test.go +0 -0
  179. {gitgalaxy-2.1.0 → gitgalaxy-2.2.1}/tests/fixtures/iwubi_frankenstein_test/bufio/scan.go +0 -0
  180. {gitgalaxy-2.1.0 → gitgalaxy-2.2.1}/tests/fixtures/iwubi_frankenstein_test/bufio/scan_test.go +0 -0
  181. {gitgalaxy-2.1.0 → gitgalaxy-2.2.1}/tests/fixtures/iwubi_frankenstein_test/convert_em.F +0 -0
  182. {gitgalaxy-2.1.0 → gitgalaxy-2.2.1}/tests/fixtures/iwubi_frankenstein_test/dnn_converters.cpp +0 -0
  183. {gitgalaxy-2.1.0 → gitgalaxy-2.2.1}/tests/fixtures/iwubi_frankenstein_test/dnn_converters.hpp +0 -0
  184. {gitgalaxy-2.1.0 → gitgalaxy-2.2.1}/tests/fixtures/iwubi_frankenstein_test/iwubi.svg +0 -0
  185. {gitgalaxy-2.1.0 → gitgalaxy-2.2.1}/tests/fixtures/iwubi_frankenstein_test/iwubi.xml +0 -0
  186. {gitgalaxy-2.1.0 → gitgalaxy-2.2.1}/tests/fixtures/iwubi_frankenstein_test/logconfig.yaml +0 -0
  187. {gitgalaxy-2.1.0 → gitgalaxy-2.2.1}/tests/fixtures/iwubi_frankenstein_test/pinyin_simp.dict.csv +0 -0
  188. {gitgalaxy-2.1.0 → gitgalaxy-2.2.1}/tests/fixtures/iwubi_frankenstein_test/screenshot/add.png +0 -0
  189. {gitgalaxy-2.1.0 → gitgalaxy-2.2.1}/tests/fixtures/iwubi_frankenstein_test/screenshot/iwubi.gif +0 -0
  190. {gitgalaxy-2.1.0 → gitgalaxy-2.2.1}/tests/fixtures/iwubi_frankenstein_test/screenshot/set_ibus.png +0 -0
  191. {gitgalaxy-2.1.0 → gitgalaxy-2.2.1}/tests/fixtures/iwubi_frankenstein_test/wubi-jidian86.db +0 -0
@@ -0,0 +1,3 @@
1
+ [flake8]
2
+ max-line-length = 120
3
+ extend-ignore = E203, W503, E501, E741, W291, W293, F401, F841
@@ -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.1.0
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
  [![Zero Dependencies](https://img.shields.io/badge/Dependencies-0-brightgreen.svg)](https://pypi.org/project/gitgalaxy/)
39
39
  [![Airgap Ready](https://img.shields.io/badge/Security-Airgap_Ready-teal.svg)](#)
40
+ [![Downloads](https://static.pepy.tech/badge/gitgalaxy)](https://pepy.tech/project/gitgalaxy)
41
+ [![GitHub stars](https://img.shields.io/github/stars/squid-protocol/gitgalaxy?style=social)](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-to-function call chains.
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
- ## License & Copyright
203
+ ## ⚖️ Licensing & Usage
200
204
 
201
205
  Copyright (c) 2026 Joe Esquibel
202
206
 
203
- GitGalaxy is released under the PolyForm Noncommercial License 1.0.0. It is completely free for personal use, research, experiment, testing, and hobby projects. Use by educational or charitable organizations is also permitted.
207
+ GitGalaxy is distributed under the **PolyForm Noncommercial License 1.0.0**.
204
208
 
205
- Any commercial use or integration into commercial SaaS products or corporate CI/CD pipelines requires a separate commercial license. Please reach out via gitgalaxy.io to discuss commercial integration.
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
  [![Zero Dependencies](https://img.shields.io/badge/Dependencies-0-brightgreen.svg)](https://pypi.org/project/gitgalaxy/)
16
16
  [![Airgap Ready](https://img.shields.io/badge/Security-Airgap_Ready-teal.svg)](#)
17
+ [![Downloads](https://static.pepy.tech/badge/gitgalaxy)](https://pepy.tech/project/gitgalaxy)
18
+ [![GitHub stars](https://img.shields.io/github/stars/squid-protocol/gitgalaxy?style=social)](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-to-function call chains.
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
- ## License & Copyright
180
+ ## ⚖️ Licensing & Usage
177
181
 
178
182
  Copyright (c) 2026 Joe Esquibel
179
183
 
180
- GitGalaxy is released under the PolyForm Noncommercial License 1.0.0. It is completely free for personal use, research, experiment, testing, and hobby projects. Use by educational or charitable organizations is also permitted.
184
+ GitGalaxy is distributed under the **PolyForm Noncommercial License 1.0.0**.
181
185
 
182
- Any commercial use or integration into commercial SaaS products or corporate CI/CD pipelines requires a separate commercial license. Please reach out via gitgalaxy.io to discuss commercial integration.
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
- Once installed, 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.
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
  ```