crackerjack 0.39.6__py3-none-any.whl → 0.39.7__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-0.39.6.dist-info → crackerjack-0.39.7.dist-info}/METADATA +71 -3
- {crackerjack-0.39.6.dist-info → crackerjack-0.39.7.dist-info}/RECORD +5 -5
- {crackerjack-0.39.6.dist-info → crackerjack-0.39.7.dist-info}/WHEEL +0 -0
- {crackerjack-0.39.6.dist-info → crackerjack-0.39.7.dist-info}/entry_points.txt +0 -0
- {crackerjack-0.39.6.dist-info → crackerjack-0.39.7.dist-info}/licenses/LICENSE +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: crackerjack
|
|
3
|
-
Version: 0.39.
|
|
3
|
+
Version: 0.39.7
|
|
4
4
|
Summary: Crackerjack Python project management tool
|
|
5
5
|
Project-URL: documentation, https://github.com/lesleslie/crackerjack
|
|
6
6
|
Project-URL: homepage, https://github.com/lesleslie/crackerjack
|
|
@@ -79,7 +79,7 @@ Description-Content-Type: text/markdown
|
|
|
79
79
|
[](https://github.com/astral-sh/uv)
|
|
80
80
|
[](https://github.com/pre-commit/pre-commit)
|
|
81
81
|
[](https://opensource.org/licenses/BSD-3-Clause)
|
|
82
|
-

|
|
83
83
|
|
|
84
84
|
## 🎯 Purpose
|
|
85
85
|
|
|
@@ -258,7 +258,7 @@ python -m crackerjack.mcp.progress_monitor <job_id> ws://localhost:8675
|
|
|
258
258
|
|
|
259
259
|
#### 🤖 Specialized Agent Architecture
|
|
260
260
|
|
|
261
|
-
**
|
|
261
|
+
**12 Specialized AI Agents** for comprehensive code quality improvements:
|
|
262
262
|
|
|
263
263
|
- **🔒 SecurityAgent**: Fixes shell injections, weak crypto, token exposure, unsafe library usage
|
|
264
264
|
- **♻️ RefactoringAgent**: Reduces complexity ≤15, extracts helper methods, applies SOLID principles
|
|
@@ -269,6 +269,9 @@ python -m crackerjack.mcp.progress_monitor <job_id> ws://localhost:8675
|
|
|
269
269
|
- **🧪 TestCreationAgent**: Fixes test failures, missing fixtures, dependency issues
|
|
270
270
|
- **📦 ImportOptimizationAgent**: Removes unused imports, restructures import statements
|
|
271
271
|
- **🔬 TestSpecialistAgent**: Advanced testing scenarios, fixture management
|
|
272
|
+
- **🔍 SemanticAgent**: Advanced semantic analysis, code comprehension, intelligent refactoring suggestions based on business logic understanding
|
|
273
|
+
- **🏗️ ArchitectAgent**: High-level architectural patterns, design recommendations, system-level optimization strategies
|
|
274
|
+
- **🎯 EnhancedProactiveAgent**: Proactive issue prevention, predictive quality monitoring, optimization before problems occur
|
|
272
275
|
|
|
273
276
|
**Agent Coordination Features**:
|
|
274
277
|
|
|
@@ -715,6 +718,71 @@ python -m crackerjack --all patch
|
|
|
715
718
|
python -m crackerjack --ai-fix
|
|
716
719
|
```
|
|
717
720
|
|
|
721
|
+
## Quick Reference Index
|
|
722
|
+
|
|
723
|
+
**📋 Command Index by Use Case**
|
|
724
|
+
|
|
725
|
+
| Use Case | Command | Description |
|
|
726
|
+
|----------|---------|-------------|
|
|
727
|
+
| **Basic Quality Check** | `python -m crackerjack` | Run quality checks only |
|
|
728
|
+
| **Quality + Tests** | `python -m crackerjack --run-tests` | Quality checks with test suite |
|
|
729
|
+
| **AI Auto-Fix** | `python -m crackerjack --ai-fix --run-tests` | AI-powered fixing + tests (recommended) |
|
|
730
|
+
| **Full Release** | `python -m crackerjack --all patch` | Version bump, quality checks, publish |
|
|
731
|
+
| **Quick Publish** | `python -m crackerjack --publish patch` | Version bump + publish only |
|
|
732
|
+
| **Start MCP Server** | `python -m crackerjack --start-mcp-server` | Launch MCP agent integration |
|
|
733
|
+
| **Monitoring Dashboard** | `python -m crackerjack --dashboard` | Comprehensive monitoring view |
|
|
734
|
+
| **AI Debugging** | `python -m crackerjack --ai-debug --run-tests` | Verbose AI debugging mode |
|
|
735
|
+
| **Coverage Status** | `python -m crackerjack --coverage-status` | Show coverage ratchet progress |
|
|
736
|
+
| **Clear Caches** | `python -m crackerjack --clear-cache` | Reset all cache data |
|
|
737
|
+
| **Fast Iteration** | `python -m crackerjack --skip-hooks` | Skip quality checks during dev |
|
|
738
|
+
| **Documentation** | `python -m crackerjack --generate-docs` | Generate API documentation |
|
|
739
|
+
| **Advanced Features** | See \[[ADVANCED-FEATURES|ADVANCED-FEATURES.md]\] | 82 enterprise/power user flags |
|
|
740
|
+
|
|
741
|
+
**📑 Alphabetical Flag Reference**
|
|
742
|
+
|
|
743
|
+
| Flag | Short | Description |
|
|
744
|
+
|------|-------|-------------|
|
|
745
|
+
| `--ai-debug` | - | Verbose debugging for AI auto-fixing |
|
|
746
|
+
| `--ai-fix` | - | Enable AI-powered auto-fixing |
|
|
747
|
+
| `--all` | `-a` | Full release workflow (bump, test, publish) |
|
|
748
|
+
| `--benchmark` | - | Run tests in benchmark mode |
|
|
749
|
+
| `--boost-coverage` | - | Auto-improve test coverage (default) |
|
|
750
|
+
| `--bump` | `-b` | Bump version (patch/minor/major/auto) |
|
|
751
|
+
| `--cache-stats` | - | Display cache statistics |
|
|
752
|
+
| `--clear-cache` | - | Clear all caches and exit |
|
|
753
|
+
| `--commit` | `-c` | Commit and push changes to Git |
|
|
754
|
+
| `--comp` | - | Run only comprehensive hooks |
|
|
755
|
+
| `--coverage-status` | - | Show coverage ratchet status |
|
|
756
|
+
| `--dashboard` | - | Start comprehensive monitoring dashboard |
|
|
757
|
+
| `--debug` | - | Enable debug output |
|
|
758
|
+
| `--dev` | - | Enable development mode for monitors |
|
|
759
|
+
| `--enhanced-monitor` | - | Advanced monitoring with patterns |
|
|
760
|
+
| `--fast` | - | Run only fast hooks |
|
|
761
|
+
| `--generate-docs` | - | Generate API documentation |
|
|
762
|
+
| `--interactive` | `-i` | Use Rich UI interface |
|
|
763
|
+
| `--monitor` | - | Multi-project progress monitor |
|
|
764
|
+
| `--orchestrated` | - | Advanced orchestrated workflow mode |
|
|
765
|
+
| `--publish` | `-p` | Bump version and publish to PyPI |
|
|
766
|
+
| `--quick` | - | Quick mode (3 iterations, for CI/CD) |
|
|
767
|
+
| `--restart-mcp-server` | - | Restart MCP server |
|
|
768
|
+
| `--run-tests` | `-t` | Execute test suite |
|
|
769
|
+
| `--skip-hooks` | `-s` | Skip pre-commit hooks |
|
|
770
|
+
| `--start-mcp-server` | - | Start MCP server |
|
|
771
|
+
| `--stop-mcp-server` | - | Stop MCP server |
|
|
772
|
+
| `--strip-code` | `-x` | Remove docstrings/comments |
|
|
773
|
+
| `--thorough` | - | Thorough mode (8 iterations) |
|
|
774
|
+
| `--unified-dashboard` | - | Unified real-time dashboard |
|
|
775
|
+
| `--verbose` | `-v` | Enable verbose output |
|
|
776
|
+
| `--watchdog` | - | Service watchdog with auto-restart |
|
|
777
|
+
|
|
778
|
+
**🔗 Related Documentation**
|
|
779
|
+
|
|
780
|
+
- **Advanced Features**: \[[ADVANCED-FEATURES|ADVANCED-FEATURES.md]\] - 82 enterprise/power user flags
|
|
781
|
+
- **Developer Guide**: \[[CLAUDE|CLAUDE.md]\] - AI assistant guidelines and developer commands
|
|
782
|
+
- **Phase 2 Analysis**: \[[PHASE2-CROSS-REFERENCE-ANALYSIS|docs/PHASE2-CROSS-REFERENCE-ANALYSIS.md]\] - CLI flag audit
|
|
783
|
+
|
|
784
|
+
______________________________________________________________________
|
|
785
|
+
|
|
718
786
|
## Command Reference
|
|
719
787
|
|
|
720
788
|
**Core Workflow Commands:**
|
|
@@ -235,8 +235,8 @@ crackerjack/tools/validate_input_validator_patterns.py,sha256=NN7smYlXWrHLQXTb-8
|
|
|
235
235
|
crackerjack/tools/validate_regex_patterns.py,sha256=J7GG9EP1fASpRIsG8qRPeiCSkdCwmk0sdo29GgoJ6w8,5863
|
|
236
236
|
crackerjack/ui/__init__.py,sha256=eMb1OeTU-dSLICAACn0YdYB4Amdr8wHckjKfn0wOIZE,37
|
|
237
237
|
crackerjack/ui/server_panels.py,sha256=F5IH6SNN06BaZQMsFx_D-OA286aojmaFPJ5kvvSRv_c,4232
|
|
238
|
-
crackerjack-0.39.
|
|
239
|
-
crackerjack-0.39.
|
|
240
|
-
crackerjack-0.39.
|
|
241
|
-
crackerjack-0.39.
|
|
242
|
-
crackerjack-0.39.
|
|
238
|
+
crackerjack-0.39.7.dist-info/METADATA,sha256=_6G3_H0ZxeFS_tUBFldwQKdTPSBmOz3UCaDg-qLhTqM,42313
|
|
239
|
+
crackerjack-0.39.7.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
240
|
+
crackerjack-0.39.7.dist-info/entry_points.txt,sha256=AJKNft0WXm9xoGUJ3Trl-iXHOWxRAYbagQiza3AILr4,57
|
|
241
|
+
crackerjack-0.39.7.dist-info/licenses/LICENSE,sha256=fDt371P6_6sCu7RyqiZH_AhT1LdN3sN1zjBtqEhDYCk,1531
|
|
242
|
+
crackerjack-0.39.7.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|