crackerjack 0.29.0__py3-none-any.whl → 0.31.4__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.
Potentially problematic release.
This version of crackerjack might be problematic. Click here for more details.
- crackerjack/CLAUDE.md +1005 -0
- crackerjack/RULES.md +380 -0
- crackerjack/__init__.py +42 -13
- crackerjack/__main__.py +225 -253
- crackerjack/agents/__init__.py +41 -0
- crackerjack/agents/architect_agent.py +281 -0
- crackerjack/agents/base.py +169 -0
- crackerjack/agents/coordinator.py +512 -0
- crackerjack/agents/documentation_agent.py +498 -0
- crackerjack/agents/dry_agent.py +388 -0
- crackerjack/agents/formatting_agent.py +245 -0
- crackerjack/agents/import_optimization_agent.py +281 -0
- crackerjack/agents/performance_agent.py +669 -0
- crackerjack/agents/proactive_agent.py +104 -0
- crackerjack/agents/refactoring_agent.py +788 -0
- crackerjack/agents/security_agent.py +529 -0
- crackerjack/agents/test_creation_agent.py +652 -0
- crackerjack/agents/test_specialist_agent.py +486 -0
- crackerjack/agents/tracker.py +212 -0
- crackerjack/api.py +560 -0
- crackerjack/cli/__init__.py +24 -0
- crackerjack/cli/facade.py +104 -0
- crackerjack/cli/handlers.py +267 -0
- crackerjack/cli/interactive.py +471 -0
- crackerjack/cli/options.py +401 -0
- crackerjack/cli/utils.py +18 -0
- crackerjack/code_cleaner.py +670 -0
- crackerjack/config/__init__.py +19 -0
- crackerjack/config/hooks.py +218 -0
- crackerjack/core/__init__.py +0 -0
- crackerjack/core/async_workflow_orchestrator.py +406 -0
- crackerjack/core/autofix_coordinator.py +200 -0
- crackerjack/core/container.py +104 -0
- crackerjack/core/enhanced_container.py +542 -0
- crackerjack/core/performance.py +243 -0
- crackerjack/core/phase_coordinator.py +561 -0
- crackerjack/core/proactive_workflow.py +316 -0
- crackerjack/core/session_coordinator.py +289 -0
- crackerjack/core/workflow_orchestrator.py +640 -0
- crackerjack/dynamic_config.py +577 -0
- crackerjack/errors.py +263 -41
- crackerjack/executors/__init__.py +11 -0
- crackerjack/executors/async_hook_executor.py +431 -0
- crackerjack/executors/cached_hook_executor.py +242 -0
- crackerjack/executors/hook_executor.py +345 -0
- crackerjack/executors/individual_hook_executor.py +669 -0
- crackerjack/intelligence/__init__.py +44 -0
- crackerjack/intelligence/adaptive_learning.py +751 -0
- crackerjack/intelligence/agent_orchestrator.py +551 -0
- crackerjack/intelligence/agent_registry.py +414 -0
- crackerjack/intelligence/agent_selector.py +502 -0
- crackerjack/intelligence/integration.py +290 -0
- crackerjack/interactive.py +576 -315
- crackerjack/managers/__init__.py +11 -0
- crackerjack/managers/async_hook_manager.py +135 -0
- crackerjack/managers/hook_manager.py +137 -0
- crackerjack/managers/publish_manager.py +411 -0
- crackerjack/managers/test_command_builder.py +151 -0
- crackerjack/managers/test_executor.py +435 -0
- crackerjack/managers/test_manager.py +258 -0
- crackerjack/managers/test_manager_backup.py +1124 -0
- crackerjack/managers/test_progress.py +144 -0
- crackerjack/mcp/__init__.py +0 -0
- crackerjack/mcp/cache.py +336 -0
- crackerjack/mcp/client_runner.py +104 -0
- crackerjack/mcp/context.py +615 -0
- crackerjack/mcp/dashboard.py +636 -0
- crackerjack/mcp/enhanced_progress_monitor.py +479 -0
- crackerjack/mcp/file_monitor.py +336 -0
- crackerjack/mcp/progress_components.py +569 -0
- crackerjack/mcp/progress_monitor.py +949 -0
- crackerjack/mcp/rate_limiter.py +332 -0
- crackerjack/mcp/server.py +22 -0
- crackerjack/mcp/server_core.py +244 -0
- crackerjack/mcp/service_watchdog.py +501 -0
- crackerjack/mcp/state.py +395 -0
- crackerjack/mcp/task_manager.py +257 -0
- crackerjack/mcp/tools/__init__.py +17 -0
- crackerjack/mcp/tools/core_tools.py +249 -0
- crackerjack/mcp/tools/error_analyzer.py +308 -0
- crackerjack/mcp/tools/execution_tools.py +370 -0
- crackerjack/mcp/tools/execution_tools_backup.py +1097 -0
- crackerjack/mcp/tools/intelligence_tool_registry.py +80 -0
- crackerjack/mcp/tools/intelligence_tools.py +314 -0
- crackerjack/mcp/tools/monitoring_tools.py +502 -0
- crackerjack/mcp/tools/proactive_tools.py +384 -0
- crackerjack/mcp/tools/progress_tools.py +141 -0
- crackerjack/mcp/tools/utility_tools.py +341 -0
- crackerjack/mcp/tools/workflow_executor.py +360 -0
- crackerjack/mcp/websocket/__init__.py +14 -0
- crackerjack/mcp/websocket/app.py +39 -0
- crackerjack/mcp/websocket/endpoints.py +559 -0
- crackerjack/mcp/websocket/jobs.py +253 -0
- crackerjack/mcp/websocket/server.py +116 -0
- crackerjack/mcp/websocket/websocket_handler.py +78 -0
- crackerjack/mcp/websocket_server.py +10 -0
- crackerjack/models/__init__.py +31 -0
- crackerjack/models/config.py +93 -0
- crackerjack/models/config_adapter.py +230 -0
- crackerjack/models/protocols.py +118 -0
- crackerjack/models/task.py +154 -0
- crackerjack/monitoring/ai_agent_watchdog.py +450 -0
- crackerjack/monitoring/regression_prevention.py +638 -0
- crackerjack/orchestration/__init__.py +0 -0
- crackerjack/orchestration/advanced_orchestrator.py +970 -0
- crackerjack/orchestration/execution_strategies.py +341 -0
- crackerjack/orchestration/test_progress_streamer.py +636 -0
- crackerjack/plugins/__init__.py +15 -0
- crackerjack/plugins/base.py +200 -0
- crackerjack/plugins/hooks.py +246 -0
- crackerjack/plugins/loader.py +335 -0
- crackerjack/plugins/managers.py +259 -0
- crackerjack/py313.py +8 -3
- crackerjack/services/__init__.py +22 -0
- crackerjack/services/cache.py +314 -0
- crackerjack/services/config.py +347 -0
- crackerjack/services/config_integrity.py +99 -0
- crackerjack/services/contextual_ai_assistant.py +516 -0
- crackerjack/services/coverage_ratchet.py +347 -0
- crackerjack/services/debug.py +736 -0
- crackerjack/services/dependency_monitor.py +617 -0
- crackerjack/services/enhanced_filesystem.py +439 -0
- crackerjack/services/file_hasher.py +151 -0
- crackerjack/services/filesystem.py +395 -0
- crackerjack/services/git.py +165 -0
- crackerjack/services/health_metrics.py +611 -0
- crackerjack/services/initialization.py +847 -0
- crackerjack/services/log_manager.py +286 -0
- crackerjack/services/logging.py +174 -0
- crackerjack/services/metrics.py +578 -0
- crackerjack/services/pattern_cache.py +362 -0
- crackerjack/services/pattern_detector.py +515 -0
- crackerjack/services/performance_benchmarks.py +653 -0
- crackerjack/services/security.py +163 -0
- crackerjack/services/server_manager.py +234 -0
- crackerjack/services/smart_scheduling.py +144 -0
- crackerjack/services/tool_version_service.py +61 -0
- crackerjack/services/unified_config.py +437 -0
- crackerjack/services/version_checker.py +248 -0
- crackerjack/slash_commands/__init__.py +14 -0
- crackerjack/slash_commands/init.md +122 -0
- crackerjack/slash_commands/run.md +163 -0
- crackerjack/slash_commands/status.md +127 -0
- crackerjack-0.31.4.dist-info/METADATA +742 -0
- crackerjack-0.31.4.dist-info/RECORD +148 -0
- crackerjack-0.31.4.dist-info/entry_points.txt +2 -0
- crackerjack/.gitignore +0 -34
- crackerjack/.libcst.codemod.yaml +0 -18
- crackerjack/.pdm.toml +0 -1
- crackerjack/.pre-commit-config-ai.yaml +0 -149
- crackerjack/.pre-commit-config-fast.yaml +0 -69
- crackerjack/.pre-commit-config.yaml +0 -114
- crackerjack/crackerjack.py +0 -4140
- crackerjack/pyproject.toml +0 -285
- crackerjack-0.29.0.dist-info/METADATA +0 -1289
- crackerjack-0.29.0.dist-info/RECORD +0 -17
- {crackerjack-0.29.0.dist-info → crackerjack-0.31.4.dist-info}/WHEEL +0 -0
- {crackerjack-0.29.0.dist-info → crackerjack-0.31.4.dist-info}/licenses/LICENSE +0 -0
|
@@ -0,0 +1,148 @@
|
|
|
1
|
+
crackerjack/CLAUDE.md,sha256=MbWyMBI57MVoyhJqww3Rb7ol1HfUDzne_sVdzwi8E20,40704
|
|
2
|
+
crackerjack/RULES.md,sha256=TdhFLM4db7tXORebYvyAohnEWNJnBR-qtA0aVfbvttY,15725
|
|
3
|
+
crackerjack/__init__.py,sha256=k8_Ev_3fWdjFtGNSJdSOvyaSLW54y3j484d3a8k_Ob4,1396
|
|
4
|
+
crackerjack/__main__.py,sha256=KxcNONKnvagCJ7pXAj-f4LQNANQBvYsj81siDwDg6lo,7290
|
|
5
|
+
crackerjack/api.py,sha256=m4KaQt40uFTGYnj18ybQE4zTWZrjnpM0VvOfBN3cObo,18422
|
|
6
|
+
crackerjack/code_cleaner.py,sha256=XcW_sooKLVS31CIvjlfnoIbbK1GaS12A5uKI_8iAVJM,23576
|
|
7
|
+
crackerjack/dynamic_config.py,sha256=EuhiLNUUsO6sv-1nTzSxUkL4FY3LIn2-wqRova7IRlI,17461
|
|
8
|
+
crackerjack/errors.py,sha256=OTLutJqkTgMnOE2mItFHFumnh1fePHTZE__g-65JOwo,10096
|
|
9
|
+
crackerjack/interactive.py,sha256=BWMOHAFtv8AL1Ypjznpwr8BNcOrYVIgXKmh2KyjAVAw,21310
|
|
10
|
+
crackerjack/py313.py,sha256=i3Z6_JzHbMdmd4cH9ShqZ1CI5gCXivWtGIWJcJM3ZSI,6058
|
|
11
|
+
crackerjack/agents/__init__.py,sha256=pFXHd0hZkLTzxGGE9PB44HmLlWN8SLmVzE5GPLVjh0I,1030
|
|
12
|
+
crackerjack/agents/architect_agent.py,sha256=N6J7wjbd0eRPxy86IiSn--R-YnLf7pLA0JINiD3BWWA,10540
|
|
13
|
+
crackerjack/agents/base.py,sha256=RT1dYSaNNoffr-a2rfqLmvR_4415GwAYUBDWCel19vE,5070
|
|
14
|
+
crackerjack/agents/coordinator.py,sha256=jnKelnJGQDjSbjL2f6DyVB98FAm3c5FJF86MCX7Lpu0,18449
|
|
15
|
+
crackerjack/agents/documentation_agent.py,sha256=0V_vfpYL8L00GiMCApIbMcaUznHSGRQS8oAHBDRpP6Y,17412
|
|
16
|
+
crackerjack/agents/dry_agent.py,sha256=pzzQV5YS7NBox9YWdNIW6QxwLrrxKzpsr_w0e7Jzy18,13859
|
|
17
|
+
crackerjack/agents/formatting_agent.py,sha256=AXXAMzx-kOYzsqF1_3CH4CHd0pekKd4ej6BbWDiBUyU,7271
|
|
18
|
+
crackerjack/agents/import_optimization_agent.py,sha256=ZpAPPvlFibYGquM03lIw3K9Sm7uGlRHhlwKTLn3xoyc,9859
|
|
19
|
+
crackerjack/agents/performance_agent.py,sha256=bwBK9kmYYA-Pu0o5uks2Fyna8WXt2zrpR31kNV5N-CE,23672
|
|
20
|
+
crackerjack/agents/proactive_agent.py,sha256=0lPVrehnUu0ipasly0zx81BaihFQYd_a0-_U8JcHTJ8,3902
|
|
21
|
+
crackerjack/agents/refactoring_agent.py,sha256=15eL-p0o8RWu5n6hnqmBqKK9NIOfInVdQYguikpevaU,28939
|
|
22
|
+
crackerjack/agents/security_agent.py,sha256=_AJWx2a7l-HiJNKGpnTKfFC3Y8iwg2ljdnk78Abu6s8,18384
|
|
23
|
+
crackerjack/agents/test_creation_agent.py,sha256=mhavBlQojP2iV15wOps0xLpyGWqUYCXUUY1WQJTkgUk,22256
|
|
24
|
+
crackerjack/agents/test_specialist_agent.py,sha256=3QPwQQTRTc3KU7o3ya8xRsJW5Xg-YJ0q4C7ddGkgaeU,16276
|
|
25
|
+
crackerjack/agents/tracker.py,sha256=B4PuxdJ3g-K5i-Z1svvhx8KRhsZr4PtVOTL1SLfpeMg,7046
|
|
26
|
+
crackerjack/cli/__init__.py,sha256=6pnXZIglNzax4XA2lWfiqAZQs24Dr7GbXUwIwCF_9_w,583
|
|
27
|
+
crackerjack/cli/facade.py,sha256=2WoFl639mghopyTvRMVhtdgIZsWg3JdetRMgp6wYUBA,3904
|
|
28
|
+
crackerjack/cli/handlers.py,sha256=e6YigW9CgmzU5bvtRqrXMmlxRlHm2i4jSesOe9pLK7Q,9013
|
|
29
|
+
crackerjack/cli/interactive.py,sha256=KSLHce1EvzxFML7xBut1fpBqjLkG41HNoJKgLuzWgK0,16895
|
|
30
|
+
crackerjack/cli/options.py,sha256=75zoKNcxn9HUsXkWqeYvvzNvhETDH45inP6gLl3o-KQ,12339
|
|
31
|
+
crackerjack/cli/utils.py,sha256=VHR-PALgA8fsKiPytH0cl8feXrtWKCajjk9TS2piK5w,537
|
|
32
|
+
crackerjack/config/__init__.py,sha256=b0481N2f_JvGufMPcbo5IXu2VjYd111r1BHw0oD3x7o,330
|
|
33
|
+
crackerjack/config/hooks.py,sha256=6DHJkWRL5c5Ip2bw0tevRt_xzRFKSfeO7tQkGtoZtjs,5367
|
|
34
|
+
crackerjack/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
35
|
+
crackerjack/core/async_workflow_orchestrator.py,sha256=XCy_5L2xTRZaGHjO_ysuMV7WuMgRgLsSXiqBJO_nyXE,15069
|
|
36
|
+
crackerjack/core/autofix_coordinator.py,sha256=txbXTeGm-gJwuyRekVDbvvKgG0gQ1GqB3BeGdQ8vqpY,7921
|
|
37
|
+
crackerjack/core/container.py,sha256=e9_1YnWHijUJ0yl23lpgf9mennVQy8NkgJBKtZstG-M,2889
|
|
38
|
+
crackerjack/core/enhanced_container.py,sha256=fl5XvhNY0fzDnD5hSr16yQXGtL_AW01Wf4F4PL1L0P4,18169
|
|
39
|
+
crackerjack/core/performance.py,sha256=sL9g2-_JflofnsXW6LUCwp9MaUDQprfV8lSG18s9mns,7601
|
|
40
|
+
crackerjack/core/phase_coordinator.py,sha256=bgVrcA2C0E2UD29wjYArlsN3lzupYUZ8DV4DhzOQgP8,20334
|
|
41
|
+
crackerjack/core/proactive_workflow.py,sha256=ML1amNJI4Gx0dFJK5AKdvB0zNc1chbq-ZyqnhUi4tms,12677
|
|
42
|
+
crackerjack/core/session_coordinator.py,sha256=hJKLthZBzX7fXm8AmNMFLEjITNmKxDGqM58Om6p7fr0,9893
|
|
43
|
+
crackerjack/core/workflow_orchestrator.py,sha256=lTEgmmLMeigOjY2TzNRr1mF4Bgl6aup9wYIB-UaaNCE,24144
|
|
44
|
+
crackerjack/executors/__init__.py,sha256=HF-DmXvKN45uKKDdiMxOT9bYxuy1B-Z91BihOhkK5lg,322
|
|
45
|
+
crackerjack/executors/async_hook_executor.py,sha256=3U-AHToGNBojnlDsXK6HLv4CfJvv64UqTmCWYAoLcb8,15958
|
|
46
|
+
crackerjack/executors/cached_hook_executor.py,sha256=LyrFINWbixB-0xEnaU0F2ZUBFUWrAdaTKvj_JW1Wss0,8186
|
|
47
|
+
crackerjack/executors/hook_executor.py,sha256=uZ78CSaYXBRKOyHVlT9w_YW4u09vRxI1zHfWohkumtI,12020
|
|
48
|
+
crackerjack/executors/individual_hook_executor.py,sha256=Fm58XlKtGAzTvkvFIOv7ILmN01QQy6QQeScKZ84mgFw,23526
|
|
49
|
+
crackerjack/intelligence/__init__.py,sha256=v5ovNZ9jLENYp4sizRINqxLw63b23lvzg6bGk8d0s-M,1106
|
|
50
|
+
crackerjack/intelligence/adaptive_learning.py,sha256=VvOAYAEyuKvwSwhSOikuVgGlwSpOzvtaJFIkJuemQtQ,28687
|
|
51
|
+
crackerjack/intelligence/agent_orchestrator.py,sha256=xdcuEOgSx5r51RY5JHHX3DT3xzrAVQz_LwFbEV0lPuE,19908
|
|
52
|
+
crackerjack/intelligence/agent_registry.py,sha256=i4VJq2TFzY-dGrVmsUuJ5GF-5felPpfoEinTqUtrbD8,14837
|
|
53
|
+
crackerjack/intelligence/agent_selector.py,sha256=RKU5z8lgu3ODz9l5_gV35Rq5GmUIqQfXR-Y-_b1XA38,17860
|
|
54
|
+
crackerjack/intelligence/integration.py,sha256=AATxpzwfz3zfZHlnRvmyo4MnM8RM84QflPSqnKsK4PI,9968
|
|
55
|
+
crackerjack/managers/__init__.py,sha256=PFWccXx4hDQA76T02idAViOLVD-aPeVpgjdfSkh_Dmk,298
|
|
56
|
+
crackerjack/managers/async_hook_manager.py,sha256=MysMwbCww-mImoDdhV0PzHxRKFw8N_YKp8S-Sbx4GLU,4638
|
|
57
|
+
crackerjack/managers/hook_manager.py,sha256=3qAKLYqoJGPJ8NAUB1KEoWHZafjs6564P9udzklW-rg,4704
|
|
58
|
+
crackerjack/managers/publish_manager.py,sha256=V0Rmc5azG8TsxPknr-1MB2JtemWv_HwIGffssf8kYOs,15216
|
|
59
|
+
crackerjack/managers/test_command_builder.py,sha256=MdDz9AYSLOoLmI-8zoq3zd2SXF3DeuIkANa76h9cINI,5295
|
|
60
|
+
crackerjack/managers/test_executor.py,sha256=Kduf_TNu12uYdyCGiMsRqdpgmVKVybCaNIMEqZoKXEE,16055
|
|
61
|
+
crackerjack/managers/test_manager.py,sha256=BqCaMCUhXx_MJV8CmqXQ-54gZErfdCU5ejgvps4vXPo,9735
|
|
62
|
+
crackerjack/managers/test_manager_backup.py,sha256=tptpX99nw-caLJMVga4Hss7grJRqcFHz1JkRBqro4sE,41307
|
|
63
|
+
crackerjack/managers/test_progress.py,sha256=HqIqvKzguy8zj9XLyKtQwm9UVCfKukAZ8kL5Bb0CPr8,5037
|
|
64
|
+
crackerjack/mcp/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
65
|
+
crackerjack/mcp/cache.py,sha256=U_SFGnrTkHZFPkm1h93pYYGhkdZkjyCeocCMjWEev5Y,12057
|
|
66
|
+
crackerjack/mcp/client_runner.py,sha256=mLyOwsi8VwX7Zi4bxqjYzGSoM8JcKuN-Ex9SJqNa1m8,2973
|
|
67
|
+
crackerjack/mcp/context.py,sha256=WSkFqbEjrNWQEuLuApI_h82GjQkEJCZ_laAWYVuU24I,21255
|
|
68
|
+
crackerjack/mcp/dashboard.py,sha256=0pQoI_eInqSvMp24VwjsZ1yig-1FNjGE5K_1CFHn89k,19322
|
|
69
|
+
crackerjack/mcp/enhanced_progress_monitor.py,sha256=lZ1MF7B_Mc9Xe4oRDNNzhlBVuCG1eds1cD0NIC56-vc,16329
|
|
70
|
+
crackerjack/mcp/file_monitor.py,sha256=8n4EQfQawU2dyAU3C1GWw0PdGkdn-xsdOQUfom7DuQ0,11376
|
|
71
|
+
crackerjack/mcp/progress_components.py,sha256=2TwnEIBUrEMHpBi4aEDEHTvvlycEgEKe5wfqGCFzPSo,19410
|
|
72
|
+
crackerjack/mcp/progress_monitor.py,sha256=JsHuwGGfl2ftnPwtoMp5WFMsSyxPop0T88nlfM5OKA0,34534
|
|
73
|
+
crackerjack/mcp/rate_limiter.py,sha256=P527YYRQlE_9WZAGLJxz6fpcfEjTrqvYBYoTJJXeqks,12228
|
|
74
|
+
crackerjack/mcp/server.py,sha256=-AdHHoFNAtoPM1A3_M2giZbIbggUhhvv16uIXk2xqNo,403
|
|
75
|
+
crackerjack/mcp/server_core.py,sha256=qDlOYTRsVpWYzmMT2T1wPhxvO_kAAbpk3LgLMqii3vU,6935
|
|
76
|
+
crackerjack/mcp/service_watchdog.py,sha256=-7DjyQeVOrB5cJEPLL2FyQKNa5YiyDhRWE48mohO2cQ,16780
|
|
77
|
+
crackerjack/mcp/state.py,sha256=32MRElRarcnLd-NmuyOY23J7QbovNG-V6SsMeYl9Vkw,14031
|
|
78
|
+
crackerjack/mcp/task_manager.py,sha256=3YjAN8pcgiKEqTFzseeDKoXRtupBCnAeE148L8Z1TvE,8560
|
|
79
|
+
crackerjack/mcp/websocket_server.py,sha256=Dsw_orJOSeO7t7zRiVErh8GLp5jAaGab6shOeQTynbw,203
|
|
80
|
+
crackerjack/mcp/tools/__init__.py,sha256=T_RMPXHQQWJLvSJjrPkJYtWi5tmyoRrzm0WS2G--iwU,613
|
|
81
|
+
crackerjack/mcp/tools/core_tools.py,sha256=SXkYo5knJYKZRVdXjgobTcOXllCsCVTkM7orRM5NcI4,8476
|
|
82
|
+
crackerjack/mcp/tools/error_analyzer.py,sha256=VwYdSL4OyYsbjbSTeZBmTLhjKu5Vm-CC7nCzX2lF620,9592
|
|
83
|
+
crackerjack/mcp/tools/execution_tools.py,sha256=AAv1iLumpIvGWdvtYnRKTlo5M0YZS7lVEWcpumk15rM,11875
|
|
84
|
+
crackerjack/mcp/tools/execution_tools_backup.py,sha256=3kl2ACo8zwkof8I7OC4PMJez3kJYDGqZQp1lpa9XRqE,37392
|
|
85
|
+
crackerjack/mcp/tools/intelligence_tool_registry.py,sha256=4vSmxdJeBre5EOBu173SmRHPdYQyjazWSngKfsBp2ms,2501
|
|
86
|
+
crackerjack/mcp/tools/intelligence_tools.py,sha256=MteNXiCzEVA12-qJl0NMfIYmRG5nxQStTBugub03ths,10798
|
|
87
|
+
crackerjack/mcp/tools/monitoring_tools.py,sha256=tcMIc0-qj35QbQp-5fNM47tnyLmjieYekKmKxmnfxns,18542
|
|
88
|
+
crackerjack/mcp/tools/proactive_tools.py,sha256=0ax3clOEJ9yoHTTnvE3IFoutjoDZIpvFgIBowL6ANfU,14067
|
|
89
|
+
crackerjack/mcp/tools/progress_tools.py,sha256=e38tUa4Pqq_ZQrDKrQIag-WmaVqW7BkhH0x4IfcMeRI,4600
|
|
90
|
+
crackerjack/mcp/tools/utility_tools.py,sha256=MIv1CGR8vLeQEdKzR8xsNYj5A9TG_LXWp86drdKReXY,11849
|
|
91
|
+
crackerjack/mcp/tools/workflow_executor.py,sha256=vusojdQSCa2TXGZ-Wb_pZKSPVsXtlFqqhgLS3Zmqn4s,10337
|
|
92
|
+
crackerjack/mcp/websocket/__init__.py,sha256=lZzyfvYjywHfqyy5X3wWR_jgBkRUxYSpgjdKALBzZcI,345
|
|
93
|
+
crackerjack/mcp/websocket/app.py,sha256=AXijAplfW-8NwWDrOON30Ol5qcMKdc64npTY2YEkX8s,1193
|
|
94
|
+
crackerjack/mcp/websocket/endpoints.py,sha256=L5zZzqhZtLFKF-Eh928jnwQIAIwunBSMrIaBoyaOaAE,20888
|
|
95
|
+
crackerjack/mcp/websocket/jobs.py,sha256=_BPahnwA3gd8yeyfjQgpI14bDOc9Bx_SoxOfaLBkgwk,9373
|
|
96
|
+
crackerjack/mcp/websocket/server.py,sha256=zJEWnsYR_tsgZDR8ZCSTMIGqEYu4781fq5NlSXr1pqI,3532
|
|
97
|
+
crackerjack/mcp/websocket/websocket_handler.py,sha256=Q3zr1LjP2xPGrAam8yU3_ViQNIW5jf0Yq51ZXhM9EbE,2682
|
|
98
|
+
crackerjack/models/__init__.py,sha256=LtKdnwSPDLxKDfGbRa0BuWu50qL7r6EngGNsQRFT6ZY,598
|
|
99
|
+
crackerjack/models/config.py,sha256=M7aIIdEP-aEthtFdS28JmztnEMVOZL8zuy5BiOVnNfg,2194
|
|
100
|
+
crackerjack/models/config_adapter.py,sha256=paCdTmNYsAH5MwTYbz2MpK2wvdVYGMjVMagIeC2s3aU,7350
|
|
101
|
+
crackerjack/models/protocols.py,sha256=t8j0f3Zagn8I8Xv0g1yy633r5Df4bAej3FBpJjMopLg,2999
|
|
102
|
+
crackerjack/models/task.py,sha256=58e6QQ6dJ9_cCz2F8EPa1FGwBYWKdLGMMSt48Xlpxis,4422
|
|
103
|
+
crackerjack/monitoring/ai_agent_watchdog.py,sha256=VkEoSufouyzfALUS0C9ttvu9bxKgyarVc_6YF8z_x_0,16937
|
|
104
|
+
crackerjack/monitoring/regression_prevention.py,sha256=f3midxG249E8pMYUulnllJR1i8mLG8aFkwbPSNzDe-Y,23771
|
|
105
|
+
crackerjack/orchestration/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
106
|
+
crackerjack/orchestration/advanced_orchestrator.py,sha256=_a_uvKgDajA6WGvrtU8QJgMz3w-4IEae066E74YKD2Y,35868
|
|
107
|
+
crackerjack/orchestration/execution_strategies.py,sha256=W5kV664X85C2T2NtbDFLZ8sNbOwgMup7GfDhoQ255Pw,11811
|
|
108
|
+
crackerjack/orchestration/test_progress_streamer.py,sha256=7xuavs_TMVfN8EP-BJo2tOfmh0aPsz8_wcb6pQ2WPU8,21726
|
|
109
|
+
crackerjack/plugins/__init__.py,sha256=B7hy9b9amJVbYLHgIz8kgTI29j-vYxsUY_sZ5ISbXU0,386
|
|
110
|
+
crackerjack/plugins/base.py,sha256=Tkmi9OsF0wFy91IhDnpiFf6RiRbtqOwzH1UtRcQGQF8,5711
|
|
111
|
+
crackerjack/plugins/hooks.py,sha256=JkMJNsvkyZMQheyvpZOuLgHg1_rjinqRtMWg7SE4V_c,7317
|
|
112
|
+
crackerjack/plugins/loader.py,sha256=9RmA5Lkizz5BADn-aJDGekISyL7C_O2Grr1tB6undHY,10814
|
|
113
|
+
crackerjack/plugins/managers.py,sha256=UBILasJgJrs1cRS8WZUBs91EmoZiTDgLxkDEsX1YPAA,8585
|
|
114
|
+
crackerjack/services/__init__.py,sha256=thXyf5Yh6WRsnGjG3onf5Obe1xbd_p72Fm2tIl1IA3s,617
|
|
115
|
+
crackerjack/services/cache.py,sha256=LKZIa8xZ6SzwdTBttO1W6VEBxaTgMNI5Paz_IgrqoaI,9841
|
|
116
|
+
crackerjack/services/config.py,sha256=74S70yZ0KJNph4Mi9KOLukt0nVkp3HKzWp4F-n9Dr28,13503
|
|
117
|
+
crackerjack/services/config_integrity.py,sha256=wn6b0x90wXNRSj64J_kOQ5JMQvG_9FwtOno0ITVJGwM,3416
|
|
118
|
+
crackerjack/services/contextual_ai_assistant.py,sha256=QnJvJNdGimk-u6XxPm9D7F516AmbueNnAmky42D2caQ,19206
|
|
119
|
+
crackerjack/services/coverage_ratchet.py,sha256=-ybEb2y2uVFCBDd5dHh9GMmYSiyw2e8pt7ZEexgIef0,13214
|
|
120
|
+
crackerjack/services/debug.py,sha256=crjsUZwVjP92aCEOEmtpEJwNf5gtlwNeZF_eB9JSfiI,24018
|
|
121
|
+
crackerjack/services/dependency_monitor.py,sha256=axBXFGBdezoPK9ph5_ZGxIwhSJhurgdvCSiuaCWSrKY,21085
|
|
122
|
+
crackerjack/services/enhanced_filesystem.py,sha256=MQj5zqvkNc5U6ZUmSVzgFQWKfnizD1lv4SJ2pt-w8W4,15424
|
|
123
|
+
crackerjack/services/file_hasher.py,sha256=vHSJ6QbWU5Q5JPLYuQkyRMRXCpDC_hsxToaM83vI58U,5201
|
|
124
|
+
crackerjack/services/filesystem.py,sha256=jzoO9q1kCYhfULpdfKCX5wDCzHrrU_giw86fvhmz-Kw,16993
|
|
125
|
+
crackerjack/services/git.py,sha256=5Gs_oLjjhVLhjZILYSmhfUAJNgrVW99A1ctGMM32ar4,6505
|
|
126
|
+
crackerjack/services/health_metrics.py,sha256=M2OBqwwnGvnJB3eXIXXh5SgMuckYCjHIrD0RkYFAbQU,21458
|
|
127
|
+
crackerjack/services/initialization.py,sha256=CMf7eZsUCldu-OfEc2exaz3JF7Hlkq2sOrNhY73gEIY,30467
|
|
128
|
+
crackerjack/services/log_manager.py,sha256=deM_i97biZVyuZJoHaGlnBitc5QV4WaaZHEb70N5LV0,8388
|
|
129
|
+
crackerjack/services/logging.py,sha256=c15gVCLR_yRhqaza7f1pLLYL-xQ3Oi_OMWL_mR5G46k,5354
|
|
130
|
+
crackerjack/services/metrics.py,sha256=kInkb2G0ML8hAtmEG1jK04b-F1hT_fZjHvYJKisyr1Y,22894
|
|
131
|
+
crackerjack/services/pattern_cache.py,sha256=YjncC2xaZFLbWwTP7okcGmXlJznb8_5adaHE9juaZKQ,12422
|
|
132
|
+
crackerjack/services/pattern_detector.py,sha256=9W4Hz9NXnOHx-nv3Shh1ndpLixssI9yajUCW6FWlsyk,20174
|
|
133
|
+
crackerjack/services/performance_benchmarks.py,sha256=g3qQL2Md_Qig2_OcJ5Ve7bQRCaJuUGjj7mnAJ49gcxI,23819
|
|
134
|
+
crackerjack/services/security.py,sha256=vfy2wa8Z5rRlhmbqFc2Il2ds5zo3IkzHmC2wv96JbmQ,5597
|
|
135
|
+
crackerjack/services/server_manager.py,sha256=TCeg-PpBeHDZwy_xmZ-vXvllMJDfbJ0y_0zS6D1wtfM,7053
|
|
136
|
+
crackerjack/services/smart_scheduling.py,sha256=L2ZhBSU_jByvbi87rH4DRcZf1IANZOBSCpR1yl6ktLA,5224
|
|
137
|
+
crackerjack/services/tool_version_service.py,sha256=httkVMIO4qq1CQfgR5MPxzQ4eO28w_1C5XBgZi-FV1I,2390
|
|
138
|
+
crackerjack/services/unified_config.py,sha256=AfRRjHZG-G0aF_vrx_vkR9Jf4mOZXbUecUcQyR9EhDU,13925
|
|
139
|
+
crackerjack/services/version_checker.py,sha256=DdQUe9R2lEP_le9tOD7Dbuyhkif3R2bYrVmRCyd3dyA,9271
|
|
140
|
+
crackerjack/slash_commands/__init__.py,sha256=ZHfKjluj9dX88zDYN6Saj7tGUMdMnh37Q8WlR7kOF1M,374
|
|
141
|
+
crackerjack/slash_commands/init.md,sha256=mANRdCiFAzaTw29lKNrI1JFthK4pxVdtiFC5lN2SDSQ,4581
|
|
142
|
+
crackerjack/slash_commands/run.md,sha256=bf_mEtnXagUuw3w8os5h3t1Yi3vjpfiNbkMJvuFEu-Y,6500
|
|
143
|
+
crackerjack/slash_commands/status.md,sha256=U3qqppVLtIIm2lEiMYaKagaHYLI9UplL7OH1j6SRJGw,3921
|
|
144
|
+
crackerjack-0.31.4.dist-info/METADATA,sha256=mctlhYxn0KOpOy8P4PhaQWpX-svROOCyx35Z-beUqU0,22437
|
|
145
|
+
crackerjack-0.31.4.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
146
|
+
crackerjack-0.31.4.dist-info/entry_points.txt,sha256=AJKNft0WXm9xoGUJ3Trl-iXHOWxRAYbagQiza3AILr4,57
|
|
147
|
+
crackerjack-0.31.4.dist-info/licenses/LICENSE,sha256=fDt371P6_6sCu7RyqiZH_AhT1LdN3sN1zjBtqEhDYCk,1531
|
|
148
|
+
crackerjack-0.31.4.dist-info/RECORD,,
|
crackerjack/.gitignore
DELETED
|
@@ -1,34 +0,0 @@
|
|
|
1
|
-
/.idea
|
|
2
|
-
/.pdm-python
|
|
3
|
-
/.pdm.toml
|
|
4
|
-
/build/
|
|
5
|
-
/__pypackages__/
|
|
6
|
-
/dist/
|
|
7
|
-
/.mypy_cache/
|
|
8
|
-
/.ruff_cache/
|
|
9
|
-
/.pdm-build/
|
|
10
|
-
/tmp/
|
|
11
|
-
/__pycache__/
|
|
12
|
-
/*.pyc
|
|
13
|
-
/scratch/
|
|
14
|
-
/.zencoder/
|
|
15
|
-
/.benchmarks/
|
|
16
|
-
**/.claude/settings.local.json
|
|
17
|
-
/complexipy.json
|
|
18
|
-
/coverage.json
|
|
19
|
-
/test-results.xml
|
|
20
|
-
/.coverage
|
|
21
|
-
|
|
22
|
-
# AI agent output files
|
|
23
|
-
/hooks-analysis.json
|
|
24
|
-
/quality-metrics.json
|
|
25
|
-
/project-structure.json
|
|
26
|
-
/error-context.json
|
|
27
|
-
/ai-agent-summary.json
|
|
28
|
-
/bandit-report.json
|
|
29
|
-
|
|
30
|
-
# Autotyping cache
|
|
31
|
-
.autotyping-cache/
|
|
32
|
-
|
|
33
|
-
# Crackerjack state file
|
|
34
|
-
.crackerjack-state
|
crackerjack/.libcst.codemod.yaml
DELETED
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
# String that LibCST should look for in code which indicates that the
|
|
2
|
-
# module is generated code.
|
|
3
|
-
generated_code_marker: '@generated'
|
|
4
|
-
# Command line and arguments for invoking a code formatter. Anything
|
|
5
|
-
# specified here must be capable of taking code via stdin and returning
|
|
6
|
-
# formatted code via stdout.
|
|
7
|
-
formatter: [ 'ruff', 'format' ]
|
|
8
|
-
# List of regex patterns which LibCST will evaluate against filenames to
|
|
9
|
-
# determine if the module should be touched.
|
|
10
|
-
blacklist_patterns: [ ]
|
|
11
|
-
# List of modules that contain codemods inside of them.
|
|
12
|
-
modules:
|
|
13
|
-
- 'libcst.codemod.commands'
|
|
14
|
-
- 'autotyping'
|
|
15
|
-
# Absolute or relative path of the repository root, used for providing
|
|
16
|
-
# full-repo metadata. Relative paths should be specified with this file
|
|
17
|
-
# location as the base.
|
|
18
|
-
repo_root: '.'
|
crackerjack/.pdm.toml
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
test crackerjack config
|
|
@@ -1,149 +0,0 @@
|
|
|
1
|
-
# AI-optimized pre-commit hooks for comprehensive analysis and structured output
|
|
2
|
-
# Designed for AI agent workflows with enhanced reporting and metrics
|
|
3
|
-
|
|
4
|
-
repos:
|
|
5
|
-
# Group 1: File Structure & Format Validation (parallel-safe, fast)
|
|
6
|
-
- repo: https://github.com/pre-commit/pre-commit-hooks
|
|
7
|
-
rev: v5.0.0
|
|
8
|
-
hooks:
|
|
9
|
-
- id: trailing-whitespace
|
|
10
|
-
name: trailing-whitespace
|
|
11
|
-
stages: [pre-commit]
|
|
12
|
-
- id: end-of-file-fixer
|
|
13
|
-
name: end-of-file-fixer
|
|
14
|
-
stages: [pre-commit]
|
|
15
|
-
- id: check-yaml
|
|
16
|
-
name: check-yaml
|
|
17
|
-
stages: [pre-commit]
|
|
18
|
-
- id: check-toml
|
|
19
|
-
name: check-toml
|
|
20
|
-
stages: [pre-commit]
|
|
21
|
-
- id: check-added-large-files
|
|
22
|
-
name: check-added-large-files
|
|
23
|
-
stages: [pre-commit]
|
|
24
|
-
|
|
25
|
-
# Group 2: Project Configuration Management
|
|
26
|
-
- repo: https://github.com/abravalheri/validate-pyproject
|
|
27
|
-
rev: v0.24.1
|
|
28
|
-
hooks:
|
|
29
|
-
- id: validate-pyproject
|
|
30
|
-
stages: [pre-commit]
|
|
31
|
-
|
|
32
|
-
- repo: https://github.com/tox-dev/pyproject-fmt
|
|
33
|
-
rev: "v2.6.0"
|
|
34
|
-
hooks:
|
|
35
|
-
- id: pyproject-fmt
|
|
36
|
-
args: ["-n"]
|
|
37
|
-
stages: [pre-commit]
|
|
38
|
-
|
|
39
|
-
- repo: https://github.com/astral-sh/uv-pre-commit
|
|
40
|
-
rev: 0.7.21
|
|
41
|
-
hooks:
|
|
42
|
-
- id: uv-lock
|
|
43
|
-
files: ^pyproject\.toml$
|
|
44
|
-
stages: [pre-commit]
|
|
45
|
-
|
|
46
|
-
# Group 3: Security (early detection, critical)
|
|
47
|
-
- repo: https://github.com/Yelp/detect-secrets
|
|
48
|
-
rev: v1.5.0
|
|
49
|
-
hooks:
|
|
50
|
-
- id: detect-secrets
|
|
51
|
-
exclude: 'uv\.lock|pyproject\.toml|tests/.*|docs/.*|.*\.md'
|
|
52
|
-
stages: [pre-commit]
|
|
53
|
-
|
|
54
|
-
# Group 4: Code Quality & Style (fast formatting)
|
|
55
|
-
- repo: https://github.com/codespell-project/codespell
|
|
56
|
-
rev: v2.4.1
|
|
57
|
-
hooks:
|
|
58
|
-
- id: codespell
|
|
59
|
-
additional_dependencies:
|
|
60
|
-
- tomli
|
|
61
|
-
stages: [pre-commit]
|
|
62
|
-
|
|
63
|
-
- repo: https://github.com/astral-sh/ruff-pre-commit
|
|
64
|
-
rev: v0.12.3
|
|
65
|
-
hooks:
|
|
66
|
-
- id: ruff-check
|
|
67
|
-
args: ["--output-format=json", "--fix"]
|
|
68
|
-
stages: [pre-commit]
|
|
69
|
-
- id: ruff-format
|
|
70
|
-
stages: [pre-commit]
|
|
71
|
-
|
|
72
|
-
- repo: https://github.com/executablebooks/mdformat
|
|
73
|
-
rev: 0.7.22
|
|
74
|
-
hooks:
|
|
75
|
-
- id: mdformat
|
|
76
|
-
additional_dependencies:
|
|
77
|
-
- mdformat-ruff
|
|
78
|
-
stages: [pre-commit]
|
|
79
|
-
|
|
80
|
-
# Group 5: Static Analysis (comprehensive, slower)
|
|
81
|
-
- repo: https://github.com/jendrikseipp/vulture
|
|
82
|
-
rev: 'v2.14'
|
|
83
|
-
hooks:
|
|
84
|
-
- id: vulture
|
|
85
|
-
args: ["--verbose"]
|
|
86
|
-
stages: [pre-commit]
|
|
87
|
-
|
|
88
|
-
- repo: https://github.com/fredrikaverpil/creosote
|
|
89
|
-
rev: v4.0.3
|
|
90
|
-
hooks:
|
|
91
|
-
- id: creosote
|
|
92
|
-
args: ["--verbose"]
|
|
93
|
-
stages: [pre-commit]
|
|
94
|
-
|
|
95
|
-
- repo: https://github.com/rohaquinlop/complexipy-pre-commit
|
|
96
|
-
rev: v3.0.0
|
|
97
|
-
hooks:
|
|
98
|
-
- id: complexipy
|
|
99
|
-
args: ["-d", "low", "--output-json", "complexipy.json"]
|
|
100
|
-
stages: [pre-commit]
|
|
101
|
-
|
|
102
|
-
- repo: https://github.com/dosisod/refurb
|
|
103
|
-
rev: v2.1.0
|
|
104
|
-
hooks:
|
|
105
|
-
- id: refurb
|
|
106
|
-
args: ["--quiet"]
|
|
107
|
-
stages: [pre-commit]
|
|
108
|
-
|
|
109
|
-
# Group 6: Type Checking & Enhancement (most expensive)
|
|
110
|
-
- repo: local
|
|
111
|
-
hooks:
|
|
112
|
-
- id: autotyping
|
|
113
|
-
name: autotyping
|
|
114
|
-
entry: python -m autotyping
|
|
115
|
-
args:
|
|
116
|
-
- --aggressive
|
|
117
|
-
- --only-without-imports
|
|
118
|
-
- --guess-common-names
|
|
119
|
-
- crackerjack
|
|
120
|
-
types_or: [ python, pyi ]
|
|
121
|
-
language: python
|
|
122
|
-
files: ^crackerjack/.*\.py$
|
|
123
|
-
stages: [pre-commit]
|
|
124
|
-
additional_dependencies:
|
|
125
|
-
- autotyping>=24.3.0
|
|
126
|
-
- libcst>=1.1.0
|
|
127
|
-
|
|
128
|
-
- repo: https://github.com/PyCQA/bandit
|
|
129
|
-
rev: '1.8.6'
|
|
130
|
-
hooks:
|
|
131
|
-
- id: bandit
|
|
132
|
-
args: ["-c", "pyproject.toml", "-f", "json", "-o", "bandit-report.json", "-r", "-ll"]
|
|
133
|
-
stages: [pre-commit]
|
|
134
|
-
|
|
135
|
-
- repo: https://github.com/RobertCraigie/pyright-python
|
|
136
|
-
rev: v1.1.403
|
|
137
|
-
hooks:
|
|
138
|
-
- id: pyright
|
|
139
|
-
args: ["--outputjson"]
|
|
140
|
-
stages: [pre-commit]
|
|
141
|
-
|
|
142
|
-
# Group 7: Documentation & Security Enhancement (AI-specific)
|
|
143
|
-
# pydocstyle temporarily disabled - conflicts with code cleaning functionality
|
|
144
|
-
# - repo: https://github.com/PyCQA/pydocstyle
|
|
145
|
-
# rev: 6.3.0
|
|
146
|
-
# hooks:
|
|
147
|
-
# - id: pydocstyle
|
|
148
|
-
# args: ["--config=pyproject.toml"]
|
|
149
|
-
# stages: [pre-commit]
|
|
@@ -1,69 +0,0 @@
|
|
|
1
|
-
# Fast pre-commit hooks for development workflow (target: <5s total)
|
|
2
|
-
repos:
|
|
3
|
-
# Tier 1: Basic structure validation (1.5s)
|
|
4
|
-
- repo: https://github.com/pre-commit/pre-commit-hooks
|
|
5
|
-
rev: v5.0.0
|
|
6
|
-
hooks:
|
|
7
|
-
- id: trailing-whitespace
|
|
8
|
-
name: trailing-whitespace
|
|
9
|
-
stages: [pre-commit]
|
|
10
|
-
- id: end-of-file-fixer
|
|
11
|
-
name: end-of-file-fixer
|
|
12
|
-
stages: [pre-commit]
|
|
13
|
-
- id: check-yaml
|
|
14
|
-
name: check-yaml
|
|
15
|
-
stages: [pre-commit]
|
|
16
|
-
- id: check-toml
|
|
17
|
-
name: check-toml
|
|
18
|
-
stages: [pre-commit]
|
|
19
|
-
- id: check-added-large-files
|
|
20
|
-
name: check-added-large-files
|
|
21
|
-
stages: [pre-commit]
|
|
22
|
-
|
|
23
|
-
- repo: https://github.com/tox-dev/pyproject-fmt
|
|
24
|
-
rev: "v2.6.0"
|
|
25
|
-
hooks:
|
|
26
|
-
- id: pyproject-fmt
|
|
27
|
-
args: ["-n"]
|
|
28
|
-
stages: [pre-commit]
|
|
29
|
-
|
|
30
|
-
# Tier 2: Package management (0.5s)
|
|
31
|
-
- repo: https://github.com/astral-sh/uv-pre-commit
|
|
32
|
-
rev: 0.7.21
|
|
33
|
-
hooks:
|
|
34
|
-
- id: uv-lock
|
|
35
|
-
files: ^pyproject\.toml$
|
|
36
|
-
stages: [pre-commit]
|
|
37
|
-
|
|
38
|
-
# Tier 3: Security (early detection) (1s)
|
|
39
|
-
- repo: https://github.com/Yelp/detect-secrets
|
|
40
|
-
rev: v1.5.0
|
|
41
|
-
hooks:
|
|
42
|
-
- id: detect-secrets
|
|
43
|
-
exclude: 'uv\.lock|pyproject\.toml|tests/.*|docs/.*|.*\.md'
|
|
44
|
-
stages: [pre-commit]
|
|
45
|
-
|
|
46
|
-
# Tier 4: Quick formatting (1.5s)
|
|
47
|
-
- repo: https://github.com/codespell-project/codespell
|
|
48
|
-
rev: v2.4.1
|
|
49
|
-
hooks:
|
|
50
|
-
- id: codespell
|
|
51
|
-
additional_dependencies:
|
|
52
|
-
- tomli
|
|
53
|
-
stages: [pre-commit]
|
|
54
|
-
|
|
55
|
-
- repo: https://github.com/astral-sh/ruff-pre-commit
|
|
56
|
-
rev: v0.12.3
|
|
57
|
-
hooks:
|
|
58
|
-
- id: ruff-check
|
|
59
|
-
stages: [pre-commit]
|
|
60
|
-
- id: ruff-format
|
|
61
|
-
stages: [pre-commit]
|
|
62
|
-
|
|
63
|
-
- repo: https://github.com/executablebooks/mdformat
|
|
64
|
-
rev: 0.7.22
|
|
65
|
-
hooks:
|
|
66
|
-
- id: mdformat
|
|
67
|
-
additional_dependencies:
|
|
68
|
-
- mdformat-ruff
|
|
69
|
-
stages: [pre-commit]
|
|
@@ -1,114 +0,0 @@
|
|
|
1
|
-
repos:
|
|
2
|
-
# File structure and format validators - check structure first
|
|
3
|
-
- repo: https://github.com/pre-commit/pre-commit-hooks
|
|
4
|
-
rev: v5.0.0
|
|
5
|
-
hooks:
|
|
6
|
-
- id: trailing-whitespace
|
|
7
|
-
name: trailing-whitespace
|
|
8
|
-
- id: end-of-file-fixer
|
|
9
|
-
name: end-of-file-fixer
|
|
10
|
-
- id: check-yaml
|
|
11
|
-
name: check-yaml
|
|
12
|
-
- id: check-toml
|
|
13
|
-
name: check-toml
|
|
14
|
-
- id: check-added-large-files
|
|
15
|
-
name: check-added-large-files
|
|
16
|
-
|
|
17
|
-
- repo: https://github.com/tox-dev/pyproject-fmt
|
|
18
|
-
rev: "v2.6.0"
|
|
19
|
-
hooks:
|
|
20
|
-
- id: pyproject-fmt
|
|
21
|
-
args: ["-n"]
|
|
22
|
-
|
|
23
|
-
# Package management - once structure is valid
|
|
24
|
-
- repo: https://github.com/astral-sh/uv-pre-commit
|
|
25
|
-
rev: 0.7.21
|
|
26
|
-
hooks:
|
|
27
|
-
- id: uv-lock
|
|
28
|
-
files: ^pyproject\.toml$
|
|
29
|
-
|
|
30
|
-
# Security check - early to prevent credential leaks
|
|
31
|
-
- repo: https://github.com/Yelp/detect-secrets
|
|
32
|
-
rev: v1.5.0
|
|
33
|
-
hooks:
|
|
34
|
-
- id: detect-secrets
|
|
35
|
-
exclude: 'uv\.lock|pyproject\.toml|tests/.*|docs/.*|.*\.md'
|
|
36
|
-
|
|
37
|
-
# Code quality tier 1 - quick fixes
|
|
38
|
-
- repo: https://github.com/codespell-project/codespell
|
|
39
|
-
rev: v2.4.1
|
|
40
|
-
hooks:
|
|
41
|
-
- id: codespell
|
|
42
|
-
additional_dependencies:
|
|
43
|
-
- tomli
|
|
44
|
-
|
|
45
|
-
- repo: https://github.com/astral-sh/ruff-pre-commit
|
|
46
|
-
rev: v0.12.3
|
|
47
|
-
hooks:
|
|
48
|
-
- id: ruff-check
|
|
49
|
-
- id: ruff-format
|
|
50
|
-
|
|
51
|
-
- repo: https://github.com/executablebooks/mdformat
|
|
52
|
-
rev: 0.7.22
|
|
53
|
-
hooks:
|
|
54
|
-
- id: mdformat
|
|
55
|
-
additional_dependencies:
|
|
56
|
-
- mdformat-ruff
|
|
57
|
-
|
|
58
|
-
# Code quality tier 2 - analysis (moved to pre-push for performance)
|
|
59
|
-
- repo: https://github.com/jendrikseipp/vulture
|
|
60
|
-
rev: 'v2.14'
|
|
61
|
-
hooks:
|
|
62
|
-
- id: vulture
|
|
63
|
-
stages: [pre-push, manual]
|
|
64
|
-
|
|
65
|
-
- repo: https://github.com/fredrikaverpil/creosote
|
|
66
|
-
rev: v4.0.3
|
|
67
|
-
hooks:
|
|
68
|
-
- id: creosote
|
|
69
|
-
stages: [pre-push, manual]
|
|
70
|
-
|
|
71
|
-
- repo: https://github.com/rohaquinlop/complexipy-pre-commit
|
|
72
|
-
rev: v3.0.0
|
|
73
|
-
hooks:
|
|
74
|
-
- id: complexipy
|
|
75
|
-
args: ["-d", "low"]
|
|
76
|
-
stages: [pre-push, manual]
|
|
77
|
-
|
|
78
|
-
- repo: https://github.com/dosisod/refurb
|
|
79
|
-
rev: v2.1.0
|
|
80
|
-
hooks:
|
|
81
|
-
- id: refurb
|
|
82
|
-
stages: [pre-push, manual]
|
|
83
|
-
|
|
84
|
-
# Code quality tier 3 - thorough checks (moved to pre-push for performance)
|
|
85
|
-
- repo: local
|
|
86
|
-
hooks:
|
|
87
|
-
- id: autotyping
|
|
88
|
-
name: autotyping
|
|
89
|
-
entry: python -m autotyping
|
|
90
|
-
args:
|
|
91
|
-
- --aggressive
|
|
92
|
-
- --only-without-imports
|
|
93
|
-
- --guess-common-names
|
|
94
|
-
- crackerjack
|
|
95
|
-
types_or: [ python, pyi ]
|
|
96
|
-
language: python
|
|
97
|
-
files: ^crackerjack/.*\.py$
|
|
98
|
-
stages: [pre-push, manual]
|
|
99
|
-
additional_dependencies:
|
|
100
|
-
- autotyping>=24.3.0
|
|
101
|
-
- libcst>=1.1.0
|
|
102
|
-
|
|
103
|
-
- repo: https://github.com/PyCQA/bandit
|
|
104
|
-
rev: '1.8.6'
|
|
105
|
-
hooks:
|
|
106
|
-
- id: bandit
|
|
107
|
-
args: ["-c", "pyproject.toml", "-r", "-ll"]
|
|
108
|
-
stages: [pre-push, manual]
|
|
109
|
-
|
|
110
|
-
- repo: https://github.com/RobertCraigie/pyright-python
|
|
111
|
-
rev: v1.1.403
|
|
112
|
-
hooks:
|
|
113
|
-
- id: pyright
|
|
114
|
-
stages: [pre-push, manual]
|