LICENSE
README.md
pyproject.toml
autobyteus/__init__.py
autobyteus/check_requirements.py
autobyteus/config.toml.template
autobyteus/agent/__init__.py
autobyteus/agent/agent.py
autobyteus/agent/exceptions.py
autobyteus/agent/llm_request_assembler.py
autobyteus/agent/processor_option.py
autobyteus/agent/sender_type.py
autobyteus/agent/token_budget.py
autobyteus/agent/tool_invocation.py
autobyteus/agent/bootstrap_steps/__init__.py
autobyteus/agent/bootstrap_steps/agent_bootstrapper.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/working_context_snapshot_restore_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_context_registry.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/event_store.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/bootstrap_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/input_processor/__init__.py
autobyteus/agent/input_processor/base_user_input_processor.py
autobyteus/agent/input_processor/memory_ingest_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/lifecycle/__init__.py
autobyteus/agent/lifecycle/base_processor.py
autobyteus/agent/lifecycle/events.py
autobyteus/agent/lifecycle/processor_definition.py
autobyteus/agent/lifecycle/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/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/multimodal_message_builder.py
autobyteus/agent/message/send_message_to.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/shutdown_steps/tool_cleanup_step.py
autobyteus/agent/status/__init__.py
autobyteus/agent/status/manager.py
autobyteus/agent/status/status_deriver.py
autobyteus/agent/status/status_enum.py
autobyteus/agent/status/status_update_utils.py
autobyteus/agent/streaming/__init__.py
autobyteus/agent/streaming/agent_event_stream.py
autobyteus/agent/streaming/api_tool_call_streaming_response_handler.py
autobyteus/agent/streaming/parsing_streaming_response_handler.py
autobyteus/agent/streaming/pass_through_streaming_response_handler.py
autobyteus/agent/streaming/queue_streamer.py
autobyteus/agent/streaming/stream_event_payloads.py
autobyteus/agent/streaming/stream_events.py
autobyteus/agent/streaming/streaming_handler_factory.py
autobyteus/agent/streaming/streaming_response_handler.py
autobyteus/agent/streaming/adapters/__init__.py
autobyteus/agent/streaming/adapters/invocation_adapter.py
autobyteus/agent/streaming/adapters/tool_call_parsing.py
autobyteus/agent/streaming/adapters/tool_syntax_registry.py
autobyteus/agent/streaming/api_tool_call/__init__.py
autobyteus/agent/streaming/api_tool_call/file_content_streamer.py
autobyteus/agent/streaming/api_tool_call/json_string_field_extractor.py
autobyteus/agent/streaming/events/__init__.py
autobyteus/agent/streaming/events/stream_event_payloads.py
autobyteus/agent/streaming/events/stream_events.py
autobyteus/agent/streaming/handlers/__init__.py
autobyteus/agent/streaming/handlers/api_tool_call_streaming_response_handler.py
autobyteus/agent/streaming/handlers/parsing_streaming_response_handler.py
autobyteus/agent/streaming/handlers/pass_through_streaming_response_handler.py
autobyteus/agent/streaming/handlers/streaming_handler_factory.py
autobyteus/agent/streaming/handlers/streaming_response_handler.py
autobyteus/agent/streaming/parser/__init__.py
autobyteus/agent/streaming/parser/event_emitter.py
autobyteus/agent/streaming/parser/events.py
autobyteus/agent/streaming/parser/invocation_adapter.py
autobyteus/agent/streaming/parser/parser_context.py
autobyteus/agent/streaming/parser/parser_factory.py
autobyteus/agent/streaming/parser/sentinel_format.py
autobyteus/agent/streaming/parser/state_factory.py
autobyteus/agent/streaming/parser/stream_scanner.py
autobyteus/agent/streaming/parser/streaming_parser.py
autobyteus/agent/streaming/parser/tool_call_parsing.py
autobyteus/agent/streaming/parser/tool_constants.py
autobyteus/agent/streaming/parser/tool_syntax_registry.py
autobyteus/agent/streaming/parser/xml_tool_parsing_state_registry.py
autobyteus/agent/streaming/parser/json_parsing_strategies/__init__.py
autobyteus/agent/streaming/parser/json_parsing_strategies/base.py
autobyteus/agent/streaming/parser/json_parsing_strategies/default.py
autobyteus/agent/streaming/parser/json_parsing_strategies/gemini.py
autobyteus/agent/streaming/parser/json_parsing_strategies/openai.py
autobyteus/agent/streaming/parser/json_parsing_strategies/registry.py
autobyteus/agent/streaming/parser/states/__init__.py
autobyteus/agent/streaming/parser/states/base_state.py
autobyteus/agent/streaming/parser/states/custom_xml_tag_run_bash_parsing_state.py
autobyteus/agent/streaming/parser/states/custom_xml_tag_write_file_parsing_state.py
autobyteus/agent/streaming/parser/states/delimited_content_state.py
autobyteus/agent/streaming/parser/states/json_initialization_state.py
autobyteus/agent/streaming/parser/states/json_tool_parsing_state.py
autobyteus/agent/streaming/parser/states/sentinel_content_state.py
autobyteus/agent/streaming/parser/states/sentinel_initialization_state.py
autobyteus/agent/streaming/parser/states/text_state.py
autobyteus/agent/streaming/parser/states/xml_patch_file_tool_parsing_state.py
autobyteus/agent/streaming/parser/states/xml_run_bash_tool_parsing_state.py
autobyteus/agent/streaming/parser/states/xml_tag_initialization_state.py
autobyteus/agent/streaming/parser/states/xml_tool_parsing_state.py
autobyteus/agent/streaming/parser/states/xml_write_file_tool_parsing_state.py
autobyteus/agent/streaming/parser/strategies/__init__.py
autobyteus/agent/streaming/parser/strategies/base.py
autobyteus/agent/streaming/parser/strategies/json_tool_strategy.py
autobyteus/agent/streaming/parser/strategies/registry.py
autobyteus/agent/streaming/parser/strategies/sentinel_strategy.py
autobyteus/agent/streaming/parser/strategies/xml_tag_strategy.py
autobyteus/agent/streaming/segments/__init__.py
autobyteus/agent/streaming/segments/segment_events.py
autobyteus/agent/streaming/streams/__init__.py
autobyteus/agent/streaming/streams/agent_event_stream.py
autobyteus/agent/streaming/utils/__init__.py
autobyteus/agent/streaming/utils/queue_streamer.py
autobyteus/agent/system_prompt_processor/__init__.py
autobyteus/agent/system_prompt_processor/available_skills_processor.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/memory_ingest_tool_result_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/tool_invocation_preprocessor/__init__.py
autobyteus/agent/tool_invocation_preprocessor/base_preprocessor.py
autobyteus/agent/tool_invocation_preprocessor/processor_definition.py
autobyteus/agent/tool_invocation_preprocessor/processor_meta.py
autobyteus/agent/tool_invocation_preprocessor/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_team/__init__.py
autobyteus/agent_team/agent_team.py
autobyteus/agent_team/agent_team_builder.py
autobyteus/agent_team/base_agent_team.py
autobyteus/agent_team/exceptions.py
autobyteus/agent_team/bootstrap_steps/__init__.py
autobyteus/agent_team/bootstrap_steps/agent_configuration_preparation_step.py
autobyteus/agent_team/bootstrap_steps/agent_team_bootstrapper.py
autobyteus/agent_team/bootstrap_steps/base_agent_team_bootstrap_step.py
autobyteus/agent_team/bootstrap_steps/coordinator_initialization_step.py
autobyteus/agent_team/bootstrap_steps/task_notifier_initialization_step.py
autobyteus/agent_team/bootstrap_steps/team_context_initialization_step.py
autobyteus/agent_team/context/__init__.py
autobyteus/agent_team/context/agent_team_config.py
autobyteus/agent_team/context/agent_team_context.py
autobyteus/agent_team/context/agent_team_runtime_state.py
autobyteus/agent_team/context/team_manager.py
autobyteus/agent_team/context/team_node_config.py
autobyteus/agent_team/events/__init__.py
autobyteus/agent_team/events/agent_team_event_dispatcher.py
autobyteus/agent_team/events/agent_team_events.py
autobyteus/agent_team/events/agent_team_input_event_queue_manager.py
autobyteus/agent_team/events/event_store.py
autobyteus/agent_team/factory/__init__.py
autobyteus/agent_team/factory/agent_team_factory.py
autobyteus/agent_team/handlers/__init__.py
autobyteus/agent_team/handlers/agent_team_event_handler_registry.py
autobyteus/agent_team/handlers/base_agent_team_event_handler.py
autobyteus/agent_team/handlers/inter_agent_message_request_event_handler.py
autobyteus/agent_team/handlers/lifecycle_agent_team_event_handler.py
autobyteus/agent_team/handlers/process_user_message_event_handler.py
autobyteus/agent_team/handlers/tool_approval_team_event_handler.py
autobyteus/agent_team/runtime/__init__.py
autobyteus/agent_team/runtime/agent_team_runtime.py
autobyteus/agent_team/runtime/agent_team_worker.py
autobyteus/agent_team/shutdown_steps/__init__.py
autobyteus/agent_team/shutdown_steps/agent_team_shutdown_orchestrator.py
autobyteus/agent_team/shutdown_steps/agent_team_shutdown_step.py
autobyteus/agent_team/shutdown_steps/base_agent_team_shutdown_step.py
autobyteus/agent_team/shutdown_steps/bridge_cleanup_step.py
autobyteus/agent_team/shutdown_steps/sub_team_shutdown_step.py
autobyteus/agent_team/status/__init__.py
autobyteus/agent_team/status/agent_team_status.py
autobyteus/agent_team/status/agent_team_status_manager.py
autobyteus/agent_team/status/status_deriver.py
autobyteus/agent_team/status/status_update_utils.py
autobyteus/agent_team/streaming/__init__.py
autobyteus/agent_team/streaming/agent_event_bridge.py
autobyteus/agent_team/streaming/agent_event_multiplexer.py
autobyteus/agent_team/streaming/agent_team_event_notifier.py
autobyteus/agent_team/streaming/agent_team_event_stream.py
autobyteus/agent_team/streaming/agent_team_stream_event_payloads.py
autobyteus/agent_team/streaming/agent_team_stream_events.py
autobyteus/agent_team/streaming/team_event_bridge.py
autobyteus/agent_team/system_prompt_processor/__init__.py
autobyteus/agent_team/system_prompt_processor/team_manifest_injector_processor.py
autobyteus/agent_team/task_notification/__init__.py
autobyteus/agent_team/task_notification/activation_policy.py
autobyteus/agent_team/task_notification/system_event_driven_agent_task_notifier.py
autobyteus/agent_team/task_notification/task_activator.py
autobyteus/agent_team/task_notification/task_notification_mode.py
autobyteus/agent_team/utils/__init__.py
autobyteus/agent_team/utils/wait_for_idle.py
autobyteus/cli/__init__.py
autobyteus/cli/agent_cli.py
autobyteus/cli/cli_display.py
autobyteus/cli/agent_team_tui/__init__.py
autobyteus/cli/agent_team_tui/app.css
autobyteus/cli/agent_team_tui/app.py
autobyteus/cli/agent_team_tui/state.py
autobyteus/cli/agent_team_tui/widgets/__init__.py
autobyteus/cli/agent_team_tui/widgets/agent_list_sidebar.py
autobyteus/cli/agent_team_tui/widgets/focus_pane.py
autobyteus/cli/agent_team_tui/widgets/logo.py
autobyteus/cli/agent_team_tui/widgets/renderables.py
autobyteus/cli/agent_team_tui/widgets/shared.py
autobyteus/cli/agent_team_tui/widgets/status_bar.py
autobyteus/cli/agent_team_tui/widgets/task_plan_panel.py
autobyteus/cli/workflow_tui/__init__.py
autobyteus/cli/workflow_tui/app.css
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/clients/__init__.py
autobyteus/clients/autobyteus_client.py
autobyteus/clients/cert_utils.py
autobyteus/clients/certificates/cert.pem
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/runtimes.py
autobyteus/llm/user_message.py
autobyteus/llm/api/__init__.py
autobyteus/llm/api/autobyteus_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/kimi_llm.py
autobyteus/llm/api/lmstudio_llm.py
autobyteus/llm/api/minimax_llm.py
autobyteus/llm/api/mistral_llm.py
autobyteus/llm/api/ollama_llm.py
autobyteus/llm/api/openai_compatible_llm.py
autobyteus/llm/api/openai_llm.py
autobyteus/llm/api/openai_responses_llm.py
autobyteus/llm/api/qwen_llm.py
autobyteus/llm/api/zhipu_llm.py
autobyteus/llm/converters/__init__.py
autobyteus/llm/converters/anthropic_tool_call_converter.py
autobyteus/llm/converters/gemini_tool_call_converter.py
autobyteus/llm/converters/mistral_tool_call_converter.py
autobyteus/llm/converters/openai_tool_call_converter.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/prompt_renderers/__init__.py
autobyteus/llm/prompt_renderers/anthropic_prompt_renderer.py
autobyteus/llm/prompt_renderers/autobyteus_prompt_renderer.py
autobyteus/llm/prompt_renderers/base_prompt_renderer.py
autobyteus/llm/prompt_renderers/gemini_prompt_renderer.py
autobyteus/llm/prompt_renderers/mistral_prompt_renderer.py
autobyteus/llm/prompt_renderers/ollama_prompt_renderer.py
autobyteus/llm/prompt_renderers/openai_chat_renderer.py
autobyteus/llm/prompt_renderers/openai_responses_renderer.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/token_counter/zhipu_token_counter.py
autobyteus/llm/utils/__init__.py
autobyteus/llm/utils/llm_config.py
autobyteus/llm/utils/media_payload_formatter.py
autobyteus/llm/utils/messages.py
autobyteus/llm/utils/rate_limiter.py
autobyteus/llm/utils/response_types.py
autobyteus/llm/utils/token_usage.py
autobyteus/llm/utils/token_usage_tracker.py
autobyteus/llm/utils/tool_call_delta.py
autobyteus/memory/__init__.py
autobyteus/memory/compaction_snapshot_builder.py
autobyteus/memory/memory_manager.py
autobyteus/memory/path_resolver.py
autobyteus/memory/tool_interaction_builder.py
autobyteus/memory/turn_tracker.py
autobyteus/memory/working_context_snapshot.py
autobyteus/memory/working_context_snapshot_serializer.py
autobyteus/memory/compaction/__init__.py
autobyteus/memory/compaction/compaction_result.py
autobyteus/memory/compaction/compactor.py
autobyteus/memory/compaction/summarizer.py
autobyteus/memory/models/__init__.py
autobyteus/memory/models/episodic_item.py
autobyteus/memory/models/memory_types.py
autobyteus/memory/models/raw_trace_item.py
autobyteus/memory/models/semantic_item.py
autobyteus/memory/models/tool_interaction.py
autobyteus/memory/policies/__init__.py
autobyteus/memory/policies/compaction_policy.py
autobyteus/memory/restore/__init__.py
autobyteus/memory/restore/working_context_snapshot_bootstrapper.py
autobyteus/memory/retrieval/__init__.py
autobyteus/memory/retrieval/memory_bundle.py
autobyteus/memory/retrieval/retriever.py
autobyteus/memory/store/__init__.py
autobyteus/memory/store/base_store.py
autobyteus/memory/store/file_store.py
autobyteus/memory/store/working_context_snapshot_store.py
autobyteus/multimedia/__init__.py
autobyteus/multimedia/providers.py
autobyteus/multimedia/runtimes.py
autobyteus/multimedia/audio/__init__.py
autobyteus/multimedia/audio/audio_client_factory.py
autobyteus/multimedia/audio/audio_model.py
autobyteus/multimedia/audio/autobyteus_audio_provider.py
autobyteus/multimedia/audio/base_audio_client.py
autobyteus/multimedia/audio/api/__init__.py
autobyteus/multimedia/audio/api/autobyteus_audio_client.py
autobyteus/multimedia/audio/api/gemini_audio_client.py
autobyteus/multimedia/audio/api/openai_audio_client.py
autobyteus/multimedia/image/__init__.py
autobyteus/multimedia/image/autobyteus_image_provider.py
autobyteus/multimedia/image/base_image_client.py
autobyteus/multimedia/image/image_client_factory.py
autobyteus/multimedia/image/image_model.py
autobyteus/multimedia/image/api/__init__.py
autobyteus/multimedia/image/api/autobyteus_image_client.py
autobyteus/multimedia/image/api/gemini_image_client.py
autobyteus/multimedia/image/api/openai_image_client.py
autobyteus/multimedia/utils/__init__.py
autobyteus/multimedia/utils/api_utils.py
autobyteus/multimedia/utils/multimedia_config.py
autobyteus/multimedia/utils/response_types.py
autobyteus/prompt/__init__.py
autobyteus/prompt/prompt_builder.py
autobyteus/prompt/prompt_template.py
autobyteus/skills/__init__.py
autobyteus/skills/loader.py
autobyteus/skills/model.py
autobyteus/skills/registry.py
autobyteus/task_management/__init__.py
autobyteus/task_management/base_task_plan.py
autobyteus/task_management/deliverable.py
autobyteus/task_management/events.py
autobyteus/task_management/in_memory_task_plan.py
autobyteus/task_management/task.py
autobyteus/task_management/todo.py
autobyteus/task_management/todo_list.py
autobyteus/task_management/converters/__init__.py
autobyteus/task_management/converters/task_plan_converter.py
autobyteus/task_management/deliverables/__init__.py
autobyteus/task_management/deliverables/file_deliverable.py
autobyteus/task_management/schemas/__init__.py
autobyteus/task_management/schemas/deliverable_schema.py
autobyteus/task_management/schemas/task_definition.py
autobyteus/task_management/schemas/task_status_report.py
autobyteus/task_management/schemas/todo_definition.py
autobyteus/task_management/tools/__init__.py
autobyteus/task_management/tools/task_tools/__init__.py
autobyteus/task_management/tools/task_tools/assign_task_to.py
autobyteus/task_management/tools/task_tools/create_task.py
autobyteus/task_management/tools/task_tools/create_tasks.py
autobyteus/task_management/tools/task_tools/get_my_tasks.py
autobyteus/task_management/tools/task_tools/get_task_plan_status.py
autobyteus/task_management/tools/task_tools/update_task_status.py
autobyteus/task_management/tools/todo_tools/__init__.py
autobyteus/task_management/tools/todo_tools/add_todo.py
autobyteus/task_management/tools/todo_tools/create_todo_list.py
autobyteus/task_management/tools/todo_tools/get_todo_list.py
autobyteus/task_management/tools/todo_tools/update_todo_status.py
autobyteus/tools/__init__.py
autobyteus/tools/base_tool.py
autobyteus/tools/functional_tool.py
autobyteus/tools/pydantic_schema_converter.py
autobyteus/tools/search_tool.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/factory/__init__.py
autobyteus/tools/factory/tool_factory.py
autobyteus/tools/file/__init__.py
autobyteus/tools/file/patch_file.py
autobyteus/tools/file/read_file.py
autobyteus/tools/file/write_file.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/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/mcp/server/websocket_managed_mcp_server.py
autobyteus/tools/multimedia/__init__.py
autobyteus/tools/multimedia/audio_tools.py
autobyteus/tools/multimedia/download_media_tool.py
autobyteus/tools/multimedia/image_tools.py
autobyteus/tools/multimedia/media_reader_tool.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/operation_executor/journal_manager.py
autobyteus/tools/operation_executor/operation_event_buffer.py
autobyteus/tools/operation_executor/operation_event_producer.py
autobyteus/tools/operation_executor/operation_executor.py
autobyteus/tools/registry/__init__.py
autobyteus/tools/registry/tool_definition.py
autobyteus/tools/registry/tool_registry.py
autobyteus/tools/search/__init__.py
autobyteus/tools/search/base_strategy.py
autobyteus/tools/search/client.py
autobyteus/tools/search/factory.py
autobyteus/tools/search/google_cse_strategy.py
autobyteus/tools/search/providers.py
autobyteus/tools/search/serpapi_strategy.py
autobyteus/tools/search/serper_strategy.py
autobyteus/tools/skill/__init__.py
autobyteus/tools/skill/load_skill.py
autobyteus/tools/terminal/__init__.py
autobyteus/tools/terminal/ansi_utils.py
autobyteus/tools/terminal/background_process_manager.py
autobyteus/tools/terminal/output_buffer.py
autobyteus/tools/terminal/prompt_detector.py
autobyteus/tools/terminal/pty_session.py
autobyteus/tools/terminal/session_factory.py
autobyteus/tools/terminal/terminal_session_manager.py
autobyteus/tools/terminal/types.py
autobyteus/tools/terminal/wsl_tmux_session.py
autobyteus/tools/terminal/wsl_utils.py
autobyteus/tools/terminal/tools/__init__.py
autobyteus/tools/terminal/tools/get_process_output.py
autobyteus/tools/terminal/tools/run_bash.py
autobyteus/tools/terminal/tools/start_background_process.py
autobyteus/tools/terminal/tools/stop_background_process.py
autobyteus/tools/transaction_management/backup_handler.py
autobyteus/tools/transaction_management/operation_lifecycle_manager.py
autobyteus/tools/usage/__init__.py
autobyteus/tools/usage/tool_schema_provider.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/mistral_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/formatters/patch_file_xml_example_formatter.py
autobyteus/tools/usage/formatters/patch_file_xml_schema_formatter.py
autobyteus/tools/usage/formatters/run_bash_xml_example_formatter.py
autobyteus/tools/usage/formatters/run_bash_xml_schema_formatter.py
autobyteus/tools/usage/formatters/write_file_xml_example_formatter.py
autobyteus/tools/usage/formatters/write_file_xml_schema_formatter.py
autobyteus/tools/usage/providers/__init__.py
autobyteus/tools/usage/providers/tool_manifest_provider.py
autobyteus/tools/usage/registries/__init__.py
autobyteus/tools/usage/registries/tool_formatter_pair.py
autobyteus/tools/usage/registries/tool_formatting_registry.py
autobyteus/tools/web/__init__.py
autobyteus/tools/web/read_url_tool.py
autobyteus/utils/__init__.py
autobyteus/utils/diff_utils.py
autobyteus/utils/download_utils.py
autobyteus/utils/dynamic_enum.py
autobyteus/utils/file_utils.py
autobyteus/utils/gemini_helper.py
autobyteus/utils/gemini_model_mapping.py
autobyteus/utils/html_cleaner.py
autobyteus/utils/llm_output_formatter.py
autobyteus/utils/parameter_schema.py
autobyteus/utils/singleton.py
autobyteus/utils/tool_call_format.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/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/status/__init__.py
autobyteus/workflow/status/workflow_status.py
autobyteus/workflow/status/workflow_status_manager.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