LICENSE
README.md
pyproject.toml
setup.py
autobyteus/__init__.py
autobyteus/check_requirements.py
autobyteus.egg-info/PKG-INFO
autobyteus.egg-info/SOURCES.txt
autobyteus.egg-info/dependency_links.txt
autobyteus.egg-info/requires.txt
autobyteus.egg-info/top_level.txt
autobyteus/agent/__init__.py
autobyteus/agent/agent.py
autobyteus/agent/exceptions.py
autobyteus/agent/remote_agent.py
autobyteus/agent/tool_invocation.py
autobyteus/agent/bootstrap_steps/__init__.py
autobyteus/agent/bootstrap_steps/agent_bootstrapper.py
autobyteus/agent/bootstrap_steps/agent_runtime_queue_initialization_step.py
autobyteus/agent/bootstrap_steps/base_bootstrap_step.py
autobyteus/agent/bootstrap_steps/mcp_server_prewarming_step.py
autobyteus/agent/bootstrap_steps/system_prompt_processing_step.py
autobyteus/agent/bootstrap_steps/workspace_context_initialization_step.py
autobyteus/agent/context/__init__.py
autobyteus/agent/context/agent_config.py
autobyteus/agent/context/agent_context.py
autobyteus/agent/context/agent_runtime_state.py
autobyteus/agent/events/__init__.py
autobyteus/agent/events/agent_events.py
autobyteus/agent/events/agent_input_event_queue_manager.py
autobyteus/agent/events/notifiers.py
autobyteus/agent/events/worker_event_dispatcher.py
autobyteus/agent/factory/__init__.py
autobyteus/agent/factory/agent_factory.py
autobyteus/agent/handlers/__init__.py
autobyteus/agent/handlers/approved_tool_invocation_event_handler.py
autobyteus/agent/handlers/base_event_handler.py
autobyteus/agent/handlers/event_handler_registry.py
autobyteus/agent/handlers/generic_event_handler.py
autobyteus/agent/handlers/inter_agent_message_event_handler.py
autobyteus/agent/handlers/lifecycle_event_logger.py
autobyteus/agent/handlers/llm_complete_response_received_event_handler.py
autobyteus/agent/handlers/llm_user_message_ready_event_handler.py
autobyteus/agent/handlers/tool_execution_approval_event_handler.py
autobyteus/agent/handlers/tool_invocation_request_event_handler.py
autobyteus/agent/handlers/tool_result_event_handler.py
autobyteus/agent/handlers/user_input_message_event_handler.py
autobyteus/agent/hooks/__init__.py
autobyteus/agent/hooks/base_phase_hook.py
autobyteus/agent/hooks/hook_definition.py
autobyteus/agent/hooks/hook_meta.py
autobyteus/agent/hooks/hook_registry.py
autobyteus/agent/input_processor/__init__.py
autobyteus/agent/input_processor/base_user_input_processor.py
autobyteus/agent/input_processor/processor_definition.py
autobyteus/agent/input_processor/processor_meta.py
autobyteus/agent/input_processor/processor_registry.py
autobyteus/agent/llm_response_processor/__init__.py
autobyteus/agent/llm_response_processor/base_processor.py
autobyteus/agent/llm_response_processor/processor_definition.py
autobyteus/agent/llm_response_processor/processor_meta.py
autobyteus/agent/llm_response_processor/processor_registry.py
autobyteus/agent/llm_response_processor/provider_aware_tool_usage_processor.py
autobyteus/agent/message/__init__.py
autobyteus/agent/message/agent_input_user_message.py
autobyteus/agent/message/context_file.py
autobyteus/agent/message/context_file_type.py
autobyteus/agent/message/inter_agent_message.py
autobyteus/agent/message/inter_agent_message_type.py
autobyteus/agent/message/send_message_to.py
autobyteus/agent/phases/__init__.py
autobyteus/agent/phases/discover.py
autobyteus/agent/phases/manager.py
autobyteus/agent/phases/phase_enum.py
autobyteus/agent/phases/transition_decorator.py
autobyteus/agent/phases/transition_info.py
autobyteus/agent/runtime/__init__.py
autobyteus/agent/runtime/agent_runtime.py
autobyteus/agent/runtime/agent_thread_pool_manager.py
autobyteus/agent/runtime/agent_worker.py
autobyteus/agent/shutdown_steps/__init__.py
autobyteus/agent/shutdown_steps/agent_shutdown_orchestrator.py
autobyteus/agent/shutdown_steps/base_shutdown_step.py
autobyteus/agent/shutdown_steps/llm_instance_cleanup_step.py
autobyteus/agent/shutdown_steps/mcp_server_cleanup_step.py
autobyteus/agent/streaming/__init__.py
autobyteus/agent/streaming/agent_event_stream.py
autobyteus/agent/streaming/queue_streamer.py
autobyteus/agent/streaming/stream_event_payloads.py
autobyteus/agent/streaming/stream_events.py
autobyteus/agent/system_prompt_processor/__init__.py
autobyteus/agent/system_prompt_processor/base_processor.py
autobyteus/agent/system_prompt_processor/processor_definition.py
autobyteus/agent/system_prompt_processor/processor_meta.py
autobyteus/agent/system_prompt_processor/processor_registry.py
autobyteus/agent/system_prompt_processor/tool_manifest_injector_processor.py
autobyteus/agent/tool_execution_result_processor/__init__.py
autobyteus/agent/tool_execution_result_processor/base_processor.py
autobyteus/agent/tool_execution_result_processor/processor_definition.py
autobyteus/agent/tool_execution_result_processor/processor_meta.py
autobyteus/agent/tool_execution_result_processor/processor_registry.py
autobyteus/agent/utils/__init__.py
autobyteus/agent/utils/wait_for_idle.py
autobyteus/agent/workspace/__init__.py
autobyteus/agent/workspace/base_workspace.py
autobyteus/agent/workspace/workspace_config.py
autobyteus/agent/workspace/workspace_definition.py
autobyteus/agent/workspace/workspace_meta.py
autobyteus/agent/workspace/workspace_registry.py
autobyteus/cli/__init__.py
autobyteus/cli/agent_cli.py
autobyteus/cli/cli_display.py
autobyteus/cli/workflow_tui/__init__.py
autobyteus/cli/workflow_tui/app.py
autobyteus/cli/workflow_tui/state.py
autobyteus/cli/workflow_tui/widgets/__init__.py
autobyteus/cli/workflow_tui/widgets/agent_list_sidebar.py
autobyteus/cli/workflow_tui/widgets/focus_pane.py
autobyteus/cli/workflow_tui/widgets/logo.py
autobyteus/cli/workflow_tui/widgets/renderables.py
autobyteus/cli/workflow_tui/widgets/shared.py
autobyteus/cli/workflow_tui/widgets/status_bar.py
autobyteus/events/__init__.py
autobyteus/events/event_emitter.py
autobyteus/events/event_manager.py
autobyteus/events/event_types.py
autobyteus/llm/__init__.py
autobyteus/llm/autobyteus_provider.py
autobyteus/llm/base_llm.py
autobyteus/llm/llm_factory.py
autobyteus/llm/lmstudio_provider.py
autobyteus/llm/models.py
autobyteus/llm/ollama_provider.py
autobyteus/llm/ollama_provider_resolver.py
autobyteus/llm/providers.py
autobyteus/llm/user_message.py
autobyteus/llm/api/__init__.py
autobyteus/llm/api/autobyteus_llm.py
autobyteus/llm/api/bedrock_llm.py
autobyteus/llm/api/claude_llm.py
autobyteus/llm/api/deepseek_llm.py
autobyteus/llm/api/gemini_llm.py
autobyteus/llm/api/grok_llm.py
autobyteus/llm/api/groq_llm.py
autobyteus/llm/api/kimi_llm.py
autobyteus/llm/api/lmstudio_llm.py
autobyteus/llm/api/mistral_llm.py
autobyteus/llm/api/nvidia_llm.py
autobyteus/llm/api/ollama_llm.py
autobyteus/llm/api/openai_compatible_llm.py
autobyteus/llm/api/openai_llm.py
autobyteus/llm/extensions/__init__.py
autobyteus/llm/extensions/base_extension.py
autobyteus/llm/extensions/extension_registry.py
autobyteus/llm/extensions/token_usage_tracking_extension.py
autobyteus/llm/token_counter/__init__.py
autobyteus/llm/token_counter/base_token_counter.py
autobyteus/llm/token_counter/claude_token_counter.py
autobyteus/llm/token_counter/deepseek_token_counter.py
autobyteus/llm/token_counter/kimi_token_counter.py
autobyteus/llm/token_counter/mistral_token_counter.py
autobyteus/llm/token_counter/openai_token_counter.py
autobyteus/llm/token_counter/token_counter_factory.py
autobyteus/llm/utils/__init__.py
autobyteus/llm/utils/image_payload_formatter.py
autobyteus/llm/utils/llm_config.py
autobyteus/llm/utils/messages.py
autobyteus/llm/utils/rate_limiter.py
autobyteus/llm/utils/response_types.py
autobyteus/llm/utils/token_pricing_config.py
autobyteus/llm/utils/token_usage.py
autobyteus/llm/utils/token_usage_tracker.py
autobyteus/person/__init__.py
autobyteus/person/person.py
autobyteus/person/role.py
autobyteus/person/examples/__init__.py
autobyteus/person/examples/sample_persons.py
autobyteus/person/examples/sample_roles.py
autobyteus/prompt/__init__.py
autobyteus/prompt/prompt_builder.py
autobyteus/prompt/prompt_template.py
autobyteus/rpc/__init__.py
autobyteus/rpc/hosting.py
autobyteus/rpc/protocol.py
autobyteus/rpc/server_main.py
autobyteus/rpc/transport_type.py
autobyteus/rpc/client/__init__.py
autobyteus/rpc/client/abstract_client_connection.py
autobyteus/rpc/client/client_connection_manager.py
autobyteus/rpc/client/sse_client_connection.py
autobyteus/rpc/client/stdio_client_connection.py
autobyteus/rpc/config/__init__.py
autobyteus/rpc/config/agent_server_config.py
autobyteus/rpc/config/agent_server_registry.py
autobyteus/rpc/server/__init__.py
autobyteus/rpc/server/agent_server_endpoint.py
autobyteus/rpc/server/base_method_handler.py
autobyteus/rpc/server/method_handlers.py
autobyteus/rpc/server/sse_server_handler.py
autobyteus/rpc/server/stdio_server_handler.py
autobyteus/tools/__init__.py
autobyteus/tools/ask_user_input.py
autobyteus/tools/base_tool.py
autobyteus/tools/functional_tool.py
autobyteus/tools/image_downloader.py
autobyteus/tools/parameter_schema.py
autobyteus/tools/pdf_downloader.py
autobyteus/tools/timer.py
autobyteus/tools/tool_category.py
autobyteus/tools/tool_config.py
autobyteus/tools/tool_meta.py
autobyteus/tools/tool_origin.py
autobyteus/tools/tool_state.py
autobyteus/tools/utils.py
autobyteus/tools/bash/__init__.py
autobyteus/tools/bash/bash_executor.py
autobyteus/tools/browser/__init__.py
autobyteus/tools/browser/session_aware/__init__.py
autobyteus/tools/browser/session_aware/browser_session_aware_navigate_to.py
autobyteus/tools/browser/session_aware/browser_session_aware_tool.py
autobyteus/tools/browser/session_aware/browser_session_aware_web_element_trigger.py
autobyteus/tools/browser/session_aware/browser_session_aware_webpage_reader.py
autobyteus/tools/browser/session_aware/browser_session_aware_webpage_screenshot_taker.py
autobyteus/tools/browser/session_aware/shared_browser_session.py
autobyteus/tools/browser/session_aware/shared_browser_session_manager.py
autobyteus/tools/browser/session_aware/web_element_action.py
autobyteus/tools/browser/session_aware/factory/__init__.py
autobyteus/tools/browser/session_aware/factory/browser_session_aware_web_element_trigger_factory.py
autobyteus/tools/browser/session_aware/factory/browser_session_aware_webpage_reader_factory.py
autobyteus/tools/browser/session_aware/factory/browser_session_aware_webpage_screenshot_taker_factory.py
autobyteus/tools/browser/standalone/__init__.py
autobyteus/tools/browser/standalone/google_search_ui.py
autobyteus/tools/browser/standalone/navigate_to.py
autobyteus/tools/browser/standalone/web_page_pdf_generator.py
autobyteus/tools/browser/standalone/webpage_image_downloader.py
autobyteus/tools/browser/standalone/webpage_reader.py
autobyteus/tools/browser/standalone/webpage_screenshot_taker.py
autobyteus/tools/browser/standalone/factory/__init__.py
autobyteus/tools/browser/standalone/factory/google_search_factory.py
autobyteus/tools/browser/standalone/factory/webpage_reader_factory.py
autobyteus/tools/browser/standalone/factory/webpage_screenshot_taker_factory.py
autobyteus/tools/factory/__init__.py
autobyteus/tools/factory/tool_factory.py
autobyteus/tools/file/__init__.py
autobyteus/tools/file/file_reader.py
autobyteus/tools/file/file_writer.py
autobyteus/tools/handlers/__init__.py
autobyteus/tools/handlers/shell_handler.py
autobyteus/tools/mcp/__init__.py
autobyteus/tools/mcp/config_service.py
autobyteus/tools/mcp/factory.py
autobyteus/tools/mcp/schema_mapper.py
autobyteus/tools/mcp/server_instance_manager.py
autobyteus/tools/mcp/tool.py
autobyteus/tools/mcp/tool_registrar.py
autobyteus/tools/mcp/types.py
autobyteus/tools/mcp/call_handlers/__init__.py
autobyteus/tools/mcp/call_handlers/base_handler.py
autobyteus/tools/mcp/call_handlers/stdio_handler.py
autobyteus/tools/mcp/call_handlers/streamable_http_handler.py
autobyteus/tools/mcp/server/__init__.py
autobyteus/tools/mcp/server/base_managed_mcp_server.py
autobyteus/tools/mcp/server/http_managed_mcp_server.py
autobyteus/tools/mcp/server/proxy.py
autobyteus/tools/mcp/server/stdio_managed_mcp_server.py
autobyteus/tools/operation/__init__.py
autobyteus/tools/operation/file_operation.py
autobyteus/tools/operation/file_rename_operation.py
autobyteus/tools/operation/operation.py
autobyteus/tools/operation/shell_operation.py
autobyteus/tools/registry/__init__.py
autobyteus/tools/registry/tool_definition.py
autobyteus/tools/registry/tool_registry.py
autobyteus/tools/usage/__init__.py
autobyteus/tools/usage/formatters/__init__.py
autobyteus/tools/usage/formatters/anthropic_json_example_formatter.py
autobyteus/tools/usage/formatters/anthropic_json_schema_formatter.py
autobyteus/tools/usage/formatters/base_formatter.py
autobyteus/tools/usage/formatters/default_json_example_formatter.py
autobyteus/tools/usage/formatters/default_json_schema_formatter.py
autobyteus/tools/usage/formatters/default_xml_example_formatter.py
autobyteus/tools/usage/formatters/default_xml_schema_formatter.py
autobyteus/tools/usage/formatters/gemini_json_example_formatter.py
autobyteus/tools/usage/formatters/gemini_json_schema_formatter.py
autobyteus/tools/usage/formatters/google_json_example_formatter.py
autobyteus/tools/usage/formatters/google_json_schema_formatter.py
autobyteus/tools/usage/formatters/openai_json_example_formatter.py
autobyteus/tools/usage/formatters/openai_json_schema_formatter.py
autobyteus/tools/usage/parsers/__init__.py
autobyteus/tools/usage/parsers/_json_extractor.py
autobyteus/tools/usage/parsers/anthropic_xml_tool_usage_parser.py
autobyteus/tools/usage/parsers/base_parser.py
autobyteus/tools/usage/parsers/default_json_tool_usage_parser.py
autobyteus/tools/usage/parsers/default_xml_tool_usage_parser.py
autobyteus/tools/usage/parsers/exceptions.py
autobyteus/tools/usage/parsers/gemini_json_tool_usage_parser.py
autobyteus/tools/usage/parsers/openai_json_tool_usage_parser.py
autobyteus/tools/usage/parsers/provider_aware_tool_usage_parser.py
autobyteus/tools/usage/providers/__init__.py
autobyteus/tools/usage/providers/json_example_provider.py
autobyteus/tools/usage/providers/json_schema_provider.py
autobyteus/tools/usage/providers/json_tool_usage_parser_provider.py
autobyteus/tools/usage/providers/tool_manifest_provider.py
autobyteus/tools/usage/providers/xml_example_provider.py
autobyteus/tools/usage/providers/xml_schema_provider.py
autobyteus/tools/usage/providers/xml_tool_usage_parser_provider.py
autobyteus/tools/usage/registries/__init__.py
autobyteus/tools/usage/registries/json_example_formatter_registry.py
autobyteus/tools/usage/registries/json_schema_formatter_registry.py
autobyteus/tools/usage/registries/json_tool_usage_parser_registry.py
autobyteus/tools/usage/registries/xml_example_formatter_registry.py
autobyteus/tools/usage/registries/xml_schema_formatter_registry.py
autobyteus/tools/usage/registries/xml_tool_usage_parser_registry.py
autobyteus/utils/__init__.py
autobyteus/utils/dynamic_enum.py
autobyteus/utils/file_utils.py
autobyteus/utils/html_cleaner.py
autobyteus/utils/singleton.py
autobyteus/workflow/__init__.py
autobyteus/workflow/agentic_workflow.py
autobyteus/workflow/base_agentic_workflow.py
autobyteus/workflow/exceptions.py
autobyteus/workflow/workflow_builder.py
autobyteus/workflow/bootstrap_steps/__init__.py
autobyteus/workflow/bootstrap_steps/agent_tool_injection_step.py
autobyteus/workflow/bootstrap_steps/base_workflow_bootstrap_step.py
autobyteus/workflow/bootstrap_steps/coordinator_initialization_step.py
autobyteus/workflow/bootstrap_steps/coordinator_prompt_preparation_step.py
autobyteus/workflow/bootstrap_steps/workflow_bootstrapper.py
autobyteus/workflow/bootstrap_steps/workflow_runtime_queue_initialization_step.py
autobyteus/workflow/context/__init__.py
autobyteus/workflow/context/team_manager.py
autobyteus/workflow/context/workflow_config.py
autobyteus/workflow/context/workflow_context.py
autobyteus/workflow/context/workflow_node_config.py
autobyteus/workflow/context/workflow_runtime_state.py
autobyteus/workflow/events/__init__.py
autobyteus/workflow/events/workflow_event_dispatcher.py
autobyteus/workflow/events/workflow_events.py
autobyteus/workflow/events/workflow_input_event_queue_manager.py
autobyteus/workflow/factory/__init__.py
autobyteus/workflow/factory/workflow_factory.py
autobyteus/workflow/handlers/__init__.py
autobyteus/workflow/handlers/base_workflow_event_handler.py
autobyteus/workflow/handlers/inter_agent_message_request_event_handler.py
autobyteus/workflow/handlers/lifecycle_workflow_event_handler.py
autobyteus/workflow/handlers/process_user_message_event_handler.py
autobyteus/workflow/handlers/tool_approval_workflow_event_handler.py
autobyteus/workflow/handlers/workflow_event_handler_registry.py
autobyteus/workflow/phases/__init__.py
autobyteus/workflow/phases/workflow_operational_phase.py
autobyteus/workflow/phases/workflow_phase_manager.py
autobyteus/workflow/runtime/__init__.py
autobyteus/workflow/runtime/workflow_runtime.py
autobyteus/workflow/runtime/workflow_worker.py
autobyteus/workflow/shutdown_steps/__init__.py
autobyteus/workflow/shutdown_steps/agent_team_shutdown_step.py
autobyteus/workflow/shutdown_steps/base_workflow_shutdown_step.py
autobyteus/workflow/shutdown_steps/bridge_cleanup_step.py
autobyteus/workflow/shutdown_steps/sub_workflow_shutdown_step.py
autobyteus/workflow/shutdown_steps/workflow_shutdown_orchestrator.py
autobyteus/workflow/streaming/__init__.py
autobyteus/workflow/streaming/agent_event_bridge.py
autobyteus/workflow/streaming/agent_event_multiplexer.py
autobyteus/workflow/streaming/workflow_event_bridge.py
autobyteus/workflow/streaming/workflow_event_notifier.py
autobyteus/workflow/streaming/workflow_event_stream.py
autobyteus/workflow/streaming/workflow_stream_event_payloads.py
autobyteus/workflow/streaming/workflow_stream_events.py
autobyteus/workflow/utils/__init__.py
autobyteus/workflow/utils/wait_for_idle.py
examples/__init__.py
examples/discover_phase_transitions.py
examples/run_browser_agent.py
examples/run_google_slides_agent.py
examples/run_mcp_browser_client.py
examples/run_mcp_google_slides_client.py
examples/run_mcp_list_tools.py
examples/run_poem_writer.py
examples/run_sqlite_agent.py
examples/workflow/__init__.py
examples/workflow/run_basic_research_workflow.py
examples/workflow/run_code_review_workflow.py
examples/workflow/run_debate_workflow.py
examples/workflow/run_workflow_with_tui.py