clawdeck 0.5.3__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.
Files changed (51) hide show
  1. clawdeck/__init__.py +37 -0
  2. clawdeck/agent.py +5296 -0
  3. clawdeck/browser_auth.py +885 -0
  4. clawdeck/browser_controller.py +846 -0
  5. clawdeck/browser_task_executor.py +413 -0
  6. clawdeck/browser_use.py +465 -0
  7. clawdeck/buddy.py +234 -0
  8. clawdeck/cli.py +1285 -0
  9. clawdeck/compaction.py +193 -0
  10. clawdeck/config.py +459 -0
  11. clawdeck/credential_manager.py +289 -0
  12. clawdeck/cron_agent.py +210 -0
  13. clawdeck/document_readers.py +3947 -0
  14. clawdeck/dream.py +319 -0
  15. clawdeck/hooks.py +204 -0
  16. clawdeck/lsp_client.py +286 -0
  17. clawdeck/memory.py +284 -0
  18. clawdeck/planner.py +221 -0
  19. clawdeck/plugin_system.py +280 -0
  20. clawdeck/rewind.py +176 -0
  21. clawdeck/session_manager.py +270 -0
  22. clawdeck/skills.py +169 -0
  23. clawdeck/subagent.py +222 -0
  24. clawdeck/token_budget.py +157 -0
  25. clawdeck/tools/__init__.py +5 -0
  26. clawdeck/tools/browser/__init__.py +27 -0
  27. clawdeck/tools/browser/automation_orchestrator.py +350 -0
  28. clawdeck/tools/browser/browser_automation_tools.py +308 -0
  29. clawdeck/tools/browser/browser_manager.py +265 -0
  30. clawdeck/tools/browser/code_templates.py +740 -0
  31. clawdeck/tools/browser/dom_analyzer.py +494 -0
  32. clawdeck/tools/browser/enhanced_automation_orchestrator.py +1019 -0
  33. clawdeck/tools/browser/enhanced_code_generator.py +755 -0
  34. clawdeck/tools/browser/error_classification.py +570 -0
  35. clawdeck/tools/browser/intelligent_error_recovery.py +752 -0
  36. clawdeck/tools/browser/interactive_error_handler.py +446 -0
  37. clawdeck/tools/browser/safe_execution.py +400 -0
  38. clawdeck/tools/browser/secure_python_sandbox.py +574 -0
  39. clawdeck/tools/browser/stagehand_generator.py +414 -0
  40. clawdeck/tools/browser/stagehand_integration.py +386 -0
  41. clawdeck/tools/browser/unified_automation_interface.py +438 -0
  42. clawdeck/tools/browser/unified_error_handling.py +515 -0
  43. clawdeck/tools/browser/vision_fallback_integration.py +463 -0
  44. clawdeck/utils.py +426 -0
  45. clawdeck/vim_mode.py +85 -0
  46. clawdeck/vision_engine.py +412 -0
  47. clawdeck/voice.py +158 -0
  48. clawdeck-0.5.3.dist-info/METADATA +980 -0
  49. clawdeck-0.5.3.dist-info/RECORD +51 -0
  50. clawdeck-0.5.3.dist-info/WHEEL +4 -0
  51. clawdeck-0.5.3.dist-info/entry_points.txt +3 -0
clawdeck/__init__.py ADDED
@@ -0,0 +1,37 @@
1
+ """
2
+ Clawdeck CLI - An intelligent AI coding assistant powered by Anthropic Claude.
3
+
4
+ This package provides a command-line interface for interacting with Claude
5
+ to build projects, generate code, and improve your codebase.
6
+ """
7
+
8
+ __version__ = "0.5.3"
9
+ __author__ = "Yiqiao Yin"
10
+ __email__ = "yiqiao.yin@wyn-associates.com"
11
+
12
+ from .agent import ClawdeckAgent
13
+ from .cli import main
14
+ from .memory import MemoryManager
15
+ from .subagent import SubAgentManager
16
+ from .planner import Planner
17
+ from .token_budget import TokenBudgetManager
18
+ from .skills import SkillRegistry
19
+ from .hooks import HookManager
20
+ from .dream import DreamManager
21
+ from .compaction import CompactionManager
22
+ from .vim_mode import VimModeManager
23
+ from .voice import VoiceInputManager
24
+ from .buddy import BuddyManager
25
+ from .cron_agent import CronManager
26
+ from .plugin_system import PluginManager
27
+ from .lsp_client import LSPClient
28
+ from .rewind import RewindManager
29
+
30
+ __all__ = [
31
+ "ClawdeckAgent", "main",
32
+ "MemoryManager", "SubAgentManager", "Planner",
33
+ "TokenBudgetManager", "SkillRegistry", "HookManager",
34
+ "DreamManager", "CompactionManager", "VimModeManager",
35
+ "VoiceInputManager", "BuddyManager", "CronManager",
36
+ "PluginManager", "LSPClient", "RewindManager",
37
+ ]