LICENSE
MANIFEST.in
README.md
agents.yaml.example
config.yaml.example
pyproject.toml
./sgr_agent_core/__init__.py
./sgr_agent_core/agent_config.py
./sgr_agent_core/agent_definition.py
./sgr_agent_core/agent_factory.py
./sgr_agent_core/base_agent.py
./sgr_agent_core/base_tool.py
./sgr_agent_core/models.py
./sgr_agent_core/next_step_tool.py
./sgr_agent_core/stream.py
./sgr_agent_core/utils.py
./sgr_agent_core/agents/__init__.py
./sgr_agent_core/agents/dialog_agent.py
./sgr_agent_core/agents/iron_agent.py
./sgr_agent_core/agents/sgr_agent.py
./sgr_agent_core/agents/sgr_tool_calling_agent.py
./sgr_agent_core/agents/tool_calling_agent.py
./sgr_agent_core/cli/__init__.py
./sgr_agent_core/cli/__main__.py
./sgr_agent_core/cli/sgrsh.py
./sgr_agent_core/prompts/__init__.py
./sgr_agent_core/prompts/clarification_response.txt
./sgr_agent_core/prompts/initial_user_request.txt
./sgr_agent_core/prompts/research_system_prompt.txt
./sgr_agent_core/prompts/system_prompt.txt
./sgr_agent_core/server/__init__.py
./sgr_agent_core/server/__main__.py
./sgr_agent_core/server/app.py
./sgr_agent_core/server/endpoints.py
./sgr_agent_core/server/models.py
./sgr_agent_core/server/settings.py
./sgr_agent_core/services/__init__.py
./sgr_agent_core/services/mcp_service.py
./sgr_agent_core/services/overlayfs_manager.py
./sgr_agent_core/services/prompt_loader.py
./sgr_agent_core/services/registry.py
./sgr_agent_core/services/tool_instantiator.py
./sgr_agent_core/tools/__init__.py
./sgr_agent_core/tools/adapt_plan_tool.py
./sgr_agent_core/tools/answer_tool.py
./sgr_agent_core/tools/clarification_tool.py
./sgr_agent_core/tools/create_report_tool.py
./sgr_agent_core/tools/extract_page_content_tool.py
./sgr_agent_core/tools/final_answer_tool.py
./sgr_agent_core/tools/generate_plan_tool.py
./sgr_agent_core/tools/reasoning_tool.py
./sgr_agent_core/tools/run_command_tool.py
./sgr_agent_core/tools/web_search_tool.py
sgr_agent_core/__init__.py
sgr_agent_core/agent_config.py
sgr_agent_core/agent_definition.py
sgr_agent_core/agent_factory.py
sgr_agent_core/base_agent.py
sgr_agent_core/base_tool.py
sgr_agent_core/models.py
sgr_agent_core/next_step_tool.py
sgr_agent_core/stream.py
sgr_agent_core/utils.py
sgr_agent_core.egg-info/PKG-INFO
sgr_agent_core.egg-info/SOURCES.txt
sgr_agent_core.egg-info/dependency_links.txt
sgr_agent_core.egg-info/entry_points.txt
sgr_agent_core.egg-info/not-zip-safe
sgr_agent_core.egg-info/requires.txt
sgr_agent_core.egg-info/top_level.txt
sgr_agent_core/agents/__init__.py
sgr_agent_core/agents/dialog_agent.py
sgr_agent_core/agents/iron_agent.py
sgr_agent_core/agents/sgr_agent.py
sgr_agent_core/agents/sgr_tool_calling_agent.py
sgr_agent_core/agents/tool_calling_agent.py
sgr_agent_core/cli/__init__.py
sgr_agent_core/cli/__main__.py
sgr_agent_core/cli/sgrsh.py
sgr_agent_core/prompts/__init__.py
sgr_agent_core/prompts/clarification_response.txt
sgr_agent_core/prompts/initial_user_request.txt
sgr_agent_core/prompts/research_system_prompt.txt
sgr_agent_core/prompts/system_prompt.txt
sgr_agent_core/server/__init__.py
sgr_agent_core/server/__main__.py
sgr_agent_core/server/app.py
sgr_agent_core/server/endpoints.py
sgr_agent_core/server/models.py
sgr_agent_core/server/settings.py
sgr_agent_core/services/__init__.py
sgr_agent_core/services/mcp_service.py
sgr_agent_core/services/overlayfs_manager.py
sgr_agent_core/services/prompt_loader.py
sgr_agent_core/services/registry.py
sgr_agent_core/services/tool_instantiator.py
sgr_agent_core/tools/__init__.py
sgr_agent_core/tools/adapt_plan_tool.py
sgr_agent_core/tools/answer_tool.py
sgr_agent_core/tools/clarification_tool.py
sgr_agent_core/tools/create_report_tool.py
sgr_agent_core/tools/extract_page_content_tool.py
sgr_agent_core/tools/final_answer_tool.py
sgr_agent_core/tools/generate_plan_tool.py
sgr_agent_core/tools/reasoning_tool.py
sgr_agent_core/tools/run_command_tool.py
sgr_agent_core/tools/web_search_tool.py
tests/test_agent_config_integration.py
tests/test_agent_definition.py
tests/test_agent_e2e.py
tests/test_agent_factory.py
tests/test_agents_loading.py
tests/test_api_endpoints.py
tests/test_api_models.py
tests/test_base_agent.py
tests/test_base_tool.py
tests/test_cli.py
tests/test_config_e2e.py
tests/test_dialog_agent.py
tests/test_iron_agent.py
tests/test_models.py
tests/test_next_step_tool.py
tests/test_overlayfs_manager.py
tests/test_progressive_discovery.py
tests/test_prompts.py
tests/test_search_providers.py
tests/test_streaming.py
tests/test_tool_instantiator.py
tests/test_tools.py