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.
- clawdeck/__init__.py +37 -0
- clawdeck/agent.py +5296 -0
- clawdeck/browser_auth.py +885 -0
- clawdeck/browser_controller.py +846 -0
- clawdeck/browser_task_executor.py +413 -0
- clawdeck/browser_use.py +465 -0
- clawdeck/buddy.py +234 -0
- clawdeck/cli.py +1285 -0
- clawdeck/compaction.py +193 -0
- clawdeck/config.py +459 -0
- clawdeck/credential_manager.py +289 -0
- clawdeck/cron_agent.py +210 -0
- clawdeck/document_readers.py +3947 -0
- clawdeck/dream.py +319 -0
- clawdeck/hooks.py +204 -0
- clawdeck/lsp_client.py +286 -0
- clawdeck/memory.py +284 -0
- clawdeck/planner.py +221 -0
- clawdeck/plugin_system.py +280 -0
- clawdeck/rewind.py +176 -0
- clawdeck/session_manager.py +270 -0
- clawdeck/skills.py +169 -0
- clawdeck/subagent.py +222 -0
- clawdeck/token_budget.py +157 -0
- clawdeck/tools/__init__.py +5 -0
- clawdeck/tools/browser/__init__.py +27 -0
- clawdeck/tools/browser/automation_orchestrator.py +350 -0
- clawdeck/tools/browser/browser_automation_tools.py +308 -0
- clawdeck/tools/browser/browser_manager.py +265 -0
- clawdeck/tools/browser/code_templates.py +740 -0
- clawdeck/tools/browser/dom_analyzer.py +494 -0
- clawdeck/tools/browser/enhanced_automation_orchestrator.py +1019 -0
- clawdeck/tools/browser/enhanced_code_generator.py +755 -0
- clawdeck/tools/browser/error_classification.py +570 -0
- clawdeck/tools/browser/intelligent_error_recovery.py +752 -0
- clawdeck/tools/browser/interactive_error_handler.py +446 -0
- clawdeck/tools/browser/safe_execution.py +400 -0
- clawdeck/tools/browser/secure_python_sandbox.py +574 -0
- clawdeck/tools/browser/stagehand_generator.py +414 -0
- clawdeck/tools/browser/stagehand_integration.py +386 -0
- clawdeck/tools/browser/unified_automation_interface.py +438 -0
- clawdeck/tools/browser/unified_error_handling.py +515 -0
- clawdeck/tools/browser/vision_fallback_integration.py +463 -0
- clawdeck/utils.py +426 -0
- clawdeck/vim_mode.py +85 -0
- clawdeck/vision_engine.py +412 -0
- clawdeck/voice.py +158 -0
- clawdeck-0.5.3.dist-info/METADATA +980 -0
- clawdeck-0.5.3.dist-info/RECORD +51 -0
- clawdeck-0.5.3.dist-info/WHEEL +4 -0
- 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
|
+
]
|