commitguardian 0.1.0__py3-none-any.whl

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 (197) hide show
  1. commitguard/__init__.py +26 -0
  2. commitguard/__main__.py +6 -0
  3. commitguard/api/__init__.py +18 -0
  4. commitguard/api/app.py +1376 -0
  5. commitguard/api/governance.py +1085 -0
  6. commitguard/api/hosting.py +196 -0
  7. commitguard/api/http.py +252 -0
  8. commitguard/api/settings.py +169 -0
  9. commitguard/audit/__init__.py +13 -0
  10. commitguard/audit/logger.py +34 -0
  11. commitguard/audit/models.py +222 -0
  12. commitguard/audit/storage.py +59 -0
  13. commitguard/ci/__init__.py +7 -0
  14. commitguard/ci/context.py +60 -0
  15. commitguard/cli/__init__.py +6 -0
  16. commitguard/cli/app.py +74 -0
  17. commitguard/cli/commands/__init__.py +1 -0
  18. commitguard/cli/commands/benchmark.py +441 -0
  19. commitguard/cli/commands/check.py +100 -0
  20. commitguard/cli/commands/ci.py +165 -0
  21. commitguard/cli/commands/dashboard.py +141 -0
  22. commitguard/cli/commands/doctor.py +533 -0
  23. commitguard/cli/commands/github.py +449 -0
  24. commitguard/cli/commands/hook.py +156 -0
  25. commitguard/cli/commands/init.py +137 -0
  26. commitguard/cli/commands/install.py +152 -0
  27. commitguard/cli/commands/policy.py +36 -0
  28. commitguard/cli/commands/report.py +39 -0
  29. commitguard/cli/commands/reproduce.py +123 -0
  30. commitguard/cli/commands/scan.py +47 -0
  31. commitguard/cli/common.py +44 -0
  32. commitguard/cli/output.py +89 -0
  33. commitguard/cli/render.py +367 -0
  34. commitguard/config/__init__.py +6 -0
  35. commitguard/config/defaults.py +53 -0
  36. commitguard/config/enforcement.py +53 -0
  37. commitguard/config/loader.py +174 -0
  38. commitguard/config/schema.py +105 -0
  39. commitguard/config/sources.py +183 -0
  40. commitguard/controlplane/__init__.py +24 -0
  41. commitguard/controlplane/access.py +231 -0
  42. commitguard/controlplane/commands.py +393 -0
  43. commitguard/controlplane/errors.py +88 -0
  44. commitguard/controlplane/identity.py +478 -0
  45. commitguard/controlplane/members.py +219 -0
  46. commitguard/controlplane/notifications.py +787 -0
  47. commitguard/controlplane/pagination.py +146 -0
  48. commitguard/controlplane/policies.py +1204 -0
  49. commitguard/controlplane/queries.py +1814 -0
  50. commitguard/controlplane/results.py +909 -0
  51. commitguard/controlplane/rules.py +184 -0
  52. commitguard/controlplane/views.py +799 -0
  53. commitguard/core/__init__.py +6 -0
  54. commitguard/core/context.py +31 -0
  55. commitguard/core/decision.py +58 -0
  56. commitguard/core/engine.py +82 -0
  57. commitguard/core/result.py +177 -0
  58. commitguard/detectors/__init__.py +6 -0
  59. commitguard/detectors/base.py +58 -0
  60. commitguard/detectors/bot.py +87 -0
  61. commitguard/detectors/coauthor.py +86 -0
  62. commitguard/detectors/identity.py +76 -0
  63. commitguard/detectors/registry.py +72 -0
  64. commitguard/detectors/trailer.py +211 -0
  65. commitguard/exceptions/__init__.py +33 -0
  66. commitguard/exceptions/base.py +9 -0
  67. commitguard/exceptions/configuration.py +22 -0
  68. commitguard/exceptions/detection.py +11 -0
  69. commitguard/exceptions/git.py +41 -0
  70. commitguard/exceptions/service.py +25 -0
  71. commitguard/git/__init__.py +12 -0
  72. commitguard/git/commands.py +101 -0
  73. commitguard/git/commit.py +97 -0
  74. commitguard/git/diff.py +36 -0
  75. commitguard/git/hooks.py +527 -0
  76. commitguard/git/push.py +93 -0
  77. commitguard/git/ranges.py +71 -0
  78. commitguard/git/repository.py +447 -0
  79. commitguard/github/__init__.py +34 -0
  80. commitguard/github/actions.py +163 -0
  81. commitguard/github/app.py +935 -0
  82. commitguard/github/auth.py +217 -0
  83. commitguard/github/check_runs.py +172 -0
  84. commitguard/github/checks.py +210 -0
  85. commitguard/github/client.py +844 -0
  86. commitguard/github/enforcement_status.py +209 -0
  87. commitguard/github/errors.py +129 -0
  88. commitguard/github/events.py +563 -0
  89. commitguard/github/identifiers.py +90 -0
  90. commitguard/github/installations.py +566 -0
  91. commitguard/github/markdown.py +19 -0
  92. commitguard/github/permissions.py +70 -0
  93. commitguard/github/pull_requests.py +53 -0
  94. commitguard/github/queue.py +47 -0
  95. commitguard/github/recovery.py +124 -0
  96. commitguard/github/repositories.py +305 -0
  97. commitguard/github/server.py +52 -0
  98. commitguard/github/settings.py +174 -0
  99. commitguard/github/storage.py +2315 -0
  100. commitguard/github/webhooks.py +129 -0
  101. commitguard/github/worker.py +628 -0
  102. commitguard/github/workflow.py +286 -0
  103. commitguard/governance/__init__.py +26 -0
  104. commitguard/governance/bulk.py +765 -0
  105. commitguard/governance/cache.py +88 -0
  106. commitguard/governance/common.py +216 -0
  107. commitguard/governance/exceptions.py +861 -0
  108. commitguard/governance/groups.py +448 -0
  109. commitguard/governance/inventory.py +386 -0
  110. commitguard/governance/posture.py +1272 -0
  111. commitguard/governance/resolver.py +632 -0
  112. commitguard/governance/rollouts.py +760 -0
  113. commitguard/governance/rules.py +371 -0
  114. commitguard/governance/schedules.py +663 -0
  115. commitguard/governance/service.py +120 -0
  116. commitguard/governance/settings.py +365 -0
  117. commitguard/governance/simulation.py +618 -0
  118. commitguard/governance/workflow.py +734 -0
  119. commitguard/notifications/__init__.py +2 -0
  120. commitguard/notifications/channels/__init__.py +1 -0
  121. commitguard/notifications/channels/base.py +22 -0
  122. commitguard/notifications/channels/email.py +110 -0
  123. commitguard/notifications/channels/in_app.py +74 -0
  124. commitguard/notifications/channels/sink.py +58 -0
  125. commitguard/notifications/channels/webhook.py +233 -0
  126. commitguard/notifications/deduplication.py +57 -0
  127. commitguard/notifications/dispatcher.py +201 -0
  128. commitguard/notifications/models.py +439 -0
  129. commitguard/notifications/outbox.py +106 -0
  130. commitguard/notifications/preferences.py +224 -0
  131. commitguard/notifications/retry.py +282 -0
  132. commitguard/notifications/service.py +128 -0
  133. commitguard/notifications/settings.py +167 -0
  134. commitguard/notifications/templates.py +108 -0
  135. commitguard/observability/__init__.py +5 -0
  136. commitguard/observability/logging.py +161 -0
  137. commitguard/observability/metrics.py +105 -0
  138. commitguard/policies/__init__.py +6 -0
  139. commitguard/policies/defaults.py +48 -0
  140. commitguard/policies/evaluator.py +66 -0
  141. commitguard/policies/governance.py +498 -0
  142. commitguard/policies/loader.py +23 -0
  143. commitguard/policies/mandatory.py +52 -0
  144. commitguard/policies/model.py +46 -0
  145. commitguard/provenance/__init__.py +9 -0
  146. commitguard/provenance/author.py +146 -0
  147. commitguard/provenance/committer.py +16 -0
  148. commitguard/provenance/normalization.py +158 -0
  149. commitguard/provenance/signatures.py +34 -0
  150. commitguard/provenance/trailers.py +256 -0
  151. commitguard/research/__init__.py +26 -0
  152. commitguard/research/compare.py +231 -0
  153. commitguard/research/datasets.py +1484 -0
  154. commitguard/research/detection.py +183 -0
  155. commitguard/research/environment.py +185 -0
  156. commitguard/research/gitenv.py +108 -0
  157. commitguard/research/hooks.py +247 -0
  158. commitguard/research/metrics.py +85 -0
  159. commitguard/research/performance.py +194 -0
  160. commitguard/research/platform.py +288 -0
  161. commitguard/research/report.py +372 -0
  162. commitguard/research/repository.py +111 -0
  163. commitguard/research/reproduction.py +297 -0
  164. commitguard/research/results.py +94 -0
  165. commitguard/rules/__init__.py +11 -0
  166. commitguard/rules/data/ai-domains.yaml +51 -0
  167. commitguard/rules/data/ai-identities.yaml +131 -0
  168. commitguard/rules/data/bot-identities.yaml +53 -0
  169. commitguard/rules/data/patterns.yaml +52 -0
  170. commitguard/rules/loader.py +102 -0
  171. commitguard/rules/matcher.py +212 -0
  172. commitguard/rules/models.py +269 -0
  173. commitguard/security/__init__.py +5 -0
  174. commitguard/security/hashing.py +30 -0
  175. commitguard/security/rate_limit.py +33 -0
  176. commitguard/security/safe_yaml.py +69 -0
  177. commitguard/security/sanitization.py +85 -0
  178. commitguard/security/secrets.py +169 -0
  179. commitguard/security/validation.py +89 -0
  180. commitguard/services/__init__.py +15 -0
  181. commitguard/services/analysis.py +119 -0
  182. commitguard/services/audit.py +95 -0
  183. commitguard/services/ci.py +383 -0
  184. commitguard/services/enforcement.py +102 -0
  185. commitguard/services/hooks.py +254 -0
  186. commitguard/services/remediation.py +99 -0
  187. commitguard/services/reports.py +146 -0
  188. commitguard/services/scan.py +172 -0
  189. commitguard/utils/__init__.py +1 -0
  190. commitguard/utils/filesystem.py +72 -0
  191. commitguard/utils/platform.py +35 -0
  192. commitguard/utils/subprocess.py +84 -0
  193. commitguardian-0.1.0.dist-info/METADATA +694 -0
  194. commitguardian-0.1.0.dist-info/RECORD +197 -0
  195. commitguardian-0.1.0.dist-info/WHEEL +4 -0
  196. commitguardian-0.1.0.dist-info/entry_points.txt +2 -0
  197. commitguardian-0.1.0.dist-info/licenses/LICENSE +21 -0
@@ -0,0 +1,197 @@
1
+ commitguard/__init__.py,sha256=Lkan2xypKRnVb55TUk5Xz6RWwLylH1DRcQ8s6Fe7gHQ,1247
2
+ commitguard/__main__.py,sha256=tTT_cULaMGY5ns6hCpieHrQT-bzZu-KlzpmdfBJk3Sc,134
3
+ commitguard/api/__init__.py,sha256=uGT31E64imcajaM7h1ZhQsvwUhrUCG9Ojq2D-Lkie28,871
4
+ commitguard/api/app.py,sha256=grDQpu0qzPp5JwTvjmX5bi-pHr3wzGl9BnNT1mm8G5s,55646
5
+ commitguard/api/governance.py,sha256=pL9OR301OVAi12KhSqN3IUp3CpSuylvvDmtzQj8CGp0,44537
6
+ commitguard/api/hosting.py,sha256=BxsOj8kSWI1DdETFtab228p_OEltirjFLqrwhvvNfw0,7741
7
+ commitguard/api/http.py,sha256=UbY_sVJMS4dPr2X8wx0_eCr6eHzM-z1q1pf7y_ZSXRs,8068
8
+ commitguard/api/settings.py,sha256=Ydh1qlLSxPuSO-dxzQkvHPWS__19gl6HHN9avyxWQ5M,7401
9
+ commitguard/audit/__init__.py,sha256=edm5wST4fGIuLgTM2dzvHGDP9oi9cAHBh4QLXI_pCbg,698
10
+ commitguard/audit/logger.py,sha256=MNmQX5wYqO5HcU_8no9pWqRINMy-OsNtSaz9PQSq6Do,1104
11
+ commitguard/audit/models.py,sha256=RiFGdPgSp1TJ6Vc91RE7wo1hfkdheIu7c5LLoIO4hCc,9710
12
+ commitguard/audit/storage.py,sha256=JHeve4pJ_FD_v4vTUct3m2qbsUaG3v1x4axHdTwx1WE,2108
13
+ commitguard/ci/__init__.py,sha256=3OL0zCS5GKdqPQQkKB-MXwJqaCdbVOgs3nCv3eJH5-M,341
14
+ commitguard/ci/context.py,sha256=ybP8eM5kgmtN2JVPaO-a-lRFCEchpoGgmAFRWtWIwmw,2218
15
+ commitguard/cli/__init__.py,sha256=qF1vRsi5G9P5RV-s0W4dd3fSR4aiTsyYZ03wZDniTy0,206
16
+ commitguard/cli/app.py,sha256=LfjSxQO3PqXpc5OVDDVuAIhJVX0-D5M2ULHrcRIAGp8,1880
17
+ commitguard/cli/common.py,sha256=1RWOT6KwcIgkxQT1SznFbBatw1_4e17uMcQ_5cwX16E,1016
18
+ commitguard/cli/output.py,sha256=mltTRzHBYh5l0yKRpZ3ZJjKMQAgfPpdaiI8mFO0BiWI,2895
19
+ commitguard/cli/render.py,sha256=SFUj66iDF712TSgKK6lqQCbUZlfV1kGJLDEOgo60kfA,14845
20
+ commitguard/cli/commands/__init__.py,sha256=mZatRDxqFpYwZ_KioVGPBbewNck19LCrBy5DVgdGKJE,69
21
+ commitguard/cli/commands/benchmark.py,sha256=CW_sLpU1s_jb9iYq2DKLl2y_E-3aWF44DpRogAAX5Pk,17157
22
+ commitguard/cli/commands/check.py,sha256=67_7UnO4gTkNh8-otVKS462a9kX6Cv6St-vU9smYECw,3479
23
+ commitguard/cli/commands/ci.py,sha256=iEzYHEqdJD4IM-dXyIFjIscGabtFLSGpB4Y1tlxKxpY,6024
24
+ commitguard/cli/commands/dashboard.py,sha256=ZSfNm8S33IfkQE0-yEaPrm5Iko-idhTyjZPo93X9jOY,5358
25
+ commitguard/cli/commands/doctor.py,sha256=HNcAu1vFy1KgnydXNbXlnfyUTqKAD5Pd3FpiIIBoZ4c,20233
26
+ commitguard/cli/commands/github.py,sha256=lzLuv3AA2rTrF3uIMrzgl_PIwVctSr3xN9SEh_kMS84,18175
27
+ commitguard/cli/commands/hook.py,sha256=uc_41F824T8lrASX5juEXe4V5MM0-1HKuyxiHNTP1I0,5343
28
+ commitguard/cli/commands/init.py,sha256=ZCWX6UEGOnjC7nTbWvmWE-4MqcmF9xVRHq5E8Uj6T3M,5299
29
+ commitguard/cli/commands/install.py,sha256=Tj0Ysm6m9GzPlaBEt0nJcZtcnr99uwoPSNrAS4IQrCA,5968
30
+ commitguard/cli/commands/policy.py,sha256=heglfsktX2hga1yaI68Fz840r-WRjb7FZWST5PWSIj4,1342
31
+ commitguard/cli/commands/report.py,sha256=xRYyZSGRmtfZ3GILJQG0AxhJirjQl4sv1SbCarvTfag,1299
32
+ commitguard/cli/commands/reproduce.py,sha256=ITHjnofjdYUGna4oSRfeCum8yMrvVyD0D4SAMjZzl-I,4411
33
+ commitguard/cli/commands/scan.py,sha256=4LbtdAqgq6WA-7T25if6UmA2k6qatqsvSoMbIagF6EU,1649
34
+ commitguard/config/__init__.py,sha256=lX0cg5LCx4xZ7u70sJPbSLQ0jWR-uwwnS_qmQus-v8k,272
35
+ commitguard/config/defaults.py,sha256=e8xiZfEEjTD_LSFUcJ-eEW1MpKw5KFYjJ8IzRU8LXks,1589
36
+ commitguard/config/enforcement.py,sha256=lx6Ui5m1eAMj2ZfCun9gyIn-Yyey9R4zcHf5j8MlXa8,1699
37
+ commitguard/config/loader.py,sha256=5xoDhFZClClEUlm-0PhlOtpMnTdVEaabUZFPlb7t7F8,6380
38
+ commitguard/config/schema.py,sha256=zG1QCv8ok4zbGvzGU6EuYobMc7mIpMpTmJG1Y7d9ux0,3847
39
+ commitguard/config/sources.py,sha256=i3OemeEYpEuse0OOfIHQDJgABQN4z-ufW5EUV1s4SOw,7664
40
+ commitguard/controlplane/__init__.py,sha256=5Y-NGFnVRvARuGQISCLjhP-WLhfWe21YxQ3Wy9A3o-g,1244
41
+ commitguard/controlplane/access.py,sha256=EN35ZYRO1aevvLYVdfOSiNWNUTo1EzowbMHoa7DdeKc,8597
42
+ commitguard/controlplane/commands.py,sha256=8rkXC6pFhC5oa7KLsAaVZ8WpNeiRHY8LZcHqYzfd69Q,18833
43
+ commitguard/controlplane/errors.py,sha256=SVotAq5Vezo8JiTXPpLMtMm8cVCEC9XbdaJUoZftvMQ,2480
44
+ commitguard/controlplane/identity.py,sha256=pdk0LPiCXZoEO1sdLtxcVTlDereDT7Hgih6hCybhh0w,20468
45
+ commitguard/controlplane/members.py,sha256=p3fOd0-J7tpLweCdBH7ivSvG9mHq_o4kyJ_PBPFV1ac,9087
46
+ commitguard/controlplane/notifications.py,sha256=6QZtaHQF8FCqaj-UoXwZRQR2g5_fHFJ-i8qzsFJgtQc,33647
47
+ commitguard/controlplane/pagination.py,sha256=FXse61PSeckwQ_cupTokzt7D8JEThLaFcCQtRFkPZqQ,5475
48
+ commitguard/controlplane/policies.py,sha256=i01br1Bph8AJMZJK_1n1N3-zuSlmzAkgTTGfKqxm-Wk,49829
49
+ commitguard/controlplane/queries.py,sha256=yTRZZ6bFXDXSjTAALC4O1df50huYF-Fx2ZBLmTWKTXk,78338
50
+ commitguard/controlplane/results.py,sha256=BwKTXIH-1kLXee5fJ49YDL4KmA_AJJRAYzDlHCrgdv4,39350
51
+ commitguard/controlplane/rules.py,sha256=bYa4n7KE9P1QNVcqnbbWSdRZFS077KsY45eSWOAkB-M,6396
52
+ commitguard/controlplane/views.py,sha256=DBZnmqcd2bpkNRjyJUqNzPBayJ_PKn47DngB2rJuQLY,21065
53
+ commitguard/core/__init__.py,sha256=83vyjgRX7efyqEGJsW4F8AL6RD-uvnNzcGfLzyfPtIk,312
54
+ commitguard/core/context.py,sha256=iwE1y9lKaOpnELmklP0Vz2h4Y5r-LJ6KG4uD_cNgR6E,768
55
+ commitguard/core/decision.py,sha256=GSdxw-hU5RQlM-OMZ9WF0evpL1Lp4fLFDzjpqTC8Dic,1560
56
+ commitguard/core/engine.py,sha256=igNL1Pa6mNwlzYErS9RSwHL_dc3ZgQqMgUf4NNm-Pj4,3424
57
+ commitguard/core/result.py,sha256=j3cwY0mm69w4x9OXjVI77h59yIPRCPXHdkSzAUfUudc,5603
58
+ commitguard/detectors/__init__.py,sha256=yzKgYqu2Jrl5NxhoLEfs6PF-u7g_6SoDLxS97qPkX-A,288
59
+ commitguard/detectors/base.py,sha256=BEI0CApXx3xfQ2pjSZeqhPOrJxfoDTOTwF3172JUeUY,2264
60
+ commitguard/detectors/bot.py,sha256=rqUOuLyhmbUDNiwZNwNhNKdW74WOj_iA8fOecRdVO9M,3571
61
+ commitguard/detectors/coauthor.py,sha256=8m7Oz9Ti5333YeqOP7hhn26V1JFkzWL0YMCl8o9gtFQ,3581
62
+ commitguard/detectors/identity.py,sha256=uRhwdgc7jKi7eRjVQpPtZ64H_Z2zBIQQY6W7Vpaqcp0,3274
63
+ commitguard/detectors/registry.py,sha256=ScokHUamEwZsikS_fwdt2UFTEZMe13wah4UIdFCxYvs,2908
64
+ commitguard/detectors/trailer.py,sha256=jp7tTMrVsWiHfXADRBmicOLqtmWRnYS1GXxnoYtjkmg,8632
65
+ commitguard/exceptions/__init__.py,sha256=v0pV15fvZhlnJo_M0AItxBv_PdUC2T0ZFaZASHz7bqY,984
66
+ commitguard/exceptions/base.py,sha256=xN2rsxt8TPhKM4g9b5wLfvKIRzBQ1WS3uMS8vDPwXNE,277
67
+ commitguard/exceptions/configuration.py,sha256=lOE9zNihGSmL4fQBY-67iJ-Zs6JB8y1pjfYQtFV7984,672
68
+ commitguard/exceptions/detection.py,sha256=_QxXLBOxk87_H0RB4uK9tgdFsOzWrsnV78zY7d7Em1w,335
69
+ commitguard/exceptions/git.py,sha256=bMWb5R0WzAYo9Rgvqq8Silvz-EZBCuHGa-MHQpijzmQ,1338
70
+ commitguard/exceptions/service.py,sha256=7fxh_vfPjiqynW36k4_EhyVZ90X2nD_ft_9WjxqVUmM,920
71
+ commitguard/git/__init__.py,sha256=7dTac28hpkVemHGJQ4kRiSdeHlpVZr809d4YjVOkTRA,590
72
+ commitguard/git/commands.py,sha256=hOYoqWA9hOxZOZlG4QDTAt97k_G83Uz1upcClloWBQU,3584
73
+ commitguard/git/commit.py,sha256=lnn3bKJt-YCrztABwAKgMepkQqfdIrXQhcW2MGZHUsI,3544
74
+ commitguard/git/diff.py,sha256=i2ZivkUjgCBIcXdhVonA5OSgnqc3FwwbsGLXN3TJZxg,985
75
+ commitguard/git/hooks.py,sha256=AJknBtj6HFVyxHl-iyRSGgmgIKnIoaGMsVbZQz_rnuQ,20502
76
+ commitguard/git/push.py,sha256=IPOhoFm3TyX3FXHPLAHpVgPIKJop-Nou5pa5gtgdR0A,3267
77
+ commitguard/git/ranges.py,sha256=3SZnWq8tiNJhIEe5rcBh1hyicuEsFTjobJOKGx3o_iQ,2521
78
+ commitguard/git/repository.py,sha256=Oyy8jyp7zhAL5QN4Aqm261TuCDz67mfycYbC4Tj7XUE,19566
79
+ commitguard/github/__init__.py,sha256=F4pyUVT33fT_foKksLoB0ZgVQNRG1K7eBU8WFoL0IJQ,2065
80
+ commitguard/github/actions.py,sha256=qPz6TIwLzXv31gkb6ubkjYCyYT83cD3ERh7x04qt1qA,5940
81
+ commitguard/github/app.py,sha256=4Yf_EyJeQEyCOCNk5T96a1CHNjpyUoWT02St-NgBxcY,41198
82
+ commitguard/github/auth.py,sha256=OF0hpcpd5oPs9DR6DXFgcWeOcsS4Cx5J905URyWBT3c,9133
83
+ commitguard/github/check_runs.py,sha256=dbmutd1UklvglmmNVgHqGR3oYmCWZW6aTD-Cqcwx0oc,7304
84
+ commitguard/github/checks.py,sha256=ELVoaC6nFn2W6mElismxbFcbNR1SRWntkHcTmjzNo8c,7277
85
+ commitguard/github/client.py,sha256=Ae1GD5TAYSz1Q4Nb6WApRDcdw0MXeHZI5Y8d-mSt2oM,31706
86
+ commitguard/github/enforcement_status.py,sha256=NvsNzU6HzNiAz-zl4aZOXh2Kw91KIlZUlEiTvzQtPOA,8733
87
+ commitguard/github/errors.py,sha256=wlfAHcaOxUYomAENngu1fE1piiLrSlfO7TcKQ9hOX7c,4269
88
+ commitguard/github/events.py,sha256=zclxCE_5IiLzjSrd34rmeiymPkUmwt6ADaniGoqOCNI,22634
89
+ commitguard/github/identifiers.py,sha256=ha7GzjSjvTYOV7hqKuOv3sxVtZeII6dGJfEvmrQOlXA,2962
90
+ commitguard/github/installations.py,sha256=-21Oj5kEjoLgFxNEiZZSSyCHdaNawblXH5t2o7M88Z0,25461
91
+ commitguard/github/markdown.py,sha256=_z_v70p3U7rKDtVb296fZXgIMMgSZFhRX79mlwHyPgE,907
92
+ commitguard/github/permissions.py,sha256=HuA5j0sueKKaEbhq5vtBaqttBJmaVa48bqarjZICGM0,3218
93
+ commitguard/github/pull_requests.py,sha256=j_E6D0BHbLzqRJmZ1kxwx_EncHuMkoOhuyoVMUuGRKk,2151
94
+ commitguard/github/queue.py,sha256=cwqxwjK5JhfJOllE9EjGO7aVAkQkjUTV0BdtYqgGEJo,1507
95
+ commitguard/github/recovery.py,sha256=dLKiEAkzElvW0IEWIt5lDGq03HiRNOZaf3daMbsX5zQ,5805
96
+ commitguard/github/repositories.py,sha256=b3ZzmRLtmHBp5QfgKvPXwTYZAWkG2129hmh-sSThYgA,12888
97
+ commitguard/github/server.py,sha256=DPkcZv8_y1LBZS6jRUsTRdatN5ger80dhBdV9BG56oA,1703
98
+ commitguard/github/settings.py,sha256=Y2r6tkLaOrNXi3cUy6e5NNEu_4w10GyPwqXDjpG4SXM,7526
99
+ commitguard/github/storage.py,sha256=xUQy2F2Y1QkRfC65slHzBW3DhQ-5-uuCVo_-EKMZXso,92991
100
+ commitguard/github/webhooks.py,sha256=ihJ0Q2d5nfhRObOHYFTqIBlaBWJdqGoPr8mSIBYTJm8,5022
101
+ commitguard/github/worker.py,sha256=-sJ0Smq2qktP5b_FOUTxeXublw0EyZ-C11eKrkk6CQI,27343
102
+ commitguard/github/workflow.py,sha256=NxjQF2Wq31L_RdVt3z5GYnWZ5QEFk3r3OoXe4ktqkrY,10278
103
+ commitguard/governance/__init__.py,sha256=HfiVcHxTwMOHX7UJ4dzz2MVkXr_wv7JWcxgv1YOvXMM,1453
104
+ commitguard/governance/bulk.py,sha256=D8LUL3ZTfvTw1kY_8x0s0nNOJTR74VoP8WTDitWCZnw,33012
105
+ commitguard/governance/cache.py,sha256=nVH2pOA_rxcA1a5uk9i7XIJUTk6l9sKjMr7I8Nu7orc,3673
106
+ commitguard/governance/common.py,sha256=6BdBAaT6nXUiILspK_-T_nBTdCT9Jy6osQP3JRtr37k,8123
107
+ commitguard/governance/exceptions.py,sha256=2G4S0D2y8zFkhYHmzoVP33QXvXOeoLvgbeQAp0WNv4s,37362
108
+ commitguard/governance/groups.py,sha256=jv5yV8NR7wx1GiA-Nnd4T4fRa1pVlP_qN917gZPpNWs,18303
109
+ commitguard/governance/inventory.py,sha256=Sj31B4w179Vq_eUKYZLBypvOd-wxCvx_xgM4G6thIxw,16562
110
+ commitguard/governance/posture.py,sha256=UYL33IPyWDumB9VdYEQMoHCmcLRWfFnci-IgIQK1WdA,59293
111
+ commitguard/governance/resolver.py,sha256=uapqHHBs5Ws584WEmIe8OTgxI4PgejJgbOHxH6CLwOM,27301
112
+ commitguard/governance/rollouts.py,sha256=gOCbssfMVmGuZtbL94UiFSx4zmp5zsug6yj-J7eBhwU,31693
113
+ commitguard/governance/rules.py,sha256=7w_SFuDYEhbnHGEZVfgV59ntdutHj0AuVbkyTbvgyEA,15791
114
+ commitguard/governance/schedules.py,sha256=0QMX6GFuUNymjf-EMqjqE2cC0mXPLQVAqen1xmOzbOk,28304
115
+ commitguard/governance/service.py,sha256=R-UozBwOKUtktQg8sPo48xcJYlmnOev78ZaP2-Lbuyc,6252
116
+ commitguard/governance/settings.py,sha256=MxPq-bRjZd-aTtfh1wACUaqyT8e10rSdOCDF8hGSGjY,17226
117
+ commitguard/governance/simulation.py,sha256=i0nvVpHURWUDhenf8zPbaoMPpmsc8I6eHmJJq7LP6mM,25801
118
+ commitguard/governance/workflow.py,sha256=rdWvU4EOahMPvCbVcABiceu9L9Cd68tfFgfgSYk1cUs,31884
119
+ commitguard/notifications/__init__.py,sha256=XZ5EfHl3FZkBsGh41NA7b-Wty1xcYY-Ci_sMHClRFtI,161
120
+ commitguard/notifications/deduplication.py,sha256=Xfynsmj-0lqmTKf0rn1-aF7eydwwXNLQYKoeYh8ZZ9g,2730
121
+ commitguard/notifications/dispatcher.py,sha256=BBXHAJ7_EhzTEnfJ9EpwFb8zDJs-uYboY7YJGrPi6OQ,8337
122
+ commitguard/notifications/models.py,sha256=9TIgKQicc4cN0cm9FFjVP8_294QvcIeuJl6dSzsU3YI,16451
123
+ commitguard/notifications/outbox.py,sha256=LrbaNVnQWFyUVMn-BrQH4h3gg8y2nlCz6-Gr9jl406A,4188
124
+ commitguard/notifications/preferences.py,sha256=iAoLgQ6HEwiQ-REYa2sOxr26zBLvXzerZix1dkm-jHs,8649
125
+ commitguard/notifications/retry.py,sha256=QiBwAbvwujLJEltq5LJidOWP3NLcsPCMgD1Ue4wxMmc,11992
126
+ commitguard/notifications/service.py,sha256=HcMV7uhcTLczov6-3EFNHjOqwc5TgjF51_vqEahtOQ8,5273
127
+ commitguard/notifications/settings.py,sha256=fTDu1XBmcGOOGbFOICxp3ghsDRfpUJXCs5vNllm3Mjc,7341
128
+ commitguard/notifications/templates.py,sha256=0GVJQOwM9WIEQg26decItprPoJDb6WviRbSuryrkZ98,3940
129
+ commitguard/notifications/channels/__init__.py,sha256=_k9up_GkJQaTR87g-asOuxcgWaW8vosKO6szwErb-EQ,83
130
+ commitguard/notifications/channels/base.py,sha256=8AyPRw25boJdDBDU373Dgx5zBRCU_9eLbKcu9z0PbcA,613
131
+ commitguard/notifications/channels/email.py,sha256=4IRJANGNHbaTyIzuj6mZ9iT5FzpGqOpWvY69j5eVKw8,4275
132
+ commitguard/notifications/channels/in_app.py,sha256=8C-8B4CYt2MQiYWLEivp6rY0LZjU1sJOG1MR1-GO0vE,2639
133
+ commitguard/notifications/channels/sink.py,sha256=b2JCwT05oNJOxp1SvDc2QyEb_ExpSgP6HRzZeh6ZdGw,1985
134
+ commitguard/notifications/channels/webhook.py,sha256=YUgXnHEYy8JbQso9ODfVPH5vBCWRBx05tVM66UmEJE0,8853
135
+ commitguard/observability/__init__.py,sha256=DCqsktKJX0hETFSaCxkfgvY-TGs_hc5PXBNO_O2zyr4,219
136
+ commitguard/observability/logging.py,sha256=tA54eQM7SR5PXMks-my--9wbMBNXZOU5dYwOda4cusY,5797
137
+ commitguard/observability/metrics.py,sha256=_wCGB6nC7hlP7gv-5Ay_jQqTmq_f6Ldzt23Lm2UgBvE,3483
138
+ commitguard/policies/__init__.py,sha256=_zMTma5Yw6hE9fGXA9tLS1RhuTJaarRSO_4oQ-EqM30,263
139
+ commitguard/policies/defaults.py,sha256=gYWV1T_-UjenBSSLHTfOjuKKwbtuQd6-OJQGWWfNUh0,1519
140
+ commitguard/policies/evaluator.py,sha256=MZj4xK1hbz1DLlyOr96ty-mbvVcjHRIxF8i81KEbfrI,2535
141
+ commitguard/policies/governance.py,sha256=uvn1c3KssE_WWDkTl3Z3dm-PEjHomoHtysgBYpbnmZU,19254
142
+ commitguard/policies/loader.py,sha256=NmLsHPD-Qz3pafXR37Bo07X9TzA6VVGuM-Yx46OkOfM,1107
143
+ commitguard/policies/mandatory.py,sha256=hcbNYJlDuOcPWIEnq3a9RgXjDucusrA8dw2XdgVDUuc,2580
144
+ commitguard/policies/model.py,sha256=sTC29ICtIUZt1qdc0hBEwpjOAoV12saHkoceDvcCrRw,1355
145
+ commitguard/provenance/__init__.py,sha256=RwXvWFIp3M43dXCqwpq62DxfuVZpyXvIsFBe2dRkQlA,442
146
+ commitguard/provenance/author.py,sha256=TwOZ-RXEVsUpjRDen15aXezjmW3eqseEXF5MEqZ0PB0,5047
147
+ commitguard/provenance/committer.py,sha256=smRGlWEkdAWaTH0JybG6wlAPBDzFJvRCAMFIXua-ETI,634
148
+ commitguard/provenance/normalization.py,sha256=lj0t_yWHDaTXeXM0iovFHcxG5yhBiOylh_ooM0Ru7eE,6646
149
+ commitguard/provenance/signatures.py,sha256=_pi5jLdc347t_Tug7DSVB-9SEHnkC_etlhdujjZwkcw,1052
150
+ commitguard/provenance/trailers.py,sha256=4V8A-_I3IB0FLBIhjgzeP3cie42N2JMCLrKYJSDzqyU,9479
151
+ commitguard/research/__init__.py,sha256=01KlzSZ5C0dLo-pqBHSfCX8hWvJnWBZqZnQTx4ilTAY,1399
152
+ commitguard/research/compare.py,sha256=IHhT6fWp0Ip-qvtU862almbxJBwifB9vVSxrD7QwXY8,8611
153
+ commitguard/research/datasets.py,sha256=PSr_pjLn3tIjMM1if47aG39bwXzfrZCMjN12j8dboxw,47883
154
+ commitguard/research/detection.py,sha256=yRDzv_dzh3WHm5zQageXTVEyDS5H85szV-trfZfGrYk,6850
155
+ commitguard/research/environment.py,sha256=FOSJzPLacTUutokS2nj2Mvl-uZF55C0uEEOWlzMcgtA,6723
156
+ commitguard/research/gitenv.py,sha256=NOKAaB4w2xCxCSNrJg-5DkOZ5qXVEyVpEfUo6xkyJwM,3780
157
+ commitguard/research/hooks.py,sha256=qIj_porWYcybZovSeY_Q0jE2zGZ7IZq8_VV_BsxxLYk,9120
158
+ commitguard/research/metrics.py,sha256=wqV_Rkuy1-ZKbIC2Qna9SnipkzhP9OQ9JsaBTuP-OCs,2729
159
+ commitguard/research/performance.py,sha256=8nJV2RUtC0xlYn2V6Vle46W35Xw7j_erI_L_e7j9170,6957
160
+ commitguard/research/platform.py,sha256=kSZr-zF_eK40FEbdio-6N6uRtv6gQ8u_uNyEJ_fgazs,10583
161
+ commitguard/research/report.py,sha256=nnX4XPNHKFnyBV2BQ7iQGmdyv7ESW6C0_iVcf4NbrCI,14901
162
+ commitguard/research/repository.py,sha256=BLFY0nNjfn7oH2V20M8VBkwZ_apho_8VizWhEDfDaq4,4312
163
+ commitguard/research/reproduction.py,sha256=h9d-HWH6iK5j7A5EPxDZMW0G8cMGBdSK6Jbov0lbeSI,10243
164
+ commitguard/research/results.py,sha256=wW7cZrWPmtMquwUZNgnJHA05xHo-qsUTEmKNyxbbH18,3481
165
+ commitguard/rules/__init__.py,sha256=MwwWoA2lWzD_aQqfzeTSWdZQ6R5sH3SU2JTCs6Mp-K8,392
166
+ commitguard/rules/loader.py,sha256=p1PSmmuMPi4bxtCwex6uLU6DQgtHLjYARVGd61QqKHU,3820
167
+ commitguard/rules/matcher.py,sha256=EsE9IwPAZ-PpIBXEEl79hLgF0oBLsZ9r6V8h35fY8mA,8257
168
+ commitguard/rules/models.py,sha256=Zw1-TBGSuHUP-jGBSeQjbFAgO1jO73QCJBWtAsXWmG4,9127
169
+ commitguard/security/__init__.py,sha256=hO1Fp2kgAPJ-1WKUygc0VS55knYJdy0PmIqnj2p76ds,212
170
+ commitguard/security/hashing.py,sha256=ZTSRGMLa4j06kd-2Qq_2aiHKy6BCkM-T6tyWbcTyw4A,1016
171
+ commitguard/security/rate_limit.py,sha256=Y7IcFlPtXt855n_Nopkk8HFH_i1iJM2Z_dvEqrdAUkc,1106
172
+ commitguard/security/safe_yaml.py,sha256=233L_nP0l4HtEoPxKqrybk7OamFwzXfic5yY6mFYN1Q,2531
173
+ commitguard/security/sanitization.py,sha256=5MNIGl04ONTcnvdPkf9r4jlCbg-NqXU6TmrusmTpDNc,2890
174
+ commitguard/security/secrets.py,sha256=7ZwLBsU5ketkiDcR7d95-QDo-SxKjpARnIvothIwGhA,5963
175
+ commitguard/security/validation.py,sha256=KWdKGhlNIMsWGd7059FTTaT3fOfakwz_YpeP0U7ldMY,3489
176
+ commitguard/services/__init__.py,sha256=9bFwxPgzxGRMUZIWVE1f2UazijGR2p0M98VDuCbJP0A,790
177
+ commitguard/services/analysis.py,sha256=jKeRuW4q_J1Dcv9IDbWBeQVGySkm2YzI0UQjuU2dWjk,4608
178
+ commitguard/services/audit.py,sha256=E42bTXHNlNEcHReELzOMy8SBwA9fP6pmM9I7YNQ5_5g,3249
179
+ commitguard/services/ci.py,sha256=FGPzAz48U7KQ12fHNtm1dV8nP8dsnm_4kYS3C7YpAy8,15397
180
+ commitguard/services/enforcement.py,sha256=7LxJJ4egIrsRZiOCKanBE7esQTo_zZ07ta0od7hSYE0,3878
181
+ commitguard/services/hooks.py,sha256=GiT57R21Scnn_vXrbAWvzZTCDwZxyXsMZweRfNQ80U0,9414
182
+ commitguard/services/remediation.py,sha256=xkke5MvJ2QNxV3k51pAdd6Hb5F-hGfv83eOOwvjBSnU,3865
183
+ commitguard/services/reports.py,sha256=NbeXZXeqEi1Kv6TWRSp_KXopjJvRJdXYXb4E-YlhorU,4631
184
+ commitguard/services/scan.py,sha256=b5lWC5myullCi6z8FC8KtCOIxVHy7UMSSEHMu2paZxE,6378
185
+ commitguard/utils/__init__.py,sha256=Q-ia_Vj8wFKpbMH4kyiszmQPC54aJn09lgNEj3yYoQI,85
186
+ commitguard/utils/filesystem.py,sha256=cVzd_Nvs-gc7TVRodt9Aox37Li8Un9L_mgwVZxvUAHs,2553
187
+ commitguard/utils/platform.py,sha256=ZUGQoGB4WkYX2h3Hoy27lRMC40Kha3n7bsc7RZN8UlI,1026
188
+ commitguard/utils/subprocess.py,sha256=1b-W8n9zm9-3fGX85y2VkcKWrxOJ_EqUqUlnVLQ0Jvo,2560
189
+ commitguard/rules/data/ai-domains.yaml,sha256=J87hlFRvDDem6zIilKJTzlQjjzr2jLqdAGS60jNP-bA,1369
190
+ commitguard/rules/data/ai-identities.yaml,sha256=mUEpZk0Pgz8SHZ5Ur_wC4NrTNq8o5o6w9GmmAK92qn8,3995
191
+ commitguard/rules/data/bot-identities.yaml,sha256=cLLprBu0VGoBhK0IhEQZ1ZRk0zgm4n3snclyUWWBMFo,1580
192
+ commitguard/rules/data/patterns.yaml,sha256=TqStT1YxNwKogxrRSZXMJ_VlKnNkQUgDT7spxvgl1LQ,2200
193
+ commitguardian-0.1.0.dist-info/METADATA,sha256=Vk3e47btmnCHBGEl93frmr1foIvKutLieiYn66c6-WA,35446
194
+ commitguardian-0.1.0.dist-info/WHEEL,sha256=THafob7ofN-NsuMN7Mg4qZyHaQI7KkD-QlcQatYhXPo,87
195
+ commitguardian-0.1.0.dist-info/entry_points.txt,sha256=bWB8byOXHbyi4BQ54ZVYfZnrSwWw6EwC04F9pCxH9F0,57
196
+ commitguardian-0.1.0.dist-info/licenses/LICENSE,sha256=avX9DkCssJAewh6LrflIrp_UHrYkq7fCOcwgSEwJhOQ,1075
197
+ commitguardian-0.1.0.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: hatchling 1.32.3
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ commitguard = commitguard.cli.app:main
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Oluwayemi Oyinlola
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.