crackerjack 0.39.10__py3-none-any.whl → 0.40.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of crackerjack might be problematic. Click here for more details.

@@ -1,10 +1,15 @@
1
1
  """Rust tool adapters for unified integration."""
2
2
 
3
+ from acb.adapters import register_adapter
4
+
3
5
  from .rust_tool_adapter import Issue, RustToolAdapter, ToolResult
4
6
  from .rust_tool_manager import RustToolHookManager
5
7
  from .skylos_adapter import DeadCodeIssue, SkylosAdapter
6
8
  from .zuban_adapter import TypeIssue, ZubanAdapter
7
9
 
10
+ # Register AI adapter
11
+ register_adapter("ai", "crackerjack.adapters.ai.claude", "ClaudeCodeFixer")
12
+
8
13
  __all__ = [
9
14
  "RustToolAdapter",
10
15
  "ToolResult",
@@ -0,0 +1,5 @@
1
+ """AI adapters for code fixing and analysis."""
2
+
3
+ from .claude import ClaudeCodeFixer, ClaudeCodeFixerSettings
4
+
5
+ __all__ = ["ClaudeCodeFixer", "ClaudeCodeFixerSettings"]