crackerjack 0.29.0__tar.gz → 0.31.4__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.
Potentially problematic release.
This version of crackerjack might be problematic. Click here for more details.
- {crackerjack-0.29.0/crackerjack → crackerjack-0.31.4}/.gitignore +21 -11
- crackerjack-0.31.4/.mcp.json.bak +154 -0
- crackerjack-0.31.4/.pre-commit-config.yaml +96 -0
- crackerjack-0.31.4/AGENTS.md +454 -0
- crackerjack-0.31.4/AI-AGENT-RULES.md +164 -0
- crackerjack-0.31.4/CHANGELOG.md +369 -0
- crackerjack-0.31.4/CLAUDE.md +1005 -0
- crackerjack-0.31.4/PKG-INFO +742 -0
- {crackerjack-0.29.0 → crackerjack-0.31.4}/README-AI-AGENT.md +183 -37
- crackerjack-0.31.4/README.md +681 -0
- {crackerjack-0.29.0 → crackerjack-0.31.4}/RULES.md +162 -10
- crackerjack-0.31.4/UVXUSAGE.md +111 -0
- {crackerjack-0.29.0 → crackerjack-0.31.4/crackerjack}/.gitignore +21 -11
- crackerjack-0.31.4/crackerjack/.mcp.json.bak +186 -0
- crackerjack-0.31.4/crackerjack/.pre-commit-config.yaml +96 -0
- crackerjack-0.31.4/crackerjack/CLAUDE.md +1005 -0
- crackerjack-0.31.4/crackerjack/RULES.md +380 -0
- crackerjack-0.31.4/crackerjack/__init__.py +70 -0
- crackerjack-0.31.4/crackerjack/__main__.py +248 -0
- crackerjack-0.31.4/crackerjack/agents/__init__.py +41 -0
- crackerjack-0.31.4/crackerjack/agents/architect_agent.py +281 -0
- crackerjack-0.31.4/crackerjack/agents/base.py +169 -0
- crackerjack-0.31.4/crackerjack/agents/coordinator.py +512 -0
- crackerjack-0.31.4/crackerjack/agents/documentation_agent.py +498 -0
- crackerjack-0.31.4/crackerjack/agents/dry_agent.py +388 -0
- crackerjack-0.31.4/crackerjack/agents/formatting_agent.py +245 -0
- crackerjack-0.31.4/crackerjack/agents/import_optimization_agent.py +281 -0
- crackerjack-0.31.4/crackerjack/agents/performance_agent.py +669 -0
- crackerjack-0.31.4/crackerjack/agents/proactive_agent.py +104 -0
- crackerjack-0.31.4/crackerjack/agents/refactoring_agent.py +788 -0
- crackerjack-0.31.4/crackerjack/agents/security_agent.py +529 -0
- crackerjack-0.31.4/crackerjack/agents/test_creation_agent.py +652 -0
- crackerjack-0.31.4/crackerjack/agents/test_specialist_agent.py +486 -0
- crackerjack-0.31.4/crackerjack/agents/tracker.py +212 -0
- crackerjack-0.31.4/crackerjack/api.py +560 -0
- crackerjack-0.31.4/crackerjack/cli/__init__.py +24 -0
- crackerjack-0.31.4/crackerjack/cli/facade.py +104 -0
- crackerjack-0.31.4/crackerjack/cli/handlers.py +267 -0
- crackerjack-0.31.4/crackerjack/cli/interactive.py +471 -0
- crackerjack-0.31.4/crackerjack/cli/options.py +401 -0
- crackerjack-0.31.4/crackerjack/cli/utils.py +18 -0
- crackerjack-0.31.4/crackerjack/code_cleaner.py +670 -0
- crackerjack-0.31.4/crackerjack/config/__init__.py +19 -0
- crackerjack-0.31.4/crackerjack/config/hooks.py +218 -0
- crackerjack-0.31.4/crackerjack/core/async_workflow_orchestrator.py +406 -0
- crackerjack-0.31.4/crackerjack/core/autofix_coordinator.py +200 -0
- crackerjack-0.31.4/crackerjack/core/container.py +104 -0
- crackerjack-0.31.4/crackerjack/core/enhanced_container.py +542 -0
- crackerjack-0.31.4/crackerjack/core/performance.py +243 -0
- crackerjack-0.31.4/crackerjack/core/phase_coordinator.py +561 -0
- crackerjack-0.31.4/crackerjack/core/proactive_workflow.py +316 -0
- crackerjack-0.31.4/crackerjack/core/session_coordinator.py +289 -0
- crackerjack-0.31.4/crackerjack/core/workflow_orchestrator.py +640 -0
- crackerjack-0.31.4/crackerjack/dynamic_config.py +577 -0
- crackerjack-0.31.4/crackerjack/errors.py +379 -0
- crackerjack-0.31.4/crackerjack/executors/__init__.py +11 -0
- crackerjack-0.31.4/crackerjack/executors/async_hook_executor.py +431 -0
- crackerjack-0.31.4/crackerjack/executors/cached_hook_executor.py +242 -0
- crackerjack-0.31.4/crackerjack/executors/hook_executor.py +345 -0
- crackerjack-0.31.4/crackerjack/executors/individual_hook_executor.py +669 -0
- crackerjack-0.31.4/crackerjack/intelligence/__init__.py +44 -0
- crackerjack-0.31.4/crackerjack/intelligence/adaptive_learning.py +751 -0
- crackerjack-0.31.4/crackerjack/intelligence/agent_orchestrator.py +551 -0
- crackerjack-0.31.4/crackerjack/intelligence/agent_registry.py +414 -0
- crackerjack-0.31.4/crackerjack/intelligence/agent_selector.py +502 -0
- crackerjack-0.31.4/crackerjack/intelligence/integration.py +290 -0
- crackerjack-0.31.4/crackerjack/interactive.py +692 -0
- crackerjack-0.31.4/crackerjack/managers/__init__.py +11 -0
- crackerjack-0.31.4/crackerjack/managers/async_hook_manager.py +135 -0
- crackerjack-0.31.4/crackerjack/managers/hook_manager.py +137 -0
- crackerjack-0.31.4/crackerjack/managers/publish_manager.py +411 -0
- crackerjack-0.31.4/crackerjack/managers/test_command_builder.py +151 -0
- crackerjack-0.31.4/crackerjack/managers/test_executor.py +435 -0
- crackerjack-0.31.4/crackerjack/managers/test_manager.py +258 -0
- crackerjack-0.31.4/crackerjack/managers/test_manager_backup.py +1124 -0
- crackerjack-0.31.4/crackerjack/managers/test_progress.py +144 -0
- crackerjack-0.31.4/crackerjack/mcp/__init__.py +0 -0
- crackerjack-0.31.4/crackerjack/mcp/cache.py +336 -0
- crackerjack-0.31.4/crackerjack/mcp/client_runner.py +104 -0
- crackerjack-0.31.4/crackerjack/mcp/context.py +615 -0
- crackerjack-0.31.4/crackerjack/mcp/dashboard.py +636 -0
- crackerjack-0.31.4/crackerjack/mcp/enhanced_progress_monitor.py +479 -0
- crackerjack-0.31.4/crackerjack/mcp/enhanced_progress_monitor.tcss +110 -0
- crackerjack-0.31.4/crackerjack/mcp/file_monitor.py +336 -0
- crackerjack-0.31.4/crackerjack/mcp/progress_components.py +569 -0
- crackerjack-0.31.4/crackerjack/mcp/progress_monitor.py +949 -0
- crackerjack-0.31.4/crackerjack/mcp/progress_monitor.tcss +164 -0
- crackerjack-0.31.4/crackerjack/mcp/rate_limiter.py +332 -0
- crackerjack-0.31.4/crackerjack/mcp/server.py +22 -0
- crackerjack-0.31.4/crackerjack/mcp/server_core.py +244 -0
- crackerjack-0.31.4/crackerjack/mcp/service_watchdog.py +501 -0
- crackerjack-0.31.4/crackerjack/mcp/state.py +395 -0
- crackerjack-0.31.4/crackerjack/mcp/task_manager.py +257 -0
- crackerjack-0.31.4/crackerjack/mcp/tools/__init__.py +17 -0
- crackerjack-0.31.4/crackerjack/mcp/tools/core_tools.py +249 -0
- crackerjack-0.31.4/crackerjack/mcp/tools/error_analyzer.py +308 -0
- crackerjack-0.31.4/crackerjack/mcp/tools/execution_tools.py +370 -0
- crackerjack-0.31.4/crackerjack/mcp/tools/execution_tools_backup.py +1097 -0
- crackerjack-0.31.4/crackerjack/mcp/tools/intelligence_tool_registry.py +80 -0
- crackerjack-0.31.4/crackerjack/mcp/tools/intelligence_tools.py +314 -0
- crackerjack-0.31.4/crackerjack/mcp/tools/monitoring_tools.py +502 -0
- crackerjack-0.31.4/crackerjack/mcp/tools/monitoring_tools.py.backup +266 -0
- crackerjack-0.31.4/crackerjack/mcp/tools/proactive_tools.py +384 -0
- crackerjack-0.31.4/crackerjack/mcp/tools/progress_tools.py +141 -0
- crackerjack-0.31.4/crackerjack/mcp/tools/utility_tools.py +341 -0
- crackerjack-0.31.4/crackerjack/mcp/tools/workflow_executor.py +360 -0
- crackerjack-0.31.4/crackerjack/mcp/websocket/__init__.py +14 -0
- crackerjack-0.31.4/crackerjack/mcp/websocket/app.py +39 -0
- crackerjack-0.31.4/crackerjack/mcp/websocket/endpoints.py +559 -0
- crackerjack-0.31.4/crackerjack/mcp/websocket/jobs.py +253 -0
- crackerjack-0.31.4/crackerjack/mcp/websocket/server.py +116 -0
- crackerjack-0.31.4/crackerjack/mcp/websocket/websocket_handler.py +78 -0
- crackerjack-0.31.4/crackerjack/mcp/websocket_server.py +10 -0
- crackerjack-0.31.4/crackerjack/models/__init__.py +31 -0
- crackerjack-0.31.4/crackerjack/models/config.py +93 -0
- crackerjack-0.31.4/crackerjack/models/config_adapter.py +230 -0
- crackerjack-0.31.4/crackerjack/models/protocols.py +118 -0
- crackerjack-0.31.4/crackerjack/models/task.py +154 -0
- crackerjack-0.31.4/crackerjack/monitoring/ai_agent_watchdog.py +450 -0
- crackerjack-0.31.4/crackerjack/monitoring/regression_prevention.py +638 -0
- crackerjack-0.31.4/crackerjack/orchestration/__init__.py +0 -0
- crackerjack-0.31.4/crackerjack/orchestration/advanced_orchestrator.py +970 -0
- crackerjack-0.31.4/crackerjack/orchestration/execution_strategies.py +341 -0
- crackerjack-0.31.4/crackerjack/orchestration/test_progress_streamer.py +636 -0
- crackerjack-0.31.4/crackerjack/plugins/__init__.py +15 -0
- crackerjack-0.31.4/crackerjack/plugins/base.py +200 -0
- crackerjack-0.31.4/crackerjack/plugins/hooks.py +246 -0
- crackerjack-0.31.4/crackerjack/plugins/loader.py +335 -0
- crackerjack-0.31.4/crackerjack/plugins/managers.py +259 -0
- {crackerjack-0.29.0 → crackerjack-0.31.4}/crackerjack/py313.py +8 -3
- crackerjack-0.31.4/crackerjack/pyproject.toml +314 -0
- crackerjack-0.31.4/crackerjack/services/__init__.py +22 -0
- crackerjack-0.31.4/crackerjack/services/cache.py +314 -0
- crackerjack-0.31.4/crackerjack/services/config.py +347 -0
- crackerjack-0.31.4/crackerjack/services/config_integrity.py +99 -0
- crackerjack-0.31.4/crackerjack/services/contextual_ai_assistant.py +516 -0
- crackerjack-0.31.4/crackerjack/services/coverage_ratchet.py +347 -0
- crackerjack-0.31.4/crackerjack/services/debug.py +736 -0
- crackerjack-0.31.4/crackerjack/services/dependency_monitor.py +617 -0
- crackerjack-0.31.4/crackerjack/services/enhanced_filesystem.py +439 -0
- crackerjack-0.31.4/crackerjack/services/file_hasher.py +151 -0
- crackerjack-0.31.4/crackerjack/services/filesystem.py +395 -0
- crackerjack-0.31.4/crackerjack/services/git.py +165 -0
- crackerjack-0.31.4/crackerjack/services/health_metrics.py +611 -0
- crackerjack-0.31.4/crackerjack/services/initialization.py +847 -0
- crackerjack-0.31.4/crackerjack/services/log_manager.py +286 -0
- crackerjack-0.31.4/crackerjack/services/logging.py +174 -0
- crackerjack-0.31.4/crackerjack/services/metrics.py +578 -0
- crackerjack-0.31.4/crackerjack/services/pattern_cache.py +362 -0
- crackerjack-0.31.4/crackerjack/services/pattern_detector.py +515 -0
- crackerjack-0.31.4/crackerjack/services/performance_benchmarks.py +653 -0
- crackerjack-0.31.4/crackerjack/services/security.py +163 -0
- crackerjack-0.31.4/crackerjack/services/server_manager.py +234 -0
- crackerjack-0.31.4/crackerjack/services/smart_scheduling.py +144 -0
- crackerjack-0.31.4/crackerjack/services/tool_version_service.py +61 -0
- crackerjack-0.31.4/crackerjack/services/unified_config.py +437 -0
- crackerjack-0.31.4/crackerjack/services/version_checker.py +248 -0
- crackerjack-0.31.4/crackerjack/slash_commands/__init__.py +14 -0
- crackerjack-0.31.4/crackerjack/slash_commands/init.md +122 -0
- crackerjack-0.31.4/crackerjack/slash_commands/run.md +163 -0
- crackerjack-0.31.4/crackerjack/slash_commands/status.md +127 -0
- crackerjack-0.31.4/crackerjack/uv.lock +2439 -0
- crackerjack-0.31.4/docs/AI_AGENT_DEBUGGING.md +266 -0
- crackerjack-0.31.4/docs/API_REFERENCE.md +1398 -0
- crackerjack-0.31.4/docs/ARCHITECTURE.md +445 -0
- crackerjack-0.31.4/docs/FUTURE-ENHANCEMENTS.md +1352 -0
- crackerjack-0.31.4/docs/SUB_AGENT_MONITORING_DESIGN.md +222 -0
- crackerjack-0.31.4/docs/VERIFICATION_WORKFLOW.md +403 -0
- crackerjack-0.31.4/docs/WORKFLOW_KNOWLEDGE_BASE.md +221 -0
- crackerjack-0.31.4/example.mcp.json +16 -0
- crackerjack-0.31.4/excalidraw.log +0 -0
- crackerjack-0.31.4/fix_terminal.sh +33 -0
- crackerjack-0.31.4/pyproject.toml +314 -0
- crackerjack-0.31.4/requirements.txt +439 -0
- crackerjack-0.31.4/tests/.coverage +0 -0
- crackerjack-0.31.4/tests/HEALTH_METRICS_TESTING_SUMMARY.md +167 -0
- crackerjack-0.31.4/tests/TESTING.md +0 -0
- crackerjack-0.31.4/tests/TEST_COVERAGE_PLAN.md +117 -0
- crackerjack-0.31.4/tests/__init__.py +0 -0
- crackerjack-0.31.4/tests/conftest.py +535 -0
- crackerjack-0.31.4/tests/coverage.json +1 -0
- crackerjack-0.31.4/tests/data/comments_sample.txt +0 -0
- crackerjack-0.31.4/tests/data/docstrings_sample.txt +0 -0
- crackerjack-0.31.4/tests/data/expected_comments_sample.txt +0 -0
- crackerjack-0.31.4/tests/scripts/__init__.py +4 -0
- crackerjack-0.31.4/tests/scripts/agent_audit_report.py +521 -0
- crackerjack-0.31.4/tests/scripts/run_test_suite.py +332 -0
- crackerjack-0.31.4/tests/test___main__.py +21 -0
- crackerjack-0.31.4/tests/test_advanced_orchestrator_strategic.py +1026 -0
- crackerjack-0.31.4/tests/test_ai_agent_comprehensive.py +465 -0
- crackerjack-0.31.4/tests/test_ai_agent_workflow.py +506 -0
- crackerjack-0.31.4/tests/test_async_hook_executor.py +388 -0
- crackerjack-0.31.4/tests/test_cli_strategic.py +68 -0
- crackerjack-0.31.4/tests/test_code_cleaner.py +816 -0
- crackerjack-0.31.4/tests/test_contextual_ai_assistant_strategic.py +1146 -0
- crackerjack-0.31.4/tests/test_core_additional_strategic.py +44 -0
- crackerjack-0.31.4/tests/test_core_autofix_coordinator.py +464 -0
- crackerjack-0.31.4/tests/test_core_comprehensive.py +432 -0
- crackerjack-0.31.4/tests/test_core_coverage.py +473 -0
- crackerjack-0.31.4/tests/test_core_enhanced_container.py +728 -0
- crackerjack-0.31.4/tests/test_core_modules.py +532 -0
- crackerjack-0.31.4/tests/test_core_performance.py +323 -0
- crackerjack-0.31.4/tests/test_core_strategic.py +32 -0
- crackerjack-0.31.4/tests/test_core_strategic_coverage.py +403 -0
- crackerjack-0.31.4/tests/test_core_workflow_orchestration_deep_quality.py +755 -0
- crackerjack-0.31.4/tests/test_dependency_monitor_strategic.py +1044 -0
- crackerjack-0.31.4/tests/test_documentation_agent.py +279 -0
- crackerjack-0.31.4/tests/test_documentation_agent_simple.py +98 -0
- crackerjack-0.31.4/tests/test_dynamic_config.py +228 -0
- crackerjack-0.31.4/tests/test_dynamic_config_coverage.py +326 -0
- crackerjack-0.31.4/tests/test_enhanced_filesystem.py +279 -0
- crackerjack-0.31.4/tests/test_enhanced_filesystem_comprehensive.py +344 -0
- crackerjack-0.31.4/tests/test_enhanced_filesystem_coverage.py +240 -0
- crackerjack-0.31.4/tests/test_enhanced_filesystem_integration.py +151 -0
- crackerjack-0.31.4/tests/test_enhanced_filesystem_strategic.py +511 -0
- crackerjack-0.31.4/tests/test_filesystem_coverage.py +615 -0
- crackerjack-0.31.4/tests/test_health_metrics_strategic.py +1218 -0
- crackerjack-0.31.4/tests/test_hook_manager_simple.py +142 -0
- crackerjack-0.31.4/tests/test_import_coverage_consolidated.py +464 -0
- crackerjack-0.31.4/tests/test_import_optimization_agent.py +192 -0
- crackerjack-0.31.4/tests/test_intelligence_system.py +275 -0
- crackerjack-0.31.4/tests/test_large_modules_coverage.py +171 -0
- crackerjack-0.31.4/tests/test_main_entry_coverage.py +111 -0
- crackerjack-0.31.4/tests/test_main_module.py +307 -0
- crackerjack-0.31.4/tests/test_managers_consolidated.py +476 -0
- crackerjack-0.31.4/tests/test_managers_strategic_coverage.py +265 -0
- crackerjack-0.31.4/tests/test_mcp_additional_strategic.py +32 -0
- crackerjack-0.31.4/tests/test_mcp_core_strategic.py +1419 -0
- crackerjack-0.31.4/tests/test_mcp_progress_monitor.py +242 -0
- crackerjack-0.31.4/tests/test_mcp_progress_strategic.py +91 -0
- crackerjack-0.31.4/tests/test_mcp_server.py +42 -0
- crackerjack-0.31.4/tests/test_mcp_strategic.py +171 -0
- crackerjack-0.31.4/tests/test_mcp_websocket_lifecycle_deep_quality.py +681 -0
- crackerjack-0.31.4/tests/test_models_comprehensive.py +343 -0
- crackerjack-0.31.4/tests/test_models_config_adapter_coverage.py +433 -0
- crackerjack-0.31.4/tests/test_models_focused.py +324 -0
- crackerjack-0.31.4/tests/test_models_strategic.py +32 -0
- crackerjack-0.31.4/tests/test_models_task_coverage.py +467 -0
- crackerjack-0.31.4/tests/test_modernized_code.py +417 -0
- crackerjack-0.31.4/tests/test_orchestration_advanced_strategic.py +858 -0
- crackerjack-0.31.4/tests/test_orchestration_strategic.py +36 -0
- crackerjack-0.31.4/tests/test_performance_agent.py +276 -0
- crackerjack-0.31.4/tests/test_performance_agent_simple.py +99 -0
- crackerjack-0.31.4/tests/test_performance_benchmarks_focused.py +667 -0
- crackerjack-0.31.4/tests/test_performance_benchmarks_strategic.py +1526 -0
- crackerjack-0.31.4/tests/test_phase_coordinator_simple.py +643 -0
- crackerjack-0.31.4/tests/test_plugins_base_strategic.py +898 -0
- crackerjack-0.31.4/tests/test_plugins_comprehensive.py +1716 -0
- crackerjack-0.31.4/tests/test_plugins_coverage.py +442 -0
- crackerjack-0.31.4/tests/test_plugins_strategic.py +59 -0
- crackerjack-0.31.4/tests/test_plugins_system_strategic.py +1459 -0
- crackerjack-0.31.4/tests/test_proactive_agent_system.py +719 -0
- crackerjack-0.31.4/tests/test_protocol_compliance.py +635 -0
- crackerjack-0.31.4/tests/test_publish_manager_coverage.py +682 -0
- crackerjack-0.31.4/tests/test_py313_coverage.py +531 -0
- crackerjack-0.31.4/tests/test_refactoring_agent.py +456 -0
- crackerjack-0.31.4/tests/test_server_manager_strategic.py +574 -0
- crackerjack-0.31.4/tests/test_services_coverage.py +247 -0
- crackerjack-0.31.4/tests/test_services_strategic.py +84 -0
- crackerjack-0.31.4/tests/test_session_coordinator.py +64 -0
- crackerjack-0.31.4/tests/test_session_coordinator_coverage.py +442 -0
- crackerjack-0.31.4/tests/test_simple_tool_version_service.py +351 -0
- {crackerjack-0.29.0 → crackerjack-0.31.4}/tests/test_structured_errors.py +39 -77
- crackerjack-0.31.4/tests/test_structured_logging.py +276 -0
- crackerjack-0.31.4/tests/test_terminal_restoration.py +55 -0
- crackerjack-0.31.4/tests/test_terminal_state.py +46 -0
- crackerjack-0.31.4/tests/test_tool_version_service_advanced.py +415 -0
- crackerjack-0.31.4/tests/test_tool_version_service_business_logic.py +637 -0
- crackerjack-0.31.4/tests/test_tool_version_service_coverage.py +260 -0
- crackerjack-0.31.4/tests/test_tool_version_service_deep_coverage.py +468 -0
- crackerjack-0.31.4/tests/test_tool_version_service_functional.py +385 -0
- crackerjack-0.31.4/tests/test_tool_version_service_simple_working.py +369 -0
- crackerjack-0.31.4/tests/test_tool_version_service_strategic.py +880 -0
- crackerjack-0.31.4/tests/test_unified_api.py +374 -0
- crackerjack-0.31.4/tests/test_unified_config.py +291 -0
- crackerjack-0.31.4/tests/test_workflow_integration.py +239 -0
- crackerjack-0.31.4/tests/test_workflow_orchestrator.py +185 -0
- crackerjack-0.31.4/tools.yaml +48 -0
- crackerjack-0.31.4/uv.lock +2450 -0
- crackerjack-0.29.0/.envrc +0 -1
- crackerjack-0.29.0/.libcst.codemod.yaml +0 -18
- crackerjack-0.29.0/.pre-commit-config-ai.yaml +0 -149
- crackerjack-0.29.0/.pre-commit-config-fast.yaml +0 -69
- crackerjack-0.29.0/.pre-commit-config.yaml +0 -114
- crackerjack-0.29.0/CLAUDE.md +0 -1599
- crackerjack-0.29.0/PKG-INFO +0 -1289
- crackerjack-0.29.0/README.md +0 -1243
- crackerjack-0.29.0/crackerjack/.libcst.codemod.yaml +0 -18
- crackerjack-0.29.0/crackerjack/.pdm.toml +0 -1
- crackerjack-0.29.0/crackerjack/.pre-commit-config-ai.yaml +0 -149
- crackerjack-0.29.0/crackerjack/.pre-commit-config-fast.yaml +0 -69
- crackerjack-0.29.0/crackerjack/.pre-commit-config.yaml +0 -114
- crackerjack-0.29.0/crackerjack/__init__.py +0 -41
- crackerjack-0.29.0/crackerjack/__main__.py +0 -276
- crackerjack-0.29.0/crackerjack/crackerjack.py +0 -4140
- crackerjack-0.29.0/crackerjack/errors.py +0 -157
- crackerjack-0.29.0/crackerjack/interactive.py +0 -431
- crackerjack-0.29.0/crackerjack/pyproject.toml +0 -285
- crackerjack-0.29.0/pyproject.toml +0 -285
- crackerjack-0.29.0/tests/TESTING.md +0 -130
- crackerjack-0.29.0/tests/conftest.py +0 -89
- crackerjack-0.29.0/tests/data/comments_sample.txt +0 -63
- crackerjack-0.29.0/tests/data/docstrings_sample.txt +0 -20
- crackerjack-0.29.0/tests/data/expected_comments_sample.txt +0 -61
- crackerjack-0.29.0/tests/test_crackerjack.py +0 -2117
- crackerjack-0.29.0/tests/test_crackerjack_runner.py +0 -143
- crackerjack-0.29.0/tests/test_errors.py +0 -153
- crackerjack-0.29.0/tests/test_interactive.py +0 -392
- crackerjack-0.29.0/tests/test_interactive_run.py +0 -133
- crackerjack-0.29.0/tests/test_main.py +0 -354
- crackerjack-0.29.0/tests/test_multiline_functions.py +0 -164
- crackerjack-0.29.0/tests/test_py313_advanced.py +0 -135
- crackerjack-0.29.0/tests/test_py313_features.py +0 -133
- crackerjack-0.29.0/uv.lock +0 -869
- {crackerjack-0.29.0 → crackerjack-0.31.4}/.github/FUNDING.yml +0 -0
- {crackerjack-0.29.0 → crackerjack-0.31.4}/LICENSE +0 -0
- {crackerjack-0.29.0/tests → crackerjack-0.31.4/crackerjack/core}/__init__.py +0 -0
- {crackerjack-0.29.0 → crackerjack-0.31.4}/tests/data/init.py +0 -0
- {crackerjack-0.29.0 → crackerjack-0.31.4}/tests/test_pytest_features.py +0 -0
|
@@ -8,27 +8,37 @@
|
|
|
8
8
|
/.ruff_cache/
|
|
9
9
|
/.pdm-build/
|
|
10
10
|
/tmp/
|
|
11
|
-
/
|
|
11
|
+
/.venv/
|
|
12
|
+
__pycache__/
|
|
12
13
|
/*.pyc
|
|
13
14
|
/scratch/
|
|
14
|
-
/.zencoder/
|
|
15
15
|
/.benchmarks/
|
|
16
16
|
**/.claude/settings.local.json
|
|
17
17
|
/complexipy.json
|
|
18
18
|
/coverage.json
|
|
19
19
|
/test-results.xml
|
|
20
|
-
/.coverage
|
|
21
|
-
|
|
22
|
-
|
|
20
|
+
/.coverage*
|
|
21
|
+
/.DS_STORE
|
|
22
|
+
/crackerjack-debug-*.log
|
|
23
|
+
/crackerjack-ai-debug-*.log
|
|
23
24
|
/hooks-analysis.json
|
|
24
25
|
/quality-metrics.json
|
|
25
26
|
/project-structure.json
|
|
26
27
|
/error-context.json
|
|
27
28
|
/ai-agent-summary.json
|
|
28
29
|
/bandit-report.json
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
30
|
+
/.autotyping-cache/
|
|
31
|
+
/.crackerjack-state
|
|
32
|
+
/.crackerjack-hooks-updated
|
|
33
|
+
/.crackerjack-mcp/
|
|
34
|
+
/.crackerjack_cache
|
|
35
|
+
/.envrc
|
|
36
|
+
/htmlcov/
|
|
37
|
+
/examples/
|
|
38
|
+
/.crackerjack/
|
|
39
|
+
/.claude/
|
|
40
|
+
.mcp.json
|
|
41
|
+
/tests/htmlcov/
|
|
42
|
+
/tests/.benchmarks/
|
|
43
|
+
/.hypothesis/
|
|
44
|
+
/crackerjack.egg-info/
|
|
@@ -0,0 +1,154 @@
|
|
|
1
|
+
{
|
|
2
|
+
"mcpServers": {
|
|
3
|
+
"session-mgmt": {
|
|
4
|
+
"command": "uvx",
|
|
5
|
+
"args": [
|
|
6
|
+
"--from",
|
|
7
|
+
"/Users/les/Projects/session-mgmt-mcp",
|
|
8
|
+
"session-mgmt-mcp"
|
|
9
|
+
],
|
|
10
|
+
"env": {}
|
|
11
|
+
},
|
|
12
|
+
"ast-grep": {
|
|
13
|
+
"command": "uvx",
|
|
14
|
+
"args": [
|
|
15
|
+
"--from",
|
|
16
|
+
"git+https://github.com/ast-grep/ast-grep-mcp",
|
|
17
|
+
"ast-grep-server"
|
|
18
|
+
]
|
|
19
|
+
},
|
|
20
|
+
"crackerjack": {
|
|
21
|
+
"command": "uvx",
|
|
22
|
+
"args": [
|
|
23
|
+
"--from",
|
|
24
|
+
"/Users/les/Projects/crackerjack",
|
|
25
|
+
"crackerjack",
|
|
26
|
+
"--start-mcp-server"
|
|
27
|
+
],
|
|
28
|
+
"env": {
|
|
29
|
+
"UV_KEYRING_PROVIDER": "subprocess",
|
|
30
|
+
"EDITOR": "code --wait"
|
|
31
|
+
}
|
|
32
|
+
},
|
|
33
|
+
"macos_automator": {
|
|
34
|
+
"command": "npx",
|
|
35
|
+
"args": [
|
|
36
|
+
"-y",
|
|
37
|
+
"@steipete/macos-automator-mcp@0.4.1"
|
|
38
|
+
]
|
|
39
|
+
},
|
|
40
|
+
"peekaboo": {
|
|
41
|
+
"type": "stdio",
|
|
42
|
+
"command": "npx",
|
|
43
|
+
"args": [
|
|
44
|
+
"-y",
|
|
45
|
+
"@steipete/peekaboo-mcp@3.0.0-beta.2"
|
|
46
|
+
]
|
|
47
|
+
},
|
|
48
|
+
"playwright": {
|
|
49
|
+
"command": "npx",
|
|
50
|
+
"args": [
|
|
51
|
+
"-y",
|
|
52
|
+
"@executeautomation/playwright-mcp-server@1.0.6"
|
|
53
|
+
]
|
|
54
|
+
},
|
|
55
|
+
"git": {
|
|
56
|
+
"command": "npx",
|
|
57
|
+
"args": [
|
|
58
|
+
"-y",
|
|
59
|
+
"@cyanheads/git-mcp-server@2.3.2"
|
|
60
|
+
]
|
|
61
|
+
},
|
|
62
|
+
"github": {
|
|
63
|
+
"command": "npx",
|
|
64
|
+
"args": [
|
|
65
|
+
"-y",
|
|
66
|
+
"@modelcontextprotocol/server-github@2025.4.8"
|
|
67
|
+
],
|
|
68
|
+
"env": {
|
|
69
|
+
"GITHUB_PERSONAL_ACCESS_TOKEN_USE_GHCLI": "true"
|
|
70
|
+
},
|
|
71
|
+
"_comment": "Package deprecated - consider migrating to github.com/github/github-mcp-server"
|
|
72
|
+
},
|
|
73
|
+
"gitlab": {
|
|
74
|
+
"command": "npx",
|
|
75
|
+
"args": [
|
|
76
|
+
"-y",
|
|
77
|
+
"@zereight/mcp-gitlab@2.0.3"
|
|
78
|
+
]
|
|
79
|
+
},
|
|
80
|
+
"obsidian": {
|
|
81
|
+
"command": "npx",
|
|
82
|
+
"args": [
|
|
83
|
+
"-y",
|
|
84
|
+
"mcp-remote@0.1.18",
|
|
85
|
+
"http://localhost:27123/sse"
|
|
86
|
+
]
|
|
87
|
+
},
|
|
88
|
+
"memory": {
|
|
89
|
+
"command": "npx",
|
|
90
|
+
"args": [
|
|
91
|
+
"-y",
|
|
92
|
+
"@modelcontextprotocol/server-memory@2025.8.4"
|
|
93
|
+
]
|
|
94
|
+
},
|
|
95
|
+
"sequential-thinking": {
|
|
96
|
+
"command": "npx",
|
|
97
|
+
"args": [
|
|
98
|
+
"-y",
|
|
99
|
+
"@modelcontextprotocol/server-sequential-thinking@2025.7.1"
|
|
100
|
+
]
|
|
101
|
+
},
|
|
102
|
+
"filesystem": {
|
|
103
|
+
"command": "rust-mcp-filesystem",
|
|
104
|
+
"args": [
|
|
105
|
+
"-w",
|
|
106
|
+
"~/Projects"
|
|
107
|
+
]
|
|
108
|
+
},
|
|
109
|
+
"jetbrains": {
|
|
110
|
+
"command": "npx",
|
|
111
|
+
"args": [
|
|
112
|
+
"-y",
|
|
113
|
+
"@jetbrains/mcp-proxy@1.8.0"
|
|
114
|
+
]
|
|
115
|
+
},
|
|
116
|
+
"gemini-cli": {
|
|
117
|
+
"command": "npx",
|
|
118
|
+
"args": [
|
|
119
|
+
"-y",
|
|
120
|
+
"gemini-mcp-tool@1.1.4"
|
|
121
|
+
]
|
|
122
|
+
},
|
|
123
|
+
"context7": {
|
|
124
|
+
"command": "npx",
|
|
125
|
+
"args": [
|
|
126
|
+
"-y",
|
|
127
|
+
"@upstash/context7-mcp@1.0.16"
|
|
128
|
+
]
|
|
129
|
+
},
|
|
130
|
+
"raindrop": {
|
|
131
|
+
"command": "npx",
|
|
132
|
+
"args": [
|
|
133
|
+
"-y",
|
|
134
|
+
"raindrop-mcp@0.0.4"
|
|
135
|
+
]
|
|
136
|
+
},
|
|
137
|
+
"excalidraw": {
|
|
138
|
+
"command": "uvx",
|
|
139
|
+
"args": [
|
|
140
|
+
"excalidraw-mcp"
|
|
141
|
+
],
|
|
142
|
+
"env": {
|
|
143
|
+
"EXPRESS_SERVER_URL": "http://localhost:3031",
|
|
144
|
+
"ENABLE_CANVAS_SYNC": "true"
|
|
145
|
+
}
|
|
146
|
+
},
|
|
147
|
+
"motherduck": {
|
|
148
|
+
"command": "uvx",
|
|
149
|
+
"args": [
|
|
150
|
+
"mcp-server-motherduck==0.3.1"
|
|
151
|
+
]
|
|
152
|
+
}
|
|
153
|
+
}
|
|
154
|
+
}
|
|
@@ -0,0 +1,96 @@
|
|
|
1
|
+
repos:
|
|
2
|
+
# File structure and format validators
|
|
3
|
+
- repo: https://github.com/pre-commit/pre-commit-hooks
|
|
4
|
+
rev: v6.0.0
|
|
5
|
+
hooks:
|
|
6
|
+
- id: trailing-whitespace
|
|
7
|
+
name: trailing-whitespace
|
|
8
|
+
exclude: ^\.venv/
|
|
9
|
+
- id: end-of-file-fixer
|
|
10
|
+
name: end-of-file-fixer
|
|
11
|
+
exclude: ^\.venv/
|
|
12
|
+
- id: check-yaml
|
|
13
|
+
name: check-yaml
|
|
14
|
+
exclude: ^\.venv/
|
|
15
|
+
- id: check-toml
|
|
16
|
+
name: check-toml
|
|
17
|
+
exclude: ^\.venv/
|
|
18
|
+
- id: check-added-large-files
|
|
19
|
+
name: check-added-large-files
|
|
20
|
+
exclude: ^\.venv/
|
|
21
|
+
- repo: https://github.com/astral-sh/uv-pre-commit
|
|
22
|
+
rev: 0.8.13
|
|
23
|
+
hooks:
|
|
24
|
+
- id: uv-lock
|
|
25
|
+
files: ^pyproject\.toml$
|
|
26
|
+
# Security checks
|
|
27
|
+
- repo: https://github.com/gitleaks/gitleaks
|
|
28
|
+
rev: v8.28.0
|
|
29
|
+
hooks:
|
|
30
|
+
- id: gitleaks
|
|
31
|
+
exclude: uv\.lock|pyproject\.toml|tests/.*|docs/.*|.*\.md
|
|
32
|
+
# Security checks
|
|
33
|
+
- repo: https://github.com/PyCQA/bandit
|
|
34
|
+
rev: 1.8.6
|
|
35
|
+
hooks:
|
|
36
|
+
- id: bandit
|
|
37
|
+
args: ["-c", "pyproject.toml", "-r", "-ll"]
|
|
38
|
+
files: ^crackerjack/.*\.py$
|
|
39
|
+
stages: ["pre-push", "manual"]
|
|
40
|
+
# Code formatting and quality
|
|
41
|
+
- repo: https://github.com/codespell-project/codespell
|
|
42
|
+
rev: v2.4.1
|
|
43
|
+
hooks:
|
|
44
|
+
- id: codespell
|
|
45
|
+
exclude: ^\.venv/
|
|
46
|
+
additional_dependencies: ["tomli"]
|
|
47
|
+
# Code formatting and quality
|
|
48
|
+
- repo: https://github.com/astral-sh/ruff-pre-commit
|
|
49
|
+
rev: v0.12.10
|
|
50
|
+
hooks:
|
|
51
|
+
- id: ruff-check
|
|
52
|
+
exclude: ^\.venv/
|
|
53
|
+
- id: ruff-format
|
|
54
|
+
exclude: ^\.venv/
|
|
55
|
+
# Code formatting and quality
|
|
56
|
+
- repo: https://github.com/executablebooks/mdformat
|
|
57
|
+
rev: 0.7.22
|
|
58
|
+
hooks:
|
|
59
|
+
- id: mdformat
|
|
60
|
+
exclude: ^\.venv/
|
|
61
|
+
additional_dependencies: ["mdformat-ruff"]
|
|
62
|
+
- repo: https://github.com/jendrikseipp/vulture
|
|
63
|
+
rev: v2.14
|
|
64
|
+
hooks:
|
|
65
|
+
- id: vulture
|
|
66
|
+
files: ^crackerjack/.*\.py$
|
|
67
|
+
stages: ["pre-push", "manual"]
|
|
68
|
+
- repo: https://github.com/fredrikaverpil/creosote
|
|
69
|
+
rev: v4.1.0
|
|
70
|
+
hooks:
|
|
71
|
+
- id: creosote
|
|
72
|
+
exclude: ^\.venv/
|
|
73
|
+
stages: ["pre-push", "manual"]
|
|
74
|
+
- repo: https://github.com/rohaquinlop/complexipy-pre-commit
|
|
75
|
+
rev: v3.3.0
|
|
76
|
+
hooks:
|
|
77
|
+
- id: complexipy
|
|
78
|
+
args: ["-d", "low"]
|
|
79
|
+
files: ^crackerjack/.*\.py$
|
|
80
|
+
exclude: ^(\.venv/|tests/)
|
|
81
|
+
stages: ["pre-push", "manual"]
|
|
82
|
+
- repo: https://github.com/dosisod/refurb
|
|
83
|
+
rev: v2.1.0
|
|
84
|
+
hooks:
|
|
85
|
+
- id: refurb
|
|
86
|
+
args: ["--ignore", "FURB184", "--ignore", "FURB120"]
|
|
87
|
+
files: ^crackerjack/.*\.py$
|
|
88
|
+
exclude: ^tests/.*\.py$
|
|
89
|
+
stages: ["pre-push", "manual"]
|
|
90
|
+
- repo: https://github.com/RobertCraigie/pyright-python
|
|
91
|
+
rev: v1.1.404
|
|
92
|
+
hooks:
|
|
93
|
+
- id: pyright
|
|
94
|
+
files: ^crackerjack/.*\.py$
|
|
95
|
+
exclude: ^crackerjack/(mcp|plugins)/.*\.py$|crackerjack/code_cleaner\.py$
|
|
96
|
+
stages: ["pre-push", "manual"]
|