CONTRIBUTING.md
LICENSE
MANIFEST.in
README.md
pyproject.toml
AgentCrew/__init__.py
AgentCrew/app.py
AgentCrew/main.py
AgentCrew/main_docker.py
AgentCrew/assets/agentcrew_logo.png
AgentCrew/modules/__init__.py
AgentCrew/modules/a2a/__init__.py
AgentCrew/modules/a2a/adapters.py
AgentCrew/modules/a2a/agent_cards.py
AgentCrew/modules/a2a/registry.py
AgentCrew/modules/a2a/server.py
AgentCrew/modules/a2a/task_manager.py
AgentCrew/modules/a2a/common/__init__.py
AgentCrew/modules/a2a/common/client/__init__.py
AgentCrew/modules/a2a/common/client/card_resolver.py
AgentCrew/modules/a2a/common/client/client.py
AgentCrew/modules/a2a/common/server/__init__.py
AgentCrew/modules/a2a/common/server/auth_middleware.py
AgentCrew/modules/a2a/common/server/task_manager.py
AgentCrew/modules/a2a/common/server/utils.py
AgentCrew/modules/agents/__init__.py
AgentCrew/modules/agents/base.py
AgentCrew/modules/agents/example.py
AgentCrew/modules/agents/local_agent.py
AgentCrew/modules/agents/manager.py
AgentCrew/modules/agents/remote_agent.py
AgentCrew/modules/agents/tools/__init__.py
AgentCrew/modules/agents/tools/ask.py
AgentCrew/modules/agents/tools/delegate.py
AgentCrew/modules/agents/tools/transfer.py
AgentCrew/modules/anthropic/__init__.py
AgentCrew/modules/anthropic/service.py
AgentCrew/modules/browser_automation/__init__.py
AgentCrew/modules/browser_automation/chrome_manager.py
AgentCrew/modules/browser_automation/element_extractor.py
AgentCrew/modules/browser_automation/js_loader.py
AgentCrew/modules/browser_automation/service.py
AgentCrew/modules/browser_automation/tool.py
AgentCrew/modules/browser_automation/js/click_element.js
AgentCrew/modules/browser_automation/js/extract_clickable_elements.js
AgentCrew/modules/browser_automation/js/extract_elements_by_text.js
AgentCrew/modules/browser_automation/js/extract_input_elements.js
AgentCrew/modules/browser_automation/js/extract_scrollable_elements.js
AgentCrew/modules/browser_automation/js/focus_and_clear_element.js
AgentCrew/modules/browser_automation/js/scroll_page.js
AgentCrew/modules/browser_automation/js/trigger_input_events.js
AgentCrew/modules/chat/__init__.py
AgentCrew/modules/chat/consolidation.py
AgentCrew/modules/chat/file_handler.py
AgentCrew/modules/chat/history.py
AgentCrew/modules/chat/message_handler.py
AgentCrew/modules/chat/message/__init__.py
AgentCrew/modules/chat/message/base.py
AgentCrew/modules/chat/message/command_processor.py
AgentCrew/modules/chat/message/conversation.py
AgentCrew/modules/chat/message/handler.py
AgentCrew/modules/chat/message/tool_manager.py
AgentCrew/modules/clipboard/__init__.py
AgentCrew/modules/clipboard/service.py
AgentCrew/modules/clipboard/tool.py
AgentCrew/modules/code_analysis/__init__.py
AgentCrew/modules/code_analysis/service.py
AgentCrew/modules/code_analysis/tool.py
AgentCrew/modules/command_execution/__init__.py
AgentCrew/modules/command_execution/constants.py
AgentCrew/modules/command_execution/metric.py
AgentCrew/modules/command_execution/service.py
AgentCrew/modules/command_execution/tool.py
AgentCrew/modules/command_execution/types.py
AgentCrew/modules/config/__init__.py
AgentCrew/modules/config/config_management.py
AgentCrew/modules/console/__init__.py
AgentCrew/modules/console/command_handlers.py
AgentCrew/modules/console/completers.py
AgentCrew/modules/console/confirmation_handler.py
AgentCrew/modules/console/console_ui.py
AgentCrew/modules/console/constants.py
AgentCrew/modules/console/conversation_handler.py
AgentCrew/modules/console/display_handlers.py
AgentCrew/modules/console/input_handler.py
AgentCrew/modules/console/tool_display.py
AgentCrew/modules/console/ui_effects.py
AgentCrew/modules/console/utils.py
AgentCrew/modules/custom_llm/__init__.py
AgentCrew/modules/custom_llm/copilot_response_service.py
AgentCrew/modules/custom_llm/deepinfra_service.py
AgentCrew/modules/custom_llm/github_copilot_service.py
AgentCrew/modules/custom_llm/service.py
AgentCrew/modules/file_editing/__init__.py
AgentCrew/modules/file_editing/safety_validator.py
AgentCrew/modules/file_editing/search_replace_engine.py
AgentCrew/modules/file_editing/service.py
AgentCrew/modules/file_editing/tool.py
AgentCrew/modules/file_editing/tree_sitter_checker.py
AgentCrew/modules/google/__init__.py
AgentCrew/modules/google/native_service.py
AgentCrew/modules/google/service.py
AgentCrew/modules/groq/__init__.py
AgentCrew/modules/groq/service.py
AgentCrew/modules/gui/__init__.py
AgentCrew/modules/gui/qt_ui.py
AgentCrew/modules/gui/worker.py
AgentCrew/modules/gui/components/__init__.py
AgentCrew/modules/gui/components/chat_components.py
AgentCrew/modules/gui/components/command_handler.py
AgentCrew/modules/gui/components/completers.py
AgentCrew/modules/gui/components/conversation_components.py
AgentCrew/modules/gui/components/input_components.py
AgentCrew/modules/gui/components/keyboard_handler.py
AgentCrew/modules/gui/components/menu_components.py
AgentCrew/modules/gui/components/message_handlers.py
AgentCrew/modules/gui/components/tool_handlers.py
AgentCrew/modules/gui/components/ui_state_manager.py
AgentCrew/modules/gui/themes/README.md
AgentCrew/modules/gui/themes/__init__.py
AgentCrew/modules/gui/themes/atom_light.py
AgentCrew/modules/gui/themes/catppuccin.py
AgentCrew/modules/gui/themes/dracula.py
AgentCrew/modules/gui/themes/nord.py
AgentCrew/modules/gui/themes/saigontech.py
AgentCrew/modules/gui/themes/style_provider.py
AgentCrew/modules/gui/themes/unicorn.py
AgentCrew/modules/gui/utils/__init__.py
AgentCrew/modules/gui/utils/macos_clipboard.py
AgentCrew/modules/gui/utils/strings.py
AgentCrew/modules/gui/utils/wins_clipboard.py
AgentCrew/modules/gui/widgets/__init__.py
AgentCrew/modules/gui/widgets/config_window.py
AgentCrew/modules/gui/widgets/history_sidebar.py
AgentCrew/modules/gui/widgets/json_editor.py
AgentCrew/modules/gui/widgets/loading_overlay.py
AgentCrew/modules/gui/widgets/markdown_editor.py
AgentCrew/modules/gui/widgets/message_bubble.py
AgentCrew/modules/gui/widgets/paste_aware_textedit.py
AgentCrew/modules/gui/widgets/system_message.py
AgentCrew/modules/gui/widgets/token_usage.py
AgentCrew/modules/gui/widgets/tool_widget.py
AgentCrew/modules/gui/widgets/configs/__init__.py
AgentCrew/modules/gui/widgets/configs/agent_config.py
AgentCrew/modules/gui/widgets/configs/custom_llm_provider.py
AgentCrew/modules/gui/widgets/configs/global_settings.py
AgentCrew/modules/gui/widgets/configs/mcp_config.py
AgentCrew/modules/gui/widgets/configs/save_worker.py
AgentCrew/modules/image_generation/__init__.py
AgentCrew/modules/image_generation/service.py
AgentCrew/modules/image_generation/tool.py
AgentCrew/modules/llm/__init__.py
AgentCrew/modules/llm/base.py
AgentCrew/modules/llm/constants.py
AgentCrew/modules/llm/model_registry.py
AgentCrew/modules/llm/service_manager.py
AgentCrew/modules/llm/types.py
AgentCrew/modules/mcpclient/__init__.py
AgentCrew/modules/mcpclient/auth.py
AgentCrew/modules/mcpclient/config.py
AgentCrew/modules/mcpclient/manager.py
AgentCrew/modules/mcpclient/service.py
AgentCrew/modules/mcpclient/tool.py
AgentCrew/modules/memory/__init__.py
AgentCrew/modules/memory/base_service.py
AgentCrew/modules/memory/chroma_service.py
AgentCrew/modules/memory/context_persistent.py
AgentCrew/modules/memory/github_copilot_ef.py
AgentCrew/modules/memory/google_genai_ef.py
AgentCrew/modules/memory/tool.py
AgentCrew/modules/memory/voyageai_ef.py
AgentCrew/modules/openai/__init__.py
AgentCrew/modules/openai/response_service.py
AgentCrew/modules/openai/service.py
AgentCrew/modules/prompts/__init__.py
AgentCrew/modules/prompts/constants.py
AgentCrew/modules/tools/README.md
AgentCrew/modules/tools/registration.py
AgentCrew/modules/tools/registry.py
AgentCrew/modules/voice/__init__.py
AgentCrew/modules/voice/audio_handler.py
AgentCrew/modules/voice/base.py
AgentCrew/modules/voice/deepinfra_service.py
AgentCrew/modules/voice/elevenlabs_service.py
AgentCrew/modules/voice/text_cleaner.py
AgentCrew/modules/web_search/__init__.py
AgentCrew/modules/web_search/service.py
AgentCrew/modules/web_search/tool.py
agentcrew_ai.egg-info/PKG-INFO
agentcrew_ai.egg-info/SOURCES.txt
agentcrew_ai.egg-info/dependency_links.txt
agentcrew_ai.egg-info/entry_points.txt
agentcrew_ai.egg-info/requires.txt
agentcrew_ai.egg-info/top_level.txt