.python-version
LICENSE
MANIFEST.in
README.md
pyproject.toml
requirements.txt
setup.py
uv.lock
docs/async-agent-guide.md
docs/circuit-breaker-guide.md
docs/context-engineering-guide.md
docs/custom_tools_guide.md
docs/devlog-guide.md
docs/file_tools.md
docs/function-calling-architecture.md
docs/logging-system-guide.md
docs/observability-guide.md
docs/session-persistence-guide.md
docs/skills-quickstart.md
docs/skills-usage-guide.md
docs/streaming-sse-guide.md
docs/subagent-guide.md
docs/todowrite-usage-guide.md
docs/tool-response-protocol.md
examples/async_agent_demo.py
examples/circuit_breaker_demo.py
examples/context_engineering_demo.py
examples/devlog_demo.py
examples/fastapi_sse_server.py
examples/file_tools_demo.py
examples/observability_demo.py
examples/parallel_tools_demo.py
examples/session_persistence_demo.py
examples/skills_demo.py
examples/subagent_demo.py
examples/test_sse_client.py
examples/todowrite_demo.py
examples/todowrite_real_world.py
examples/tool_response_demo.py
examples/custom_tools/advanced_tool_template.py
examples/custom_tools/code_formatter_tool.py
examples/custom_tools/complete_example.py
examples/custom_tools/expandable_tool_template.py
examples/custom_tools/simple_tool_template.py
examples/custom_tools/weather_tool.py
hello_agents/__init__.py
hello_agents/version.py
hello_agents.egg-info/PKG-INFO
hello_agents.egg-info/SOURCES.txt
hello_agents.egg-info/dependency_links.txt
hello_agents.egg-info/requires.txt
hello_agents.egg-info/top_level.txt
hello_agents/agents/__init__.py
hello_agents/agents/factory.py
hello_agents/agents/plan_solve_agent.py
hello_agents/agents/react_agent.py
hello_agents/agents/reflection_agent.py
hello_agents/agents/simple_agent.py
hello_agents/context/__init__.py
hello_agents/context/builder.py
hello_agents/context/history.py
hello_agents/context/token_counter.py
hello_agents/context/truncator.py
hello_agents/core/__init__.py
hello_agents/core/agent.py
hello_agents/core/config.py
hello_agents/core/exceptions.py
hello_agents/core/lifecycle.py
hello_agents/core/llm.py
hello_agents/core/llm_adapters.py
hello_agents/core/llm_response.py
hello_agents/core/message.py
hello_agents/core/session_store.py
hello_agents/core/streaming.py
hello_agents/observability/__init__.py
hello_agents/observability/trace_logger.py
hello_agents/skills/__init__.py
hello_agents/skills/loader.py
hello_agents/tools/__init__.py
hello_agents/tools/base.py
hello_agents/tools/circuit_breaker.py
hello_agents/tools/errors.py
hello_agents/tools/registry.py
hello_agents/tools/response.py
hello_agents/tools/tool_filter.py
hello_agents/tools/builtin/__init__.py
hello_agents/tools/builtin/calculator.py
hello_agents/tools/builtin/devlog_tool.py
hello_agents/tools/builtin/file_tools.py
hello_agents/tools/builtin/skill_tool.py
hello_agents/tools/builtin/task_tool.py
hello_agents/tools/builtin/todowrite_tool.py