CONTRIBUTING.md
LICENSE
MANIFEST.in
README.md
pyproject.toml
AgentCrew/__init__.py
AgentCrew/app.py
AgentCrew/main.py
AgentCrew/main_docker.py
AgentCrew/setup.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/errors.py
AgentCrew/modules/a2a/exceptions.py
AgentCrew/modules/a2a/registry.py
AgentCrew/modules/a2a/server.py
AgentCrew/modules/a2a/task_cancellation.py
AgentCrew/modules/a2a/task_execution.py
AgentCrew/modules/a2a/task_interaction.py
AgentCrew/modules/a2a/task_manager.py
AgentCrew/modules/a2a/task_streaming.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/a2a/task_store/__init__.py
AgentCrew/modules/a2a/task_store/base.py
AgentCrew/modules/a2a/task_store/factory.py
AgentCrew/modules/a2a/task_store/file.py
AgentCrew/modules/a2a/task_store/memory.py
AgentCrew/modules/a2a/task_store/redis.py
AgentCrew/modules/agents/__init__.py
AgentCrew/modules/agents/agent_runner.py
AgentCrew/modules/agents/base.py
AgentCrew/modules/agents/context_manager.py
AgentCrew/modules/agents/example.py
AgentCrew/modules/agents/local_agent.py
AgentCrew/modules/agents/manager.py
AgentCrew/modules/agents/prompt_evolution_service.py
AgentCrew/modules/agents/remote_agent.py
AgentCrew/modules/agents/tool_registrar.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/models.py
AgentCrew/modules/anthropic/service.py
AgentCrew/modules/browser_automation/__init__.py
AgentCrew/modules/browser_automation/chrome_manager.py
AgentCrew/modules/browser_automation/console_listener.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/draw_element_boxes.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/filter_hidden_elements.js
AgentCrew/modules/browser_automation/js/focus_and_clear_element.js
AgentCrew/modules/browser_automation/js/remove_element_boxes.js
AgentCrew/modules/browser_automation/js/scroll_to_element.js
AgentCrew/modules/browser_automation/js/trigger_input_events.js
AgentCrew/modules/chat/__init__.py
AgentCrew/modules/chat/agent_evaluation.py
AgentCrew/modules/chat/consolidation.py
AgentCrew/modules/chat/fork_utils.py
AgentCrew/modules/chat/history.py
AgentCrew/modules/chat/message_handler.py
AgentCrew/modules/chat/stream_session.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/prompt_evolution_coordinator.py
AgentCrew/modules/chat/message/prompt_evolution_session.py
AgentCrew/modules/chat/message/tool_manager.py
AgentCrew/modules/chat/message/commands/__init__.py
AgentCrew/modules/chat/message/commands/agent_commands.py
AgentCrew/modules/chat/message/commands/base.py
AgentCrew/modules/chat/message/commands/conversation_commands.py
AgentCrew/modules/chat/message/commands/file_commands.py
AgentCrew/modules/chat/message/commands/mcp_commands.py
AgentCrew/modules/chat/message/commands/model_commands.py
AgentCrew/modules/chat/message/commands/utility_commands.py
AgentCrew/modules/chat/message/commands/voice_commands.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/file_search_service.py
AgentCrew/modules/code_analysis/file_selector.py
AgentCrew/modules/code_analysis/file_tree_formatter.py
AgentCrew/modules/code_analysis/grep_service.py
AgentCrew/modules/code_analysis/project_notes.py
AgentCrew/modules/code_analysis/result_formatter.py
AgentCrew/modules/code_analysis/service.py
AgentCrew/modules/code_analysis/text_map_formatter.py
AgentCrew/modules/code_analysis/tool.py
AgentCrew/modules/code_analysis/tree_sitter_runtime.py
AgentCrew/modules/code_analysis/parsers/__init__.py
AgentCrew/modules/code_analysis/parsers/base.py
AgentCrew/modules/code_analysis/parsers/cpp_parser.py
AgentCrew/modules/code_analysis/parsers/csharp_parser.py
AgentCrew/modules/code_analysis/parsers/generic_parser.py
AgentCrew/modules/code_analysis/parsers/go_parser.py
AgentCrew/modules/code_analysis/parsers/java_parser.py
AgentCrew/modules/code_analysis/parsers/javascript_parser.py
AgentCrew/modules/code_analysis/parsers/kotlin_parser.py
AgentCrew/modules/code_analysis/parsers/php_parser.py
AgentCrew/modules/code_analysis/parsers/python_parser.py
AgentCrew/modules/code_analysis/parsers/ruby_parser.py
AgentCrew/modules/code_analysis/parsers/rust_parser.py
AgentCrew/modules/command_execution/__init__.py
AgentCrew/modules/command_execution/constants.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/agents_config.py
AgentCrew/modules/config/config_management.py
AgentCrew/modules/config/global_config.py
AgentCrew/modules/config/mcp_config.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/diff_display.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/console/conversation_browser/__init__.py
AgentCrew/modules/console/conversation_browser/browser.py
AgentCrew/modules/console/conversation_browser/browser_input_handler.py
AgentCrew/modules/console/conversation_browser/browser_ui.py
AgentCrew/modules/console/visual_mode/__init__.py
AgentCrew/modules/console/visual_mode/viewer.py
AgentCrew/modules/console/visual_mode/viewer_input_handler.py
AgentCrew/modules/console/visual_mode/viewer_ui.py
AgentCrew/modules/custom_llm/__init__.py
AgentCrew/modules/custom_llm/copilot_response_service.py
AgentCrew/modules/custom_llm/deepinfra_models.py
AgentCrew/modules/custom_llm/deepinfra_service.py
AgentCrew/modules/custom_llm/fireworks_models.py
AgentCrew/modules/custom_llm/fireworks_service.py
AgentCrew/modules/custom_llm/github_copilot_models.py
AgentCrew/modules/custom_llm/github_copilot_service.py
AgentCrew/modules/custom_llm/opencode_models.py
AgentCrew/modules/custom_llm/opencode_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/models.py
AgentCrew/modules/google/native_service.py
AgentCrew/modules/google/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.yaml
AgentCrew/modules/gui/themes/catppuccin.yaml
AgentCrew/modules/gui/themes/dracula.yaml
AgentCrew/modules/gui/themes/nord.yaml
AgentCrew/modules/gui/themes/saigontech.yaml
AgentCrew/modules/gui/themes/style_provider.py
AgentCrew/modules/gui/themes/theme_loader.py
AgentCrew/modules/gui/themes/unicorn.yaml
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/diff_widget.py
AgentCrew/modules/gui/widgets/evolution_loading_dialog.py
AgentCrew/modules/gui/widgets/evolution_review_dialog.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/custom_llm_provider.py
AgentCrew/modules/gui/widgets/configs/global_settings.py
AgentCrew/modules/gui/widgets/configs/save_worker.py
AgentCrew/modules/gui/widgets/configs/agent_config/__init__.py
AgentCrew/modules/gui/widgets/configs/agent_config/agent_config_mapper.py
AgentCrew/modules/gui/widgets/configs/agent_config/agent_list_panel.py
AgentCrew/modules/gui/widgets/configs/agent_config/behavior_editor.py
AgentCrew/modules/gui/widgets/configs/agent_config/import_export_actions.py
AgentCrew/modules/gui/widgets/configs/agent_config/local_agent_editor.py
AgentCrew/modules/gui/widgets/configs/agent_config/remote_agent_editor.py
AgentCrew/modules/gui/widgets/configs/agent_config/tab.py
AgentCrew/modules/gui/widgets/configs/mcp_config/__init__.py
AgentCrew/modules/gui/widgets/configs/mcp_config/dynamic_fields.py
AgentCrew/modules/gui/widgets/configs/mcp_config/mcp_config_mapper.py
AgentCrew/modules/gui/widgets/configs/mcp_config/mcp_form.py
AgentCrew/modules/gui/widgets/configs/mcp_config/mcp_json_sync.py
AgentCrew/modules/gui/widgets/configs/mcp_config/mcp_list_panel.py
AgentCrew/modules/gui/widgets/configs/mcp_config/tab.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/token_usage.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/memory_worker.py
AgentCrew/modules/memory/tool.py
AgentCrew/modules/memory/voyageai_ef.py
AgentCrew/modules/onboarding/__init__.py
AgentCrew/modules/onboarding/service.py
AgentCrew/modules/openai/__init__.py
AgentCrew/modules/openai/models.py
AgentCrew/modules/openai/response_service.py
AgentCrew/modules/openai/service.py
AgentCrew/modules/openai_codex/__init__.py
AgentCrew/modules/openai_codex/models.py
AgentCrew/modules/openai_codex/oauth.py
AgentCrew/modules/openai_codex/service.py
AgentCrew/modules/prompts/__init__.py
AgentCrew/modules/prompts/constants.py
AgentCrew/modules/skills/__init__.py
AgentCrew/modules/skills/service.py
AgentCrew/modules/skills/tool.py
AgentCrew/modules/together/__init__.py
AgentCrew/modules/together/models.py
AgentCrew/modules/together/service.py
AgentCrew/modules/tools/README.md
AgentCrew/modules/tools/parallel_executor.py
AgentCrew/modules/tools/registration.py
AgentCrew/modules/tools/utils.py
AgentCrew/modules/utils/__init__.py
AgentCrew/modules/utils/file_handler.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/voice/tool.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