crackerjack 0.38.15__py3-none-any.whl → 0.39.1__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/__main__.py +134 -13
- crackerjack/agents/__init__.py +2 -0
- crackerjack/agents/base.py +1 -0
- crackerjack/agents/claude_code_bridge.py +319 -0
- crackerjack/agents/coordinator.py +6 -3
- crackerjack/agents/dry_agent.py +187 -3
- crackerjack/agents/enhanced_coordinator.py +279 -0
- crackerjack/agents/enhanced_proactive_agent.py +185 -0
- crackerjack/agents/performance_agent.py +324 -3
- crackerjack/agents/refactoring_agent.py +254 -5
- crackerjack/agents/semantic_agent.py +479 -0
- crackerjack/agents/semantic_helpers.py +356 -0
- crackerjack/cli/options.py +27 -0
- crackerjack/cli/semantic_handlers.py +290 -0
- crackerjack/core/async_workflow_orchestrator.py +9 -8
- crackerjack/core/enhanced_container.py +1 -1
- crackerjack/core/phase_coordinator.py +1 -1
- crackerjack/core/proactive_workflow.py +1 -1
- crackerjack/core/workflow_orchestrator.py +9 -6
- crackerjack/documentation/ai_templates.py +1 -1
- crackerjack/interactive.py +1 -1
- crackerjack/mcp/server_core.py +2 -0
- crackerjack/mcp/tools/__init__.py +2 -0
- crackerjack/mcp/tools/semantic_tools.py +584 -0
- crackerjack/models/semantic_models.py +271 -0
- crackerjack/plugins/loader.py +2 -2
- crackerjack/py313.py +4 -1
- crackerjack/services/embeddings.py +444 -0
- crackerjack/services/quality_intelligence.py +11 -1
- crackerjack/services/smart_scheduling.py +1 -1
- crackerjack/services/vector_store.py +681 -0
- crackerjack/slash_commands/run.md +84 -50
- {crackerjack-0.38.15.dist-info → crackerjack-0.39.1.dist-info}/METADATA +7 -2
- {crackerjack-0.38.15.dist-info → crackerjack-0.39.1.dist-info}/RECORD +37 -27
- {crackerjack-0.38.15.dist-info → crackerjack-0.39.1.dist-info}/WHEEL +0 -0
- {crackerjack-0.38.15.dist-info → crackerjack-0.39.1.dist-info}/entry_points.txt +0 -0
- {crackerjack-0.38.15.dist-info → crackerjack-0.39.1.dist-info}/licenses/LICENSE +0 -0
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
______________________________________________________________________
|
|
2
2
|
|
|
3
|
-
## description: Run
|
|
3
|
+
## description: Run crackerjack with AI-powered auto-fixing using intelligent session integration. Automatically tries enhanced session-mgmt execution first, then gracefully falls back to standard crackerjack execution if unavailable. Perfect for comprehensive code quality enforcement with zero configuration required.
|
|
4
4
|
|
|
5
|
-
# /
|
|
5
|
+
# /run
|
|
6
6
|
|
|
7
|
-
|
|
7
|
+
Intelligent crackerjack runner that tries session-mgmt:crackerjack-run first with fallback to crackerjack:run for optimal integration with session management systems.
|
|
8
8
|
|
|
9
9
|
## Usage
|
|
10
10
|
|
|
11
11
|
```
|
|
12
|
-
/
|
|
12
|
+
/run [--debug]
|
|
13
13
|
```
|
|
14
14
|
|
|
15
15
|
### Arguments
|
|
@@ -22,7 +22,12 @@ Run Crackerjack with advanced orchestrated AI-powered auto-fix mode to automatic
|
|
|
22
22
|
|
|
23
23
|
## Description
|
|
24
24
|
|
|
25
|
-
This slash command
|
|
25
|
+
This slash command provides intelligent crackerjack execution with automatic fallback:
|
|
26
|
+
|
|
27
|
+
1. **Primary**: Attempts `session-mgmt:crackerjack-run` for enhanced session integration
|
|
28
|
+
1. **Fallback**: Uses `crackerjack:run` if session-mgmt is unavailable
|
|
29
|
+
|
|
30
|
+
Both execution paths use AI agent mode for autonomous code quality enforcement:
|
|
26
31
|
|
|
27
32
|
- `--ai-fix`: AI auto-fixing mode for structured error output and intelligent fixing
|
|
28
33
|
- `--test`: Run tests with comprehensive test coverage
|
|
@@ -30,25 +35,46 @@ This slash command runs Crackerjack with AI agent mode for autonomous code quali
|
|
|
30
35
|
|
|
31
36
|
## 💡 Agent Recommendation
|
|
32
37
|
|
|
33
|
-
**For optimal results, use the `crackerjack-architect` agent alongside `/
|
|
38
|
+
**For optimal results, use the `crackerjack-architect` agent alongside `/run`:**
|
|
34
39
|
|
|
35
40
|
```bash
|
|
36
41
|
# 1. Plan with crackerjack-architect first
|
|
37
42
|
Task tool with subagent_type="crackerjack-architect" for feature planning
|
|
38
43
|
|
|
39
44
|
# 2. Run crackerjack for quality enforcement
|
|
40
|
-
/
|
|
45
|
+
/run
|
|
41
46
|
|
|
42
47
|
# 3. Use crackerjack-architect for any remaining issues
|
|
43
48
|
```
|
|
44
49
|
|
|
45
|
-
**Why?** The crackerjack-architect agent ensures code follows crackerjack patterns from the start, reducing the number of iterations needed for `/
|
|
50
|
+
**Why?** The crackerjack-architect agent ensures code follows crackerjack patterns from the start, reducing the number of iterations needed for `/run` to achieve full compliance.
|
|
46
51
|
|
|
47
52
|
## What It Does
|
|
48
53
|
|
|
49
|
-
**
|
|
54
|
+
**Smart Execution Strategy:**
|
|
55
|
+
|
|
56
|
+
### 1. 🧠 **Session-Mgmt Integration (Primary)**
|
|
57
|
+
|
|
58
|
+
When `session-mgmt:crackerjack-run` is available:
|
|
59
|
+
|
|
60
|
+
- **Enhanced Context**: Leverages session history for better AI decisions
|
|
61
|
+
- **Progress Continuity**: Builds on previous session learnings
|
|
62
|
+
- **Memory Integration**: Remembers past error patterns and fixes
|
|
63
|
+
- **Quality Trends**: Uses historical quality metrics for optimization
|
|
64
|
+
|
|
65
|
+
### 2. 🔄 **Standard Execution (Fallback)**
|
|
66
|
+
|
|
67
|
+
When session-mgmt is unavailable, falls back to `crackerjack:run`:
|
|
68
|
+
|
|
69
|
+
- **Full Functionality**: Complete AI auto-fixing capabilities
|
|
70
|
+
- **Zero Degradation**: All quality features remain available
|
|
71
|
+
- **Seamless Transition**: User experience unchanged
|
|
50
72
|
|
|
51
|
-
###
|
|
73
|
+
### 3. ⚡ **Iterative AI-Powered Auto-Fixing Process (up to 10 iterations)**
|
|
74
|
+
|
|
75
|
+
Both execution paths follow the same comprehensive workflow:
|
|
76
|
+
|
|
77
|
+
#### Pre-Execution Safety Checks:
|
|
52
78
|
|
|
53
79
|
0. 🔍 **Comprehensive Status Check** (automatic conflict prevention)
|
|
54
80
|
|
|
@@ -58,7 +84,7 @@ Task tool with subagent_type="crackerjack-architect" for feature planning
|
|
|
58
84
|
- Auto-start missing services if needed
|
|
59
85
|
- Report resource usage and system health
|
|
60
86
|
|
|
61
|
-
|
|
87
|
+
#### Each Iteration Cycle:
|
|
62
88
|
|
|
63
89
|
1. ⚡ **Fast Hooks** (formatting & basic fixes)
|
|
64
90
|
|
|
@@ -90,7 +116,7 @@ Task tool with subagent_type="crackerjack-architect" for feature planning
|
|
|
90
116
|
|
|
91
117
|
1. 🔄 **Next Full Iteration**: Repeat entire cycle until ALL checks pass or max iterations (10) reached
|
|
92
118
|
|
|
93
|
-
|
|
119
|
+
#### Final Result:
|
|
94
120
|
|
|
95
121
|
🎉 **Perfect Code Quality**: All hooks pass, all tests pass, zero manual intervention!
|
|
96
122
|
|
|
@@ -100,64 +126,72 @@ When an AI assistant uses this command:
|
|
|
100
126
|
|
|
101
127
|
```
|
|
102
128
|
User: Can you fix all the code quality issues in this project?
|
|
103
|
-
AI: I'll use the /
|
|
129
|
+
AI: I'll use the /run command to automatically fix all code quality issues with intelligent session integration.
|
|
130
|
+
|
|
131
|
+
/run
|
|
132
|
+
|
|
133
|
+
[AI first tries: session-mgmt:crackerjack-run]
|
|
134
|
+
✅ Session-mgmt available - using enhanced execution mode
|
|
104
135
|
|
|
105
|
-
|
|
136
|
+
[Enhanced execution with session context: python -m crackerjack --ai-fix --test --verbose]
|
|
106
137
|
|
|
107
|
-
|
|
138
|
+
The crackerjack AI agent completed successfully after 2 iterations! Here's what was automatically fixed:
|
|
108
139
|
|
|
109
|
-
|
|
140
|
+
**Session Context Benefits**:
|
|
141
|
+
- Leveraged previous session learnings about this codebase
|
|
142
|
+
- Applied remembered fix patterns from similar issues
|
|
143
|
+
- Optimized execution based on historical performance data
|
|
110
144
|
|
|
111
145
|
**Iteration 1**: Fixed formatting and imports
|
|
112
146
|
- Reformatted 5 files with proper indentation
|
|
113
|
-
- Organized imports in 3 modules
|
|
147
|
+
- Organized imports in 3 modules (using cached preferences)
|
|
114
148
|
- Removed trailing whitespace
|
|
115
149
|
|
|
116
|
-
**Iteration 2**:
|
|
117
|
-
- Added type hints to 7
|
|
118
|
-
-
|
|
119
|
-
- Removed 1 unused variable
|
|
150
|
+
**Iteration 2**: Final quality improvements
|
|
151
|
+
- Added type hints to 4 functions (improved from previous 7 due to session learning)
|
|
152
|
+
- All 42 tests now pass with 47% coverage
|
|
120
153
|
|
|
121
|
-
**
|
|
122
|
-
- Fixed missing test fixture import
|
|
123
|
-
- Updated assertion in test_workflow.py
|
|
124
|
-
- All 42 tests now pass with 45% coverage
|
|
125
|
-
|
|
126
|
-
🎉 **Result**: Perfect code quality achieved with zero manual intervention!
|
|
154
|
+
🎉 **Result**: Perfect code quality achieved with enhanced session integration!
|
|
127
155
|
```
|
|
128
156
|
|
|
129
157
|
## Benefits
|
|
130
158
|
|
|
131
|
-
- **
|
|
132
|
-
- **
|
|
133
|
-
- **
|
|
134
|
-
- **
|
|
159
|
+
- **Smart Integration**: Automatically leverages session-mgmt when available
|
|
160
|
+
- **Graceful Fallback**: No functionality loss when session-mgmt unavailable
|
|
161
|
+
- **Enhanced Learning**: Session context improves AI decision quality
|
|
162
|
+
- **Zero Configuration**: AI doesn't need to remember complex integration logic
|
|
163
|
+
- **Optimal Performance**: Uses best available execution method automatically
|
|
164
|
+
- **Consistent Results**: Same high-quality outcome regardless of execution path
|
|
135
165
|
|
|
136
166
|
## Implementation
|
|
137
167
|
|
|
138
|
-
**CRITICAL**: When an AI assistant encounters `/
|
|
139
|
-
|
|
140
|
-
When an AI assistant encounters `/crackerjack:run`, it calls the MCP server tool directly:
|
|
168
|
+
**CRITICAL**: When an AI assistant encounters `/run`, it MUST implement the intelligent fallback strategy using MCP server tools.
|
|
141
169
|
|
|
142
|
-
|
|
170
|
+
### Execution Strategy
|
|
143
171
|
|
|
144
172
|
```python
|
|
145
|
-
#
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
#
|
|
173
|
+
# 1. Try session-mgmt integration first
|
|
174
|
+
try:
|
|
175
|
+
job_result = session_mgmt_crackerjack_run()
|
|
176
|
+
job_id = job_result["job_id"]
|
|
177
|
+
print("✅ Using session-mgmt enhanced execution")
|
|
178
|
+
except (ConnectionError, ServiceUnavailable, ToolNotFound):
|
|
179
|
+
# 2. Fallback to standard crackerjack execution
|
|
180
|
+
job_result = execute_crackerjack("/crackerjack:run")
|
|
181
|
+
job_id = job_result["job_id"]
|
|
182
|
+
print("⚡ Using standard crackerjack execution")
|
|
183
|
+
|
|
184
|
+
# For debugging, append --debug flag to either execution path:
|
|
185
|
+
# session_mgmt_crackerjack_run("--debug") or execute_crackerjack("/crackerjack:run --debug")
|
|
152
186
|
```
|
|
153
187
|
|
|
154
|
-
|
|
188
|
+
### Key Features
|
|
155
189
|
|
|
156
|
-
- **
|
|
157
|
-
- **
|
|
158
|
-
- **
|
|
159
|
-
- **
|
|
160
|
-
- **
|
|
161
|
-
- **
|
|
190
|
+
- **Automatic Detection**: No manual configuration needed
|
|
191
|
+
- **Seamless Fallback**: User unaware of which execution path used
|
|
192
|
+
- **Progress Tracking**: Real-time progress updates via MCP tools for both paths
|
|
193
|
+
- **Enhanced Context**: Session-mgmt path leverages conversation history
|
|
194
|
+
- **Background Execution**: Both paths run in background, return job_id immediately
|
|
195
|
+
- **Debug Support**: --debug flag works with both execution methods
|
|
162
196
|
|
|
163
|
-
**Note**: This
|
|
197
|
+
**Note**: This command provides the best of both worlds - enhanced session integration when available, with full functionality guaranteed through intelligent fallback.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: crackerjack
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.39.1
|
|
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
|
|
@@ -31,6 +31,9 @@ Requires-Dist: hypothesis>=6.100
|
|
|
31
31
|
Requires-Dist: jinja2>=3.1
|
|
32
32
|
Requires-Dist: keyring>=25.6
|
|
33
33
|
Requires-Dist: mcp>=1.12.2
|
|
34
|
+
Requires-Dist: nltk>=3.9.1
|
|
35
|
+
Requires-Dist: numpy>=2.2.1
|
|
36
|
+
Requires-Dist: onnxruntime>=1.19.0
|
|
34
37
|
Requires-Dist: pre-commit>=4.2
|
|
35
38
|
Requires-Dist: psutil>=6.1.0
|
|
36
39
|
Requires-Dist: pydantic>=2.11.7
|
|
@@ -47,12 +50,14 @@ Requires-Dist: pyyaml>=6.0.2
|
|
|
47
50
|
Requires-Dist: refurb>=2.1
|
|
48
51
|
Requires-Dist: rich>=14.1
|
|
49
52
|
Requires-Dist: ruff>=0.12.9
|
|
53
|
+
Requires-Dist: scikit-learn>=1.6.1
|
|
50
54
|
Requires-Dist: scipy>=1.14.0
|
|
51
55
|
Requires-Dist: skylos>=2.1.2
|
|
52
56
|
Requires-Dist: structlog>=24.4
|
|
53
57
|
Requires-Dist: textual>=0.89
|
|
54
58
|
Requires-Dist: tomli-w>=1.2
|
|
55
59
|
Requires-Dist: tomli>=2.2.1
|
|
60
|
+
Requires-Dist: transformers>=4.21.0
|
|
56
61
|
Requires-Dist: typer>=0.16
|
|
57
62
|
Requires-Dist: types-aiofiles>=24.1.0.20240626
|
|
58
63
|
Requires-Dist: types-psutil>=6.0.0.12
|
|
@@ -74,7 +79,7 @@ Description-Content-Type: text/markdown
|
|
|
74
79
|
[](https://github.com/astral-sh/uv)
|
|
75
80
|
[](https://github.com/pre-commit/pre-commit)
|
|
76
81
|
[](https://opensource.org/licenses/BSD-3-Clause)
|
|
77
|
-

|
|
78
83
|
|
|
79
84
|
## 🎯 Purpose
|
|
80
85
|
|
|
@@ -1,32 +1,37 @@
|
|
|
1
1
|
crackerjack/CLAUDE.md,sha256=FnF1XgcaCB59HEZxglEl4qEBTMyHQcqKoL0YjnAq24s,41230
|
|
2
2
|
crackerjack/__init__.py,sha256=DajG9zHB8qBdgdiKMumrrssUbKeMXmtIQ3oOaSTb46Y,1426
|
|
3
|
-
crackerjack/__main__.py,sha256=
|
|
3
|
+
crackerjack/__main__.py,sha256=gS8PIp-98GUlZodL8vgOQNKUIo9qL-TY2FWQ2WXpqSk,58923
|
|
4
4
|
crackerjack/api.py,sha256=PyCRaZHvKWdu62_2O4t_HcEfKNBdqyrfPdonS_PNn4c,21495
|
|
5
5
|
crackerjack/code_cleaner.py,sha256=M1zVaq31uW0nOkPneKR8kfR3892gyyVx0VhFgRaxsj4,44338
|
|
6
6
|
crackerjack/dynamic_config.py,sha256=85Kec1R3wthnLP0wd3LI3_gUI7-aV-mr-OLoUOCBnF4,21759
|
|
7
7
|
crackerjack/errors.py,sha256=yYbZ92kn_y6acEWgQvEPvozAYs2HT65uLwAXrtXxGsE,10049
|
|
8
|
-
crackerjack/interactive.py,sha256=
|
|
9
|
-
crackerjack/py313.py,sha256=
|
|
8
|
+
crackerjack/interactive.py,sha256=7hSyCfUxuzyvVUdkO1XsOfeQ5vAlTjIH_TB8o3af-9g,21990
|
|
9
|
+
crackerjack/py313.py,sha256=TbzL6vJ8kf5GbuAFVjZ6wgfXnhcoLlzwATaFhV8HEVo,6256
|
|
10
10
|
crackerjack/adapters/__init__.py,sha256=k-8ajMDL9DS9hV2FYOu694nmNQg3HkudJRuNcXmx8N4,451
|
|
11
11
|
crackerjack/adapters/lsp_client.py,sha256=4kQ3T5JiWC7uc6kOjZuPdtUboseKSDjZpuKQpV74onc,10963
|
|
12
12
|
crackerjack/adapters/rust_tool_adapter.py,sha256=ui_qMt_WIwInRvRCeT7MnIdp8eln7Fvp4hakXQiVnjg,5999
|
|
13
13
|
crackerjack/adapters/rust_tool_manager.py,sha256=RotOX7WUMAm4GT9bD8xOhSeHFXaME37R9dW-YLTpVcc,6590
|
|
14
14
|
crackerjack/adapters/skylos_adapter.py,sha256=aUO8P7daTXstM3UxaAKOwZDLdMPIUbjmhmXROTF5RlU,7890
|
|
15
15
|
crackerjack/adapters/zuban_adapter.py,sha256=NHg2vAsaONEMMlV3a5lmjPm61poIojL-gqZWqoX-R9o,19663
|
|
16
|
-
crackerjack/agents/__init__.py,sha256=
|
|
16
|
+
crackerjack/agents/__init__.py,sha256=Mja1iIHEW4wsvci5g6CXHtR1OEltd3N00XOZLUfaHPU,950
|
|
17
17
|
crackerjack/agents/architect_agent.py,sha256=Gq9eAy1_pl-1iEYC28xn4rdIPi9AVynZ7Sd5FnBrNn8,8130
|
|
18
|
-
crackerjack/agents/base.py,sha256=
|
|
19
|
-
crackerjack/agents/
|
|
18
|
+
crackerjack/agents/base.py,sha256=qu3wmtFZwXsaf75WXiRdyvJJaNp_EE7MptJQI_7Wd3o,4930
|
|
19
|
+
crackerjack/agents/claude_code_bridge.py,sha256=H453vlAcIpa7EH_eytcb7uWv-ezIrFqU6fMGtXQKKPI,12950
|
|
20
|
+
crackerjack/agents/coordinator.py,sha256=jK22whXR6WKe7NWyhQAwTnlPNlNqJigJTn3-COf2Wpc,22637
|
|
20
21
|
crackerjack/agents/documentation_agent.py,sha256=bI9qPJ5rTZrjimythO_N27zpJFrFcP6i1N2hYZMr_u4,17178
|
|
21
|
-
crackerjack/agents/dry_agent.py,sha256=
|
|
22
|
+
crackerjack/agents/dry_agent.py,sha256=mAcwIRCnuf5X6MKMxOaTLx4895VvPVV-CZcnL-DSJOo,20501
|
|
23
|
+
crackerjack/agents/enhanced_coordinator.py,sha256=vGX_nl6ko9pKP8zKdLF12Y_GJTJ9-qD8KlLzqG8vlk8,11351
|
|
24
|
+
crackerjack/agents/enhanced_proactive_agent.py,sha256=94opFkvfOdvQU4pqFxuVIQULW7u20-XNMrEuwGx6EyA,7352
|
|
22
25
|
crackerjack/agents/formatting_agent.py,sha256=eDkLABvpkc3vkYLBjsjib9_AtqsdjxyPIddIvD293L8,6821
|
|
23
26
|
crackerjack/agents/import_optimization_agent.py,sha256=DoDaN7Pb0Z6Nt6YkkKeWMu3Paffy5eOb6ao4khtL3ko,40578
|
|
24
|
-
crackerjack/agents/performance_agent.py,sha256=
|
|
27
|
+
crackerjack/agents/performance_agent.py,sha256=2BaQPRJcmxfv5-G8WogTw7wbVa5k4fwd6X3zgX784hw,60171
|
|
25
28
|
crackerjack/agents/performance_helpers.py,sha256=fyK5lkh8j5f1dTPld8v1ABMzsVEkeVCk3Feq4BEa_hY,7187
|
|
26
29
|
crackerjack/agents/proactive_agent.py,sha256=cwb5VqYDhqIDB19ACzXq9pp3Jfz5ZukkNJBQ6AkKUOA,2010
|
|
27
|
-
crackerjack/agents/refactoring_agent.py,sha256=
|
|
30
|
+
crackerjack/agents/refactoring_agent.py,sha256=K2BcrCQEZUz5AWo07KoOzwkksFa4XLmnDW8qTNeQf8c,45308
|
|
28
31
|
crackerjack/agents/refactoring_helpers.py,sha256=FmnuAZ5kXXNljFTd17L5H1ElumkIX6ZmOAjuo7m74bA,9087
|
|
29
32
|
crackerjack/agents/security_agent.py,sha256=gl10hhKAAX_u-3HdhLt7mKditW1XzlLRXDtHk-4f7A4,29050
|
|
33
|
+
crackerjack/agents/semantic_agent.py,sha256=DsUvNrRtDF6w--Amnre1Gt4iBi_uev_tVNSACY3EtOA,17879
|
|
34
|
+
crackerjack/agents/semantic_helpers.py,sha256=MPZ34Ye71N-SYwXQySbT3LaAhSL7edTZCd00rJOzXTE,12131
|
|
30
35
|
crackerjack/agents/test_creation_agent.py,sha256=Mv8rjmhthoFyP5fvzMe6BAb1PsfUUe7N7w7ofsJDSSs,79768
|
|
31
36
|
crackerjack/agents/test_specialist_agent.py,sha256=m9N6G6j1Gc39KxaAIgkkFwlJFdfkZx6NGHOffivxj6M,18434
|
|
32
37
|
crackerjack/agents/tracker.py,sha256=5Hje7Ox-hSPq2yTqkbucwChEvzwlCQxjgVri0KSUUPY,3401
|
|
@@ -36,27 +41,28 @@ crackerjack/cli/cache_handlers_enhanced.py,sha256=6X5rYSo1l-rj9eb7eB8mpA-6BlUagy
|
|
|
36
41
|
crackerjack/cli/facade.py,sha256=e4_oB04awqEijI3yqiYAZGc6x09uMBa4ih0SsXpgMuY,3751
|
|
37
42
|
crackerjack/cli/handlers.py,sha256=mYhwMLUKid6mQLff0ScpcnhP0yUS9IzOIMdM7VLkUCc,17178
|
|
38
43
|
crackerjack/cli/interactive.py,sha256=E7WgzgNRlgOuKLbi5Io3RQ3BBXS8sIDiUQcJh6b2x9I,17583
|
|
39
|
-
crackerjack/cli/options.py,sha256=
|
|
44
|
+
crackerjack/cli/options.py,sha256=DAR2zu40U0pDHJ-fLVyppIHh9Klzsg-c5hqxOJkw-dA,37440
|
|
45
|
+
crackerjack/cli/semantic_handlers.py,sha256=QrlyKfy3K7wI0mLYv7W4nL9WZ14SA4zqWDUc21jM9is,10103
|
|
40
46
|
crackerjack/cli/utils.py,sha256=XC7dT8GNidhORjUe2p2hQOpZgCi2KvVCNu6g3azzgqY,584
|
|
41
47
|
crackerjack/config/__init__.py,sha256=b0481N2f_JvGufMPcbo5IXu2VjYd111r1BHw0oD3x7o,330
|
|
42
48
|
crackerjack/config/global_lock_config.py,sha256=PyonoA2__HKEEvn6SD-gEYh9iD7xIAdts2C3lNoTWhw,1996
|
|
43
49
|
crackerjack/config/hooks.py,sha256=iYliWaMIuEnTHyhf_u9je-7jTEGBQz3ohZGFtc6jIFk,5294
|
|
44
50
|
crackerjack/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
45
|
-
crackerjack/core/async_workflow_orchestrator.py,sha256=
|
|
51
|
+
crackerjack/core/async_workflow_orchestrator.py,sha256=yx768HWTNeRAcG0a2rJO2DKgYkVGR5BEkfSlPZedxHw,26169
|
|
46
52
|
crackerjack/core/autofix_coordinator.py,sha256=e8n7_LBG5K1DINFuXQReKuvYOpG2ymwsih7zFr8E8Eg,8694
|
|
47
53
|
crackerjack/core/container.py,sha256=e9_1YnWHijUJ0yl23lpgf9mennVQy8NkgJBKtZstG-M,2889
|
|
48
|
-
crackerjack/core/enhanced_container.py,sha256=
|
|
54
|
+
crackerjack/core/enhanced_container.py,sha256=mUoSVjA0ZEdpyBR1CqDxB86fUJVqUZXNq5p0AwuLrps,19466
|
|
49
55
|
crackerjack/core/file_lifecycle.py,sha256=W0A0Bk3XTds1Za-h4gASAUdUrMozbq2XvGi-BjrnkGc,15149
|
|
50
56
|
crackerjack/core/performance.py,sha256=ZVpDydd5BDycxwwZLOUG1tzwejwVvjJvFFSiKbDHpVQ,7606
|
|
51
57
|
crackerjack/core/performance_monitor.py,sha256=5fMDcn8mSDAEJNm6DfNNLDt_NTcRwDHcbKx_eyqHeTs,13303
|
|
52
|
-
crackerjack/core/phase_coordinator.py,sha256=
|
|
53
|
-
crackerjack/core/proactive_workflow.py,sha256=
|
|
58
|
+
crackerjack/core/phase_coordinator.py,sha256=O8uMxpJRQn2tuNLvEXLcsMqktKsT1acdM5py987uKHg,31392
|
|
59
|
+
crackerjack/core/proactive_workflow.py,sha256=LoBeWzgP0SrsPpcQuSg9UnshyKu3pPR_Dpez1kM8kKM,9787
|
|
54
60
|
crackerjack/core/resource_manager.py,sha256=gFQ629Ves5vwd0KNSVCqDp4H57e7-342yRCWL4xRHD8,12797
|
|
55
61
|
crackerjack/core/service_watchdog.py,sha256=Ttj1imOxvUea4Tkf5JO1e2dQtGIK7D-bX1xOsHTa-Kc,15688
|
|
56
62
|
crackerjack/core/session_coordinator.py,sha256=TgoGE9DfXe2x-OkH93Ld9dX9ROjx2_mZFkGXen-z5YI,15680
|
|
57
63
|
crackerjack/core/timeout_manager.py,sha256=_sbEsfYDwWx7y0Pn89QCoAZ5DpWIbCdtR9qkG_Kqj5E,15013
|
|
58
64
|
crackerjack/core/websocket_lifecycle.py,sha256=74kn6ugu6FLlDQhCNSPgqguCFwRoT1WFOvtl8G2OyFc,12860
|
|
59
|
-
crackerjack/core/workflow_orchestrator.py,sha256=
|
|
65
|
+
crackerjack/core/workflow_orchestrator.py,sha256=Bnir2ojfq4u6J0npw1qqvYlPgCHjE8E8nIx1Y7cVEx0,78355
|
|
60
66
|
crackerjack/docs/INDEX.md,sha256=a6CGFEeL5DX_FRft_JFWd0nOxoBmCSSp-QHIC3B7ato,342
|
|
61
67
|
crackerjack/docs/generated/api/API_REFERENCE.md,sha256=mWoqImZA7AhDvRqqF1MhUo70g_pnZr3NoBeZQRotqN8,155816
|
|
62
68
|
crackerjack/docs/generated/api/CLI_REFERENCE.md,sha256=ikuG0hO5EjIiQlJtAUnvEuAhXDa-JHPULPXNNmUwvk4,2805
|
|
@@ -64,7 +70,7 @@ crackerjack/docs/generated/api/CROSS_REFERENCES.md,sha256=MscaFom5lJAT1bgh6ubFrj
|
|
|
64
70
|
crackerjack/docs/generated/api/PROTOCOLS.md,sha256=sDoy3TnMPvkLO_Vrb3u70C7g5UPClshYnHtIMn3oxTk,92
|
|
65
71
|
crackerjack/docs/generated/api/SERVICES.md,sha256=Zqh-6RiJeWWRiEmKR4MUZEbguOdrMlDvSp6tjY4YrXw,22315
|
|
66
72
|
crackerjack/documentation/__init__.py,sha256=gGR--er5oTHhbwLKOHVlU2QgGmQtA0qUXf33F5IzeP0,774
|
|
67
|
-
crackerjack/documentation/ai_templates.py,sha256=
|
|
73
|
+
crackerjack/documentation/ai_templates.py,sha256=ulNFnZqZgHPReV48eo1IfCAUMTmsIdiKmCIIsRPB-Ak,21598
|
|
68
74
|
crackerjack/documentation/dual_output_generator.py,sha256=w7rDthOnyFeRPQDWvYiR4aiScPxsHzkwjJ3blMwT9-w,28552
|
|
69
75
|
crackerjack/documentation/mkdocs_integration.py,sha256=KqU2_9mA-rjP_VDrrfr6KTuPWtTlcvkInPxoH03LTC0,15657
|
|
70
76
|
crackerjack/documentation/reference_generator.py,sha256=NGAIsC5bnjLBQkvEXPDU0pw8bQ5kYzbUUokhlXXFqrU,34520
|
|
@@ -103,12 +109,12 @@ crackerjack/mcp/progress_components.py,sha256=URtnrNv1QQzUKY3msO_cBrYHjPlzVDqFbZ
|
|
|
103
109
|
crackerjack/mcp/progress_monitor.py,sha256=3TxQ_Og1md8zuNrH9cltOa8RQf_5lHNiVh9DiBkvbBM,37546
|
|
104
110
|
crackerjack/mcp/rate_limiter.py,sha256=LDefC3CLawIhpyFfFXPmhR-8yZCAkQYbV2sll9JrnD8,12406
|
|
105
111
|
crackerjack/mcp/server.py,sha256=-AdHHoFNAtoPM1A3_M2giZbIbggUhhvv16uIXk2xqNo,403
|
|
106
|
-
crackerjack/mcp/server_core.py,sha256=
|
|
112
|
+
crackerjack/mcp/server_core.py,sha256=QyYMt3eeb09FwQ1V-cMESzw0wst67WojpGcvEFWA7Pw,11367
|
|
107
113
|
crackerjack/mcp/service_watchdog.py,sha256=B4hTrdgRZTf9wDHQWplyKio6AxePvpR8gmid511cBAY,16938
|
|
108
114
|
crackerjack/mcp/state.py,sha256=pNclwUxGTH5YiRMq8hB15B9_rpX9aJ-IVnhMw7q9dtI,14427
|
|
109
115
|
crackerjack/mcp/task_manager.py,sha256=hxuZGbRHwEBO-W3UTbg7Lx7gMhTcPRaAiQ8I8VIFs6g,8713
|
|
110
116
|
crackerjack/mcp/websocket_server.py,sha256=Dsw_orJOSeO7t7zRiVErh8GLp5jAaGab6shOeQTynbw,203
|
|
111
|
-
crackerjack/mcp/tools/__init__.py,sha256=
|
|
117
|
+
crackerjack/mcp/tools/__init__.py,sha256=nV3tGXw4M4p8etZGqxKEglEgFZURGtazQvqwzLJ6VRs,696
|
|
112
118
|
crackerjack/mcp/tools/core_tools.py,sha256=8gytjhqxKglR-ZvLIy0DwJzzaqStex_s9WHiAjkXlD0,14612
|
|
113
119
|
crackerjack/mcp/tools/error_analyzer.py,sha256=8ap3_TIqEfrN0n49w_wJFRE3zu7eHB9E8UyXqqz7unM,8515
|
|
114
120
|
crackerjack/mcp/tools/execution_tools.py,sha256=iMtcTm45v04wNgfiIdzOjMXyB-lZ9x-yUtN9SuLGxNI,10410
|
|
@@ -118,6 +124,7 @@ crackerjack/mcp/tools/intelligence_tools.py,sha256=HRjX6i3wKKniUbffYZFjRP2PdxsTm
|
|
|
118
124
|
crackerjack/mcp/tools/monitoring_tools.py,sha256=5RYbytBmLjJdz1sE33xYchdrO9LgzGwSvsqRsZIV7oA,21804
|
|
119
125
|
crackerjack/mcp/tools/proactive_tools.py,sha256=EKTCNS8285p6f3p3bd3AdEGN6OWMvAWn8ArTWt_pgSc,12972
|
|
120
126
|
crackerjack/mcp/tools/progress_tools.py,sha256=S4IkENegGaH06EYNotJ3m2Zuky2OMk-iSd3rLs9T9vs,6930
|
|
127
|
+
crackerjack/mcp/tools/semantic_tools.py,sha256=fPH5AAEyttdJibZzmFYTGlUw079ue2gSvTuHC_ihC_g,18512
|
|
121
128
|
crackerjack/mcp/tools/utility_tools.py,sha256=zt4tES5uhyvZfMdgtStlqItWCBA4MWqGCypQ5u_HPds,10367
|
|
122
129
|
crackerjack/mcp/tools/workflow_executor.py,sha256=IvHPyvak1UP1MsWgrYScoFvIe52gL7cdPlec0mAHkFc,19628
|
|
123
130
|
crackerjack/mcp/websocket/__init__.py,sha256=lZzyfvYjywHfqyy5X3wWR_jgBkRUxYSpgjdKALBzZcI,345
|
|
@@ -134,6 +141,7 @@ crackerjack/models/config.py,sha256=YBP3W_XhI94W_mcDZ_Tw5p0cOtVPMKZ4nsJs-GiXyYU,
|
|
|
134
141
|
crackerjack/models/config_adapter.py,sha256=hlw2fwlgwSFjcgzRFG4NYsV5bO1Tud0PL-2WsJRSlvw,8821
|
|
135
142
|
crackerjack/models/protocols.py,sha256=ZtyatubJxnmnnTKzXWCbl8CvREPt2pywSco5KYBJI2o,10970
|
|
136
143
|
crackerjack/models/resource_protocols.py,sha256=oZiq0NEG2kWV0XQ871GIYRx_0v_oQulvEjTbidTbueM,7297
|
|
144
|
+
crackerjack/models/semantic_models.py,sha256=ro0yHb7ctPV_w1_Fkgx9aNPK9PU3U3o976XmGpHkbgc,8666
|
|
137
145
|
crackerjack/models/task.py,sha256=Du5vwXj-P_aSIZsFt1Ek4jCTkXz_6DXfnflUxgXkecY,4542
|
|
138
146
|
crackerjack/monitoring/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
139
147
|
crackerjack/monitoring/ai_agent_watchdog.py,sha256=_Usni6d8A-1CKAx2d5LUMXYldMiQB5cdZPd-NrCe2p8,15138
|
|
@@ -148,7 +156,7 @@ crackerjack/orchestration/test_progress_streamer.py,sha256=Yu6uHuhoCvX6SZP0QNG3Y
|
|
|
148
156
|
crackerjack/plugins/__init__.py,sha256=B7hy9b9amJVbYLHgIz8kgTI29j-vYxsUY_sZ5ISbXU0,386
|
|
149
157
|
crackerjack/plugins/base.py,sha256=VFk-xNsgjSlmzJ_iPQALhkr7cguiOtEd3XSR9CcCPkc,5732
|
|
150
158
|
crackerjack/plugins/hooks.py,sha256=Much8c_KNbvYMqcBSke90pRWuga5BZvefmGY8GK3j44,7629
|
|
151
|
-
crackerjack/plugins/loader.py,sha256=
|
|
159
|
+
crackerjack/plugins/loader.py,sha256=2U4_vWLXsc7qOji-4dzJDF993EU7p8SH23ijhqMHahY,10850
|
|
152
160
|
crackerjack/plugins/managers.py,sha256=3kQlxjvcHyHDgZIdr-JZBO1kqz2asqA4kf2XVAA1K6A,8824
|
|
153
161
|
crackerjack/security/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
154
162
|
crackerjack/security/audit.py,sha256=NZJRREvjeKJMhusNZkL8GnBf4XiQFnTwKGcu6NqmvgI,6728
|
|
@@ -171,6 +179,7 @@ crackerjack/services/dependency_analyzer.py,sha256=28u5zfV_2foVKmjfVbr9ATbxIPq7C
|
|
|
171
179
|
crackerjack/services/dependency_monitor.py,sha256=x_PpRUt-LbzHlTyoSt2kiXTQn2fqAiqouiwFSAU9SGg,20560
|
|
172
180
|
crackerjack/services/documentation_generator.py,sha256=xDJ2dv3Q_HTGCPJADKPVtYzcIpSOhuH5qUxPU2ttICE,16482
|
|
173
181
|
crackerjack/services/documentation_service.py,sha256=V2fY01u_tP_ep87KMGxIocgP6hfpwbf-YyVqssLQSns,24792
|
|
182
|
+
crackerjack/services/embeddings.py,sha256=UWn3Pdb9S-9sn6hnaOTvJc4dusRE64aPbhgc9Zyt99U,14917
|
|
174
183
|
crackerjack/services/enhanced_filesystem.py,sha256=IT-obfj2U2Sfy0iJOq0ZAiczEN6LdHf6VAhnugQe1mQ,15487
|
|
175
184
|
crackerjack/services/enterprise_optimizer.py,sha256=q6srIGxe18N9zH-MNhZ9R34sWnr_-ybGqOWnKyI17Zk,33798
|
|
176
185
|
crackerjack/services/error_pattern_analyzer.py,sha256=YKFQi_nXx5dq-Wvi6AngKEaA-Bv5ggTQ2B2ML0AtF0c,24415
|
|
@@ -196,7 +205,7 @@ crackerjack/services/performance_monitor.py,sha256=cDu6FoiUX2VpslA3vG4JL6YQyIk1J
|
|
|
196
205
|
crackerjack/services/predictive_analytics.py,sha256=OcZYP0p2_zZuyWqbqzLHDoHTxVfrPm3VtiY-Yq9y7xc,17843
|
|
197
206
|
crackerjack/services/quality_baseline.py,sha256=ImC1XTFTfrwFIDDDX1F0V7sGquAXI21oVxgjOSYIYFQ,8229
|
|
198
207
|
crackerjack/services/quality_baseline_enhanced.py,sha256=mBxzXD4lkegPc_q_KNJyorBk0cezud40lOWYDBWeNGU,24064
|
|
199
|
-
crackerjack/services/quality_intelligence.py,sha256=
|
|
208
|
+
crackerjack/services/quality_intelligence.py,sha256=jnQIluyzCnqqRR9ZFvX-rq86Wpxy2qRb28UpLKeD-so,28832
|
|
200
209
|
crackerjack/services/regex_patterns.py,sha256=iis9gSzXZtnX14lODGfSUsf7bcCRTw7rdSgog5DKFNk,117341
|
|
201
210
|
crackerjack/services/regex_utils.py,sha256=e7AD59_L-T5-oOxzqsGgrLd94uxRE9aKnwasZkohwI8,14966
|
|
202
211
|
crackerjack/services/secure_path_utils.py,sha256=aHsLwxDch42DidPYtTL_ko40g2rhbXDLnRhcx2LlGk8,16688
|
|
@@ -205,7 +214,7 @@ crackerjack/services/secure_subprocess.py,sha256=tDHyuxavTES1uXzJOdxZlza8d92hvza
|
|
|
205
214
|
crackerjack/services/security.py,sha256=plgIz-B8oYN_mpF4NYrqHnT7TRcsp4jr0-YlV9WgD5o,7298
|
|
206
215
|
crackerjack/services/security_logger.py,sha256=AAjd9VKVmCo158UifyEKd79VgtWKeuaIVyXYL8qvqT8,17001
|
|
207
216
|
crackerjack/services/server_manager.py,sha256=MwvMMxhaCiZD4pcKM2ODXB-gu2s22n_v_uIqrwoJsHs,11934
|
|
208
|
-
crackerjack/services/smart_scheduling.py,sha256=
|
|
217
|
+
crackerjack/services/smart_scheduling.py,sha256=m6Vdrrnkd5vw9aBa1cqALRna4tWWTYvfnnBbB35E8QQ,4351
|
|
209
218
|
crackerjack/services/status_authentication.py,sha256=jzZ1p5Trl39X8uXeyYO39te78dz3zsdDmSVSjEW58eA,16495
|
|
210
219
|
crackerjack/services/status_security_manager.py,sha256=et0h6w7Wt1cPFjzg7frsykAQ-IMfiAXr44WU9Fs6-1U,10967
|
|
211
220
|
crackerjack/services/terminal_utils.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -213,21 +222,22 @@ crackerjack/services/thread_safe_status_collector.py,sha256=DXtuaj1gT4KwPZ33LHE-
|
|
|
213
222
|
crackerjack/services/tool_version_service.py,sha256=2FKDAPjnzXALNS_jJCPTy-shLsSPiRRTtHvIFuND3U8,1233
|
|
214
223
|
crackerjack/services/unified_config.py,sha256=QmfcAsv7N65veDI7NiAaiyh0AVTs-t4ZOk3jJZzjzGc,13565
|
|
215
224
|
crackerjack/services/validation_rate_limiter.py,sha256=T5n0N8PB5Ds2JrYm64CBARIm7E5fflLwKh_pCtQz3oI,7753
|
|
225
|
+
crackerjack/services/vector_store.py,sha256=DyKxnwoPtKPVBEromMNRtO3okF1r7PIJWrv2jbpC3w4,23549
|
|
216
226
|
crackerjack/services/version_analyzer.py,sha256=yUGku0eO2MrvqV8tVuztuHEBhyOOp7Rwnv-hWd0uIm4,16910
|
|
217
227
|
crackerjack/services/version_checker.py,sha256=UTU3EjC4yiq3hdL203HxTErbTy1oBZnyrlmGd2cUmZk,7579
|
|
218
228
|
crackerjack/services/websocket_resource_limiter.py,sha256=bsEAdqY_Qgaa_Kkz5Ew8WOnTueg7R8FQFp6eKHIDEGM,17217
|
|
219
229
|
crackerjack/services/zuban_lsp_service.py,sha256=CA4FKvVcSGIbgi0b9v86pOTINKguo8nvTfKuO_edlmA,13101
|
|
220
230
|
crackerjack/slash_commands/__init__.py,sha256=69ObvFhmSn06ekM5irraPtFA1KcpP2MjQ0RhVJNt5M8,1774
|
|
221
231
|
crackerjack/slash_commands/init.md,sha256=mANRdCiFAzaTw29lKNrI1JFthK4pxVdtiFC5lN2SDSQ,4581
|
|
222
|
-
crackerjack/slash_commands/run.md,sha256=
|
|
232
|
+
crackerjack/slash_commands/run.md,sha256=yakoG1H0Wb9xvLokEdibpL524iHvsAqtEkJIuq_rZi4,7924
|
|
223
233
|
crackerjack/slash_commands/status.md,sha256=U3qqppVLtIIm2lEiMYaKagaHYLI9UplL7OH1j6SRJGw,3921
|
|
224
234
|
crackerjack/tools/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
225
235
|
crackerjack/tools/validate_input_validator_patterns.py,sha256=NN7smYlXWrHLQXTb-81gRam2vjW-cJav92f1klPA0qA,8234
|
|
226
236
|
crackerjack/tools/validate_regex_patterns.py,sha256=J7GG9EP1fASpRIsG8qRPeiCSkdCwmk0sdo29GgoJ6w8,5863
|
|
227
237
|
crackerjack/ui/__init__.py,sha256=eMb1OeTU-dSLICAACn0YdYB4Amdr8wHckjKfn0wOIZE,37
|
|
228
238
|
crackerjack/ui/server_panels.py,sha256=F5IH6SNN06BaZQMsFx_D-OA286aojmaFPJ5kvvSRv_c,4232
|
|
229
|
-
crackerjack-0.
|
|
230
|
-
crackerjack-0.
|
|
231
|
-
crackerjack-0.
|
|
232
|
-
crackerjack-0.
|
|
233
|
-
crackerjack-0.
|
|
239
|
+
crackerjack-0.39.1.dist-info/METADATA,sha256=5lW_THu86owYxpYnBifg6vQ0kh3CiRVkp-FAPizho2Y,38239
|
|
240
|
+
crackerjack-0.39.1.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
241
|
+
crackerjack-0.39.1.dist-info/entry_points.txt,sha256=AJKNft0WXm9xoGUJ3Trl-iXHOWxRAYbagQiza3AILr4,57
|
|
242
|
+
crackerjack-0.39.1.dist-info/licenses/LICENSE,sha256=fDt371P6_6sCu7RyqiZH_AhT1LdN3sN1zjBtqEhDYCk,1531
|
|
243
|
+
crackerjack-0.39.1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|