gator-command 1.0.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 (110) hide show
  1. gator_command/__init__.py +2 -0
  2. gator_command/cli.py +137 -0
  3. gator_command/scripts/crawler.py +633 -0
  4. gator_command/scripts/dashboard/dashboard.css +982 -0
  5. gator_command/scripts/dashboard/dashboard.html +84 -0
  6. gator_command/scripts/dashboard/dashboard.js +419 -0
  7. gator_command/scripts/dashboard/views/audit.js +270 -0
  8. gator_command/scripts/dashboard/views/fleet.js +307 -0
  9. gator_command/scripts/dashboard/views/repo.js +599 -0
  10. gator_command/scripts/dashboard/views/settings.js +173 -0
  11. gator_command/scripts/dashboard/views/updates.js +308 -0
  12. gator_command/scripts/enforcer-prompt.md +22 -0
  13. gator_command/scripts/extract-claude-sessions.py +489 -0
  14. gator_command/scripts/extract-codex-sessions.py +477 -0
  15. gator_command/scripts/extract-gemini-sessions.py +410 -0
  16. gator_command/scripts/gator-audit.py +956 -0
  17. gator_command/scripts/gator-charter-draft.py +919 -0
  18. gator_command/scripts/gator-charter-lint.py +427 -0
  19. gator_command/scripts/gator-charter-verify.py +606 -0
  20. gator_command/scripts/gator-dashboard.py +1271 -0
  21. gator_command/scripts/gator-deploy.py +916 -0
  22. gator_command/scripts/gator-drift.py +569 -0
  23. gator_command/scripts/gator-enforce.py +82 -0
  24. gator_command/scripts/gator-fleet-intel.py +460 -0
  25. gator_command/scripts/gator-fleet-report.py +615 -0
  26. gator_command/scripts/gator-init-command-post.py +315 -0
  27. gator_command/scripts/gator-init.py +434 -0
  28. gator_command/scripts/gator-machine-id.py +153 -0
  29. gator_command/scripts/gator-policy-status.py +631 -0
  30. gator_command/scripts/gator-pulse.py +459 -0
  31. gator_command/scripts/gator-repo-status.py +649 -0
  32. gator_command/scripts/gator-session-common.py +372 -0
  33. gator_command/scripts/gator-session-sink.py +831 -0
  34. gator_command/scripts/gator-sessions.py +1244 -0
  35. gator_command/scripts/gator-update.py +615 -0
  36. gator_command/scripts/gator-version.py +38 -0
  37. gator_command/scripts/gator_core.py +489 -0
  38. gator_command/scripts/gator_remote.py +381 -0
  39. gator_command/scripts/gator_runtime.py +142 -0
  40. gator_command/scripts/gatorize-actions.sh +989 -0
  41. gator_command/scripts/gatorize-lib.sh +166 -0
  42. gator_command/scripts/gatorize-post.sh +394 -0
  43. gator_command/scripts/gatorize.py +1163 -0
  44. gator_command/scripts/gatorize.sh +185 -0
  45. gator_command/scripts/generate_markdown.py +212 -0
  46. gator_command/scripts/generate_wiki.py +424 -0
  47. gator_command/scripts/graph_health.py +780 -0
  48. gator_command/scripts/memex-lint.py +286 -0
  49. gator_command/scripts/memex-lint.sh +205 -0
  50. gator_command/scripts/memex.py +1472 -0
  51. gator_command/scripts/memex_formatters.py +191 -0
  52. gator_command/scripts/memex_state.py +236 -0
  53. gator_command/scripts/spawn.py +650 -0
  54. gator_command/templates/gator-starter/blueprints/README.md +32 -0
  55. gator_command/templates/gator-starter/charterignore +53 -0
  56. gator_command/templates/gator-starter/charters/README.md +178 -0
  57. gator_command/templates/gator-starter/charters/_template.md +31 -0
  58. gator_command/templates/gator-starter/commands/commit.md +33 -0
  59. gator_command/templates/gator-starter/commands/init.md +11 -0
  60. gator_command/templates/gator-starter/commands/update.md +5 -0
  61. gator_command/templates/gator-starter/constitution.md +165 -0
  62. gator_command/templates/gator-starter/field-guides/README.md +25 -0
  63. gator_command/templates/gator-starter/gator-start-up.md +119 -0
  64. gator_command/templates/gator-starter/procedures/charter-alignment.md +83 -0
  65. gator_command/templates/gator-starter/procedures/enforcer-review.md +317 -0
  66. gator_command/templates/gator-starter/procedures/field-guide-generation.md +176 -0
  67. gator_command/templates/gator-starter/procedures/knowledge-capture.md +57 -0
  68. gator_command/templates/gator-starter/procedures/significance-check.md +69 -0
  69. gator_command/templates/gator-starter/reference-notes/concierge-responses.md +535 -0
  70. gator_command/templates/gator-starter/reference-notes/dangerous-patterns.md +91 -0
  71. gator_command/templates/gator-starter/reference-notes/dashboard-operations.md +22 -0
  72. gator_command/templates/gator-starter/reference-notes/enforcer-configuration.md +232 -0
  73. gator_command/templates/gator-starter/reference-notes/example-project.md +289 -0
  74. gator_command/templates/gator-starter/reference-notes/failure-modes-and-self-correction.md +72 -0
  75. gator_command/templates/gator-starter/reference-notes/git-workflow.md +60 -0
  76. gator_command/templates/gator-starter/reference-notes/identity-and-ownership.md +37 -0
  77. gator_command/templates/gator-starter/reference-notes/refactor-approach.md +155 -0
  78. gator_command/templates/gator-starter/reference-notes/what-gator-requires-from-a-model.md +108 -0
  79. gator_command/templates/gator-starter/reference-notes/why-navigation-coding-feels-different.md +99 -0
  80. gator_command/templates/gator-starter/reference-notes/workflow-profiles.md +155 -0
  81. gator_command/templates/gator-starter/scripts/__pycache__/enforcer-review.cpython-313.pyc +0 -0
  82. gator_command/templates/gator-starter/scripts/__pycache__/gator-approve.cpython-313.pyc +0 -0
  83. gator_command/templates/gator-starter/scripts/__pycache__/gator-init.cpython-313.pyc +0 -0
  84. gator_command/templates/gator-starter/scripts/__pycache__/gator-pre-commit.cpython-313.pyc +0 -0
  85. gator_command/templates/gator-starter/scripts/__pycache__/gator-update.cpython-313.pyc +0 -0
  86. gator_command/templates/gator-starter/scripts/enforcer-prompt.md +55 -0
  87. gator_command/templates/gator-starter/scripts/enforcer-review.py +1551 -0
  88. gator_command/templates/gator-starter/scripts/gator-approve.py +139 -0
  89. gator_command/templates/gator-starter/scripts/gator-enforce.py +82 -0
  90. gator_command/templates/gator-starter/scripts/gator-init.py +434 -0
  91. gator_command/templates/gator-starter/scripts/gator-pre-commit.py +2670 -0
  92. gator_command/templates/gator-starter/scripts/gator-pulse.py +459 -0
  93. gator_command/templates/gator-starter/scripts/gator-update.py +615 -0
  94. gator_command/templates/gator-starter/scripts/gator-version.py +38 -0
  95. gator_command/templates/gator-starter/scripts/gator_core.py +487 -0
  96. gator_command/templates/gator-starter/scripts/hooks/__pycache__/commit-msgcpython-313.pyc +0 -0
  97. gator_command/templates/gator-starter/scripts/hooks/__pycache__/post-commitcpython-313.pyc +0 -0
  98. gator_command/templates/gator-starter/scripts/hooks/__pycache__/pre-commitcpython-313.pyc +0 -0
  99. gator_command/templates/gator-starter/scripts/hooks/commit-msg +5 -0
  100. gator_command/templates/gator-starter/scripts/hooks/post-commit +7 -0
  101. gator_command/templates/gator-starter/scripts/hooks/pre-commit +5 -0
  102. gator_command/templates/gator-starter/sessions/.gitignore +7 -0
  103. gator_command/templates/gator-starter/vault/.gitkeep +0 -0
  104. gator_command/templates/gator-starter/whiteboard.md +5 -0
  105. gator_command-1.0.0.dist-info/METADATA +122 -0
  106. gator_command-1.0.0.dist-info/RECORD +110 -0
  107. gator_command-1.0.0.dist-info/WHEEL +5 -0
  108. gator_command-1.0.0.dist-info/entry_points.txt +2 -0
  109. gator_command-1.0.0.dist-info/licenses/LICENSE +21 -0
  110. gator_command-1.0.0.dist-info/top_level.txt +1 -0
@@ -0,0 +1,110 @@
1
+ gator_command/__init__.py,sha256=SVB0imew-YYJr5--NLEGCFkFE70pZGWgHJXpS10i980,99
2
+ gator_command/cli.py,sha256=DF_7In_fpJ6TvfYxNV2ksoPehQrEg6pB9mzn9CZQY-E,4969
3
+ gator_command/scripts/crawler.py,sha256=BHGrNygv7dqFJxnkjN0WRiU3mPtV7cK3EGWCvH-suVc,24951
4
+ gator_command/scripts/enforcer-prompt.md,sha256=f2nY-A-5arK869eJYL6KIBkK1RNrCrZYi-z1TmzV4_Q,747
5
+ gator_command/scripts/extract-claude-sessions.py,sha256=2KuZcoGdQ36x667ArAk3J1zTqvZ1lMmPa5nuvUIsmfI,16890
6
+ gator_command/scripts/extract-codex-sessions.py,sha256=Y2L_Yoe7KTthQJ2d2jU8mA-kvpD_L03uH3tBFujoAd4,17317
7
+ gator_command/scripts/extract-gemini-sessions.py,sha256=QE0o4OlbFIGA6y47yYKq3tvfQYFcYea7JcQ1WPdPOLo,14203
8
+ gator_command/scripts/gator-audit.py,sha256=cX2EyftGdc_ZHqxrQNm0GCKqrNo-g-8ujAs2lJpNdzA,40539
9
+ gator_command/scripts/gator-charter-draft.py,sha256=JInlyWlOEqdEuCR6TpVhvrPlwMQY7IvMSriz4khB9XQ,30100
10
+ gator_command/scripts/gator-charter-lint.py,sha256=Rssfyc5mD1CYMUlM82xkQ53eCex24d18CL-gRnvb0-s,13881
11
+ gator_command/scripts/gator-charter-verify.py,sha256=cA9mUUeD8M0gVnuwydUr6SrjpbWb3LCpDqhFarXCBRM,21656
12
+ gator_command/scripts/gator-dashboard.py,sha256=qbJIburALuQUP51FSMemZRIdrkx0NKg4uT4RC9FZrD0,54889
13
+ gator_command/scripts/gator-deploy.py,sha256=qZSrkGGVVEFeIeD_6NlixO-374wcntvHfGJhCc9ezYg,31081
14
+ gator_command/scripts/gator-drift.py,sha256=Mnyf1b7eHl6noiCmQqNaNF_Aj-Psscr9KBhpyx54s1A,21206
15
+ gator_command/scripts/gator-enforce.py,sha256=aLDe5SM8hWmorJTDAcFFM41lavuCbC3YEod_lGHpUtw,2607
16
+ gator_command/scripts/gator-fleet-intel.py,sha256=RNTWUhrTUG8zjE14_hUe6r0cSGbTB6NlEquP6wHm8MI,15453
17
+ gator_command/scripts/gator-fleet-report.py,sha256=XHzOkr2hcAO_PhPgl9XRl3xZt-upD0cvbfHhRf1PqGg,22249
18
+ gator_command/scripts/gator-init-command-post.py,sha256=51nDb3dAAczKFt29FcnOI07IJNbyb8MnGUOtiJLkJkw,9512
19
+ gator_command/scripts/gator-init.py,sha256=XWB1SvSPpfXMR-RuxPCKbrtmuo9pmUc6l7UENkLGeB0,13362
20
+ gator_command/scripts/gator-machine-id.py,sha256=P7dWLnHyRziKg0Cnbd3iOYSjguBV-FxHQOTW3epsxz8,4532
21
+ gator_command/scripts/gator-policy-status.py,sha256=hZNEvfLwV4edYNEHx9k1fU-KZ6ovQmNxSng6s_D7XHQ,22666
22
+ gator_command/scripts/gator-pulse.py,sha256=SvEXt4bT7jXgggcsRVLdwbIC2dCgAMUama4u5LgSZcM,16145
23
+ gator_command/scripts/gator-repo-status.py,sha256=vTJT3TGtjJbxoNQADp7jJ7XaxNiAzU77FXdnlavXH6c,23541
24
+ gator_command/scripts/gator-session-common.py,sha256=KT08DB81CFalH4YSssPeU8CydoOG5uF59JSVADYerXk,13431
25
+ gator_command/scripts/gator-session-sink.py,sha256=HbWPK3sjvsweWEwlC2WTxwnr86CqfoUL42oZVkBI6jU,30508
26
+ gator_command/scripts/gator-sessions.py,sha256=FpcXv4rqcAZPqfYvsCDALpQPmRSxrK41fr4YVNwDJ5A,44666
27
+ gator_command/scripts/gator-update.py,sha256=xilLuV7NO8Cpv9gK9hhbudy1Ofjq13OZ4C759kksPRQ,21690
28
+ gator_command/scripts/gator-version.py,sha256=jyuvF9mJoEc768-r5Pa2WokPqtD0u0rt_WC1sp2AGWA,1094
29
+ gator_command/scripts/gator_core.py,sha256=SsnO7Wp49YwhxYRXfTs5qU8A5L5HbpZHWn5Zfr6FzPU,17130
30
+ gator_command/scripts/gator_remote.py,sha256=iKsUeuuyXhOrBO-DUrwIm37RccMAfGJAUaSNRSMTuxE,13231
31
+ gator_command/scripts/gator_runtime.py,sha256=rqDCvwPJhMCQ7B1cFHiJwAksDDz6G-q5AG_qo85vm7Y,5117
32
+ gator_command/scripts/gatorize-actions.sh,sha256=zNPxZntDJSWM076VBXJ1Ki9abs8ii1FTThzL6sFLab0,35529
33
+ gator_command/scripts/gatorize-lib.sh,sha256=ERAKBLich5kAky07YhCQ0khLZF5dsIQ7oYz7joHUSso,5961
34
+ gator_command/scripts/gatorize-post.sh,sha256=KMOTYedso0NCKCFZ_avusdM5RNeWNI_n7icgjEWeiyk,16925
35
+ gator_command/scripts/gatorize.py,sha256=HxEhLamGuYdWjxOeESPceQnKzVPjeC3h5onfmp_fIng,47888
36
+ gator_command/scripts/gatorize.sh,sha256=Of3cweO1Z2So6NprpTP3OBSamIP3FzC5ZgKmRw145oE,6719
37
+ gator_command/scripts/generate_markdown.py,sha256=mLxNoxrCFnWEzFf7zTIiAyzrAJU4ggF3EA7vbdAa4Lk,7197
38
+ gator_command/scripts/generate_wiki.py,sha256=urSY13svHmYCEevnotEjh108mE5JZ67gBeBK1kskXrs,13894
39
+ gator_command/scripts/graph_health.py,sha256=Mntm7IXjrKWwg_ti2kEuG4Q3NND3bn4Jg-tlINzD2ZM,29761
40
+ gator_command/scripts/memex-lint.py,sha256=PnYQLA8b7Z0ucTWTji0bwrjwT4c4AVGQOVeBymIEH28,9117
41
+ gator_command/scripts/memex-lint.sh,sha256=0aG_xtMy6HE5M1IPhZCvqNz3KSpxQCWk0bJ6vBgOTPo,7066
42
+ gator_command/scripts/memex.py,sha256=KcwQHMKkqB2ZAIHMgZlDEsey7SZErVhkyfe3aaiTwTQ,57226
43
+ gator_command/scripts/memex_formatters.py,sha256=kqD0fl59CI8bUrlwlTXiWgLKKjKIC51hopvK0-LHV3M,7347
44
+ gator_command/scripts/memex_state.py,sha256=dLwsqUpGlDfV_3LjEAC3mTSk2pAQ3Epl9l5GCUyxsqg,7839
45
+ gator_command/scripts/spawn.py,sha256=SnXKUrb-LvpPglgLDvaOP8_orWJ2VvIZyV0LvlZCyno,27467
46
+ gator_command/scripts/dashboard/dashboard.css,sha256=ooKR6anKKPmAriKuoBI4BloFKWGMIqUO2COr1aI46Oo,21983
47
+ gator_command/scripts/dashboard/dashboard.html,sha256=WDO4Js3Zg2Y58KKIuOtOgrSuu7CLyJwd2gyN_I9IDlA,2829
48
+ gator_command/scripts/dashboard/dashboard.js,sha256=eUNtCVDzxqim8imGkKrRvn7vTJ4tZ0wG_UGEMdzGcbw,17357
49
+ gator_command/scripts/dashboard/views/audit.js,sha256=hHudgKeEHx8oubOGokAc41-XpHQOnKMsOuU6Xrn8ipE,9665
50
+ gator_command/scripts/dashboard/views/fleet.js,sha256=0JQumjtUVj0oHwggxuUpJ3ZT5d4IaLR8FNi-frk2Eak,11894
51
+ gator_command/scripts/dashboard/views/repo.js,sha256=fJdlJXd8mD78uD-jOCJHiTyOR9luD7NkoATkDijar3k,25325
52
+ gator_command/scripts/dashboard/views/settings.js,sha256=XDKPHVInZ8XOOxegRfUdYEN3ymBfzWgbTEdGTVPhd6E,7153
53
+ gator_command/scripts/dashboard/views/updates.js,sha256=H6UvRWQd_2ZE389yQ7uE_0YDDe8OtKGppZKQ3auOt6c,12626
54
+ gator_command/templates/gator-starter/charterignore,sha256=pWNqNuvuLRqcNAwi7y394IblOlSe36IjPP9GtOGQjj0,793
55
+ gator_command/templates/gator-starter/constitution.md,sha256=ml9v-d3jKWmn_9GRYJy_hqdDHhFo_CElI51kH-OOR24,13700
56
+ gator_command/templates/gator-starter/gator-start-up.md,sha256=SqVxiY7gAzh6zQYYoWUJPuo2zoRiaC-KpV-85sqNyH4,7116
57
+ gator_command/templates/gator-starter/whiteboard.md,sha256=ew-KMamPOw2lNdI6EgPIC7tXVJ8DqZfkf758c1tyIXo,113
58
+ gator_command/templates/gator-starter/blueprints/README.md,sha256=1v-gWf36gCR-CZ7Hd1wVPMSzoRKrfzk88LGp_VMayWs,851
59
+ gator_command/templates/gator-starter/charters/README.md,sha256=z-okuJl0f7_YaOV9XW4Sch7Fa1MNc0RlKd2QVurq_S4,15048
60
+ gator_command/templates/gator-starter/charters/_template.md,sha256=niCTFU598lpB9-BSDj6H5_TIg9jGhWgvLV71tIT-gZ4,650
61
+ gator_command/templates/gator-starter/commands/commit.md,sha256=22iJ24s1AQdXmS_MP1J8ch4HY-noESobeZvq9JZZpAQ,1733
62
+ gator_command/templates/gator-starter/commands/init.md,sha256=VBfz5iegPU6ubj2RRADJ0lVscVv53W3r9d8I1kowZ3U,517
63
+ gator_command/templates/gator-starter/commands/update.md,sha256=rtq1y_tFWGSOuvzc_z-687AtSWkimTHuWi84FGCWxj4,453
64
+ gator_command/templates/gator-starter/field-guides/README.md,sha256=PNwG7m5TXv-nMWD1gDlpTwoZ-N4kKT6bCnFtoXt4E7I,1309
65
+ gator_command/templates/gator-starter/procedures/charter-alignment.md,sha256=s4KXKtReHy1Ehj0KbKVtcwnARo-V1J4xQy3x6J-yMyg,4421
66
+ gator_command/templates/gator-starter/procedures/enforcer-review.md,sha256=KtXTmmejL4kVZ6y7WFFuzfdAkQUrSJhJvUBwmTiJun0,14590
67
+ gator_command/templates/gator-starter/procedures/field-guide-generation.md,sha256=jeoH5GPAw0T-7cTUBD9EXk-kLQO_PvYXHTnM0BwlNnI,7502
68
+ gator_command/templates/gator-starter/procedures/knowledge-capture.md,sha256=u-AViIdRjF_Kmnvd2vnppLWrLBZ1IcJEkUtRvqA5I6M,2959
69
+ gator_command/templates/gator-starter/procedures/significance-check.md,sha256=yLOqkf4fXtiikzl_rfhF0RJcZU1X7PtMD9Nx2hEl00E,4452
70
+ gator_command/templates/gator-starter/reference-notes/concierge-responses.md,sha256=Hb07qKUr_oqYHYYLXk6OZ51bbb9OvfwZV2o75Tcfnzo,38739
71
+ gator_command/templates/gator-starter/reference-notes/dangerous-patterns.md,sha256=eSdZRIRcZ7-0qP7wr5N4GZWbNnhXM25FVVi7J315FiU,5950
72
+ gator_command/templates/gator-starter/reference-notes/dashboard-operations.md,sha256=SbwYpKW2F1U_rwzcDDjR6a4QPwpMqyA-j_RCaogdtdw,1088
73
+ gator_command/templates/gator-starter/reference-notes/enforcer-configuration.md,sha256=_wCZRn7xlbRADosWs2tCZke3zJfDjc6rMCrhy1cPoxw,7914
74
+ gator_command/templates/gator-starter/reference-notes/example-project.md,sha256=RrWstKAWtIfTy2LyVjymvKP2ujd0ZkC5oN0mOegyiHA,8703
75
+ gator_command/templates/gator-starter/reference-notes/failure-modes-and-self-correction.md,sha256=KPpTcWgHIcG-w0sgxog0H3ZBHlVecZh3UOCesHiGx6g,3257
76
+ gator_command/templates/gator-starter/reference-notes/git-workflow.md,sha256=Um4bc8t-ERCT5JhCiW898gINWFdKi_BAK4PeKSg_N0M,2532
77
+ gator_command/templates/gator-starter/reference-notes/identity-and-ownership.md,sha256=0eneUi9fvaKCWFsncbs5j0T43BlPkvueM0UU92Bw-hQ,2341
78
+ gator_command/templates/gator-starter/reference-notes/refactor-approach.md,sha256=PVA1uAux1sjjLHjpK30exnI5yGMaectldSVB4R7JJvs,5701
79
+ gator_command/templates/gator-starter/reference-notes/what-gator-requires-from-a-model.md,sha256=_kjX5JqviXQ_YsHVn9SRs3bmdT3fyCICZrRUBwVDX5Q,5534
80
+ gator_command/templates/gator-starter/reference-notes/why-navigation-coding-feels-different.md,sha256=nrTlU5RXAXzdF8IeMlrc3nSLfOwJDsGHiOu-vAbpE3Y,4334
81
+ gator_command/templates/gator-starter/reference-notes/workflow-profiles.md,sha256=pafa4iURyeiKPHXhdzVsAq7WUZxR0KWGPNZACSc1c2Q,8256
82
+ gator_command/templates/gator-starter/scripts/enforcer-prompt.md,sha256=qTuKsj76OZpagwnYZToXGE-jYZyOt2epSoHWWNEzwbA,2288
83
+ gator_command/templates/gator-starter/scripts/enforcer-review.py,sha256=MRJzsVPaWraqB9lovNLVSDJTkTc-RzdFGZqeIwjtUpk,62120
84
+ gator_command/templates/gator-starter/scripts/gator-approve.py,sha256=i8GuZJMy0H8X6fvPteSj6WB2hQKyG3Nve9KEbpEMqBU,4358
85
+ gator_command/templates/gator-starter/scripts/gator-enforce.py,sha256=aLDe5SM8hWmorJTDAcFFM41lavuCbC3YEod_lGHpUtw,2607
86
+ gator_command/templates/gator-starter/scripts/gator-init.py,sha256=XWB1SvSPpfXMR-RuxPCKbrtmuo9pmUc6l7UENkLGeB0,13362
87
+ gator_command/templates/gator-starter/scripts/gator-pre-commit.py,sha256=7I_MjXsiPTGvbABEm6dHJYHdO9deWWXwL2LMleorvPY,102321
88
+ gator_command/templates/gator-starter/scripts/gator-pulse.py,sha256=SvEXt4bT7jXgggcsRVLdwbIC2dCgAMUama4u5LgSZcM,16145
89
+ gator_command/templates/gator-starter/scripts/gator-update.py,sha256=xilLuV7NO8Cpv9gK9hhbudy1Ofjq13OZ4C759kksPRQ,21690
90
+ gator_command/templates/gator-starter/scripts/gator-version.py,sha256=jyuvF9mJoEc768-r5Pa2WokPqtD0u0rt_WC1sp2AGWA,1094
91
+ gator_command/templates/gator-starter/scripts/gator_core.py,sha256=U1jDWIQfhl2jXIrPfqFoop-GT-3kNcJCpU1_4n1O4HQ,17005
92
+ gator_command/templates/gator-starter/scripts/__pycache__/enforcer-review.cpython-313.pyc,sha256=xCemh2OCL_u5eJmThKgvsNo1lnGB9EkBBGzpZivw-xs,34499
93
+ gator_command/templates/gator-starter/scripts/__pycache__/gator-approve.cpython-313.pyc,sha256=fqTyKVFSTZ_yStkDZoPrTIdfM98jeSZU8Tm5V_mkk6E,6193
94
+ gator_command/templates/gator-starter/scripts/__pycache__/gator-init.cpython-313.pyc,sha256=S-mWG6asaeZtnBTY7ryg_C-Pj_P3e3vGu_ZG6UR8oOI,15124
95
+ gator_command/templates/gator-starter/scripts/__pycache__/gator-pre-commit.cpython-313.pyc,sha256=gQh6lOzASgzFGmcvPpU1Wb4NN-N3As4-5bC2HNAnTgM,82129
96
+ gator_command/templates/gator-starter/scripts/__pycache__/gator-update.cpython-313.pyc,sha256=xMZ1nI3GPucM2MVq7Cw39z5cDEMCyX5ysCf_SVix198,23696
97
+ gator_command/templates/gator-starter/scripts/hooks/commit-msg,sha256=cRYZcN-zGwuM-ubAa_tN8UehWWlQwShbXfIy2CrjclY,208
98
+ gator_command/templates/gator-starter/scripts/hooks/post-commit,sha256=FgPpF5_P7zO-ULdhMJz4vx4j5uxcMrp8QKZOKEs5g9o,272
99
+ gator_command/templates/gator-starter/scripts/hooks/pre-commit,sha256=QUmbuYb2BGu7_JZY8oAPzPo-86DSu_hDBthD6Pxzijg,186
100
+ gator_command/templates/gator-starter/scripts/hooks/__pycache__/commit-msgcpython-313.pyc,sha256=CbAUgXt7jY5qwSwdTnMqLfBP8YZDZnHNXcsaNulAv9E,532
101
+ gator_command/templates/gator-starter/scripts/hooks/__pycache__/post-commitcpython-313.pyc,sha256=IlBfgeWCT_v-wROVbmZJV-EtM-XtqBaPDC8POYmm7WU,441
102
+ gator_command/templates/gator-starter/scripts/hooks/__pycache__/pre-commitcpython-313.pyc,sha256=uCsGY1mLMK9OVoTKb7wGx5m92lJzUZIcaUN4S9X4PM8,456
103
+ gator_command/templates/gator-starter/sessions/.gitignore,sha256=8WIlWCckcGD8heCJnh6yZPZ2JyhRmjBvfWbHI7qpjqs,364
104
+ gator_command/templates/gator-starter/vault/.gitkeep,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
105
+ gator_command-1.0.0.dist-info/licenses/LICENSE,sha256=DiHj40_qwu_WN8JhKelUHFGmzwDEAW86BPXgES1WKVs,1086
106
+ gator_command-1.0.0.dist-info/METADATA,sha256=s4bhzTg8LlVmOfPyVuWUq4ltk9WaZOP7TGMpP9wiNmU,6088
107
+ gator_command-1.0.0.dist-info/WHEEL,sha256=aeYiig01lYGDzBgS8HxWXOg3uV61G9ijOsup-k9o1sk,91
108
+ gator_command-1.0.0.dist-info/entry_points.txt,sha256=3M1GGUuCP9DILyIW0b__3n05yMVt0UKjjZ0yXttfXx0,49
109
+ gator_command-1.0.0.dist-info/top_level.txt,sha256=RfS_nWM6EgP3MrYjLac4hTWNce2GWRYqTacla2xbL3Y,14
110
+ gator_command-1.0.0.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (82.0.1)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ gator = gator_command.cli:main
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Cumberland Laboratories, Inc.
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.
@@ -0,0 +1 @@
1
+ gator_command