agentpool 2.2.4__tar.gz → 2.3.2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {agentpool-2.2.4 → agentpool-2.3.2}/PKG-INFO +5 -3
- {agentpool-2.2.4 → agentpool-2.3.2}/README.md +2 -2
- {agentpool-2.2.4 → agentpool-2.3.2}/pyproject.toml +3 -2
- {agentpool-2.2.4 → agentpool-2.3.2}/src/acp/acp_requests.py +17 -75
- {agentpool-2.2.4 → agentpool-2.3.2}/src/acp/agent/connection.py +8 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/acp/agent/implementations/debug_server/debug_server.py +4 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/acp/agent/protocol.py +6 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/acp/client/connection.py +38 -29
- {agentpool-2.2.4 → agentpool-2.3.2}/src/acp/notifications.py +16 -47
- {agentpool-2.2.4 → agentpool-2.3.2}/src/acp/schema/agent_responses.py +12 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/acp/schema/session_state.py +43 -30
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/__init__.py +2 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/agents/acp_agent/acp_agent.py +177 -106
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/agents/acp_agent/acp_converters.py +2 -2
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/agents/acp_agent/client_handler.py +31 -21
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/agents/agent.py +334 -75
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/agents/agui_agent/agui_agent.py +88 -11
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/agents/base_agent.py +35 -16
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/agents/claude_code_agent/claude_code_agent.py +290 -93
- agentpool-2.3.2/src/agentpool/agents/claude_code_agent/usage.py +280 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/agents/events/__init__.py +16 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/agents/events/builtin_handlers.py +65 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/agents/events/event_emitter.py +3 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/agents/events/events.py +24 -2
- agentpool-2.3.2/src/agentpool/agents/events/processors.py +254 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/agents/tool_wrapping.py +1 -1
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/common_types.py +4 -9
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/config_resources/acp_assistant.yml +2 -2
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/config_resources/agents.yml +3 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/config_resources/agents_template.yml +1 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/config_resources/claude_code_agent.yml +7 -7
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/config_resources/external_acp_agents.yml +2 -1
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/delegation/base_team.py +2 -2
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/delegation/pool.py +108 -138
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/delegation/team.py +40 -47
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/delegation/teamrun.py +37 -34
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/mcp_server/client.py +51 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/mcp_server/conversions.py +20 -1
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/mcp_server/manager.py +7 -21
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/mcp_server/tool_bridge.py +3 -3
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/messaging/connection_manager.py +4 -4
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/messaging/message_container.py +6 -30
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/messaging/message_history.py +1 -1
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/messaging/messagenode.py +48 -10
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/messaging/messages.py +2 -26
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/messaging/processing.py +9 -21
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/models/__init__.py +1 -1
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/models/acp_agents/mcp_capable.py +45 -14
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/models/acp_agents/non_mcp.py +0 -23
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/models/agents.py +64 -64
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/models/agui_agents.py +1 -1
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/models/claude_code_agents.py +64 -13
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/models/file_parsing.py +0 -1
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/models/manifest.py +67 -47
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/resource_providers/__init__.py +2 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/resource_providers/aggregating.py +4 -2
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/resource_providers/base.py +3 -3
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/resource_providers/codemode/helpers.py +2 -2
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/resource_providers/codemode/provider.py +3 -1
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/resource_providers/codemode/remote_provider.py +1 -1
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/resource_providers/filtering.py +3 -1
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/resource_providers/mcp_provider.py +62 -3
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/resource_providers/plan_provider.py +88 -14
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/resource_providers/pool.py +5 -3
- agentpool-2.3.2/src/agentpool/resource_providers/resource_info.py +111 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/resource_providers/static.py +2 -2
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/sessions/manager.py +1 -2
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/sessions/models.py +0 -7
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/sessions/session.py +11 -46
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/storage/manager.py +258 -37
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/talk/talk.py +3 -4
- agentpool-2.3.2/src/agentpool/tool_impls/__init__.py +6 -0
- agentpool-2.3.2/src/agentpool/tool_impls/agent_cli/__init__.py +42 -0
- agentpool-2.3.2/src/agentpool/tool_impls/agent_cli/tool.py +95 -0
- agentpool-2.3.2/src/agentpool/tool_impls/ask_user/__init__.py +42 -0
- agentpool-2.3.2/src/agentpool/tool_impls/ask_user/tool.py +60 -0
- agentpool-2.3.2/src/agentpool/tool_impls/bash/__init__.py +64 -0
- agentpool-2.3.2/src/agentpool/tool_impls/bash/helpers.py +35 -0
- agentpool-2.3.2/src/agentpool/tool_impls/bash/tool.py +135 -0
- agentpool-2.3.2/src/agentpool/tool_impls/execute_code/__init__.py +55 -0
- agentpool-2.3.2/src/agentpool/tool_impls/execute_code/tool.py +118 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/tools/__init__.py +2 -1
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/tools/base.py +75 -33
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/tools/manager.py +43 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/utils/streams.py +20 -95
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_cli/create.py +1 -1
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_commands/agents.py +1 -1
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_config/__init__.py +30 -2
- agentpool-2.3.2/src/agentpool_config/agentpool_tools.py +166 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_config/event_handlers.py +42 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_config/forward_targets.py +1 -4
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_config/jinja.py +3 -3
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_config/observability.py +44 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_config/session.py +0 -3
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_config/storage.py +38 -39
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_config/tools.py +11 -28
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_config/toolsets.py +17 -85
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_server/acp_server/acp_agent.py +114 -9
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_server/acp_server/acp_tools.py +2 -2
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_server/acp_server/commands/acp_commands.py +46 -11
- agentpool-2.3.2/src/agentpool_server/acp_server/event_converter.py +647 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_server/acp_server/input_provider.py +24 -22
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_server/acp_server/session.py +21 -362
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_server/acp_server/session_manager.py +1 -1
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_server/opencode_server/ENDPOINTS.md +2 -1
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_server/opencode_server/converters.py +125 -14
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_server/opencode_server/models/__init__.py +2 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_server/opencode_server/models/events.py +29 -31
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_server/opencode_server/models/mcp.py +19 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_server/opencode_server/models/parts.py +139 -1
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_server/opencode_server/routes/agent_routes.py +31 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_server/opencode_server/routes/session_routes.py +16 -5
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_storage/base.py +81 -2
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_storage/claude_provider.py +171 -1
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_storage/file_provider.py +149 -15
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_storage/memory_provider.py +131 -12
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_storage/opencode_provider.py +397 -6
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_storage/session_store.py +0 -2
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_storage/sql_provider/sql_provider.py +135 -2
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_storage/sql_provider/utils.py +2 -12
- agentpool-2.3.2/src/agentpool_storage/zed_provider.py +884 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_toolsets/__init__.py +0 -2
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_toolsets/builtin/__init__.py +2 -4
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_toolsets/builtin/code.py +4 -4
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_toolsets/builtin/execution_environment.py +14 -163
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_toolsets/builtin/skills.py +0 -77
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_toolsets/builtin/subagent_tools.py +62 -50
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_toolsets/builtin/workers.py +3 -1
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_toolsets/composio_toolset.py +2 -2
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_toolsets/entry_points.py +3 -1
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_toolsets/fsspec_toolset/toolset.py +8 -7
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_toolsets/mcp_discovery/toolset.py +3 -1
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_toolsets/mcp_run_toolset.py +2 -1
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_toolsets/notifications.py +2 -2
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_toolsets/openapi.py +3 -1
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_toolsets/search_toolset.py +3 -1
- agentpool-2.2.4/src/agentpool_config/resources.py +0 -33
- agentpool-2.2.4/src/agentpool_storage/text_log_provider.py +0 -276
- agentpool-2.2.4/src/agentpool_toolsets/builtin/chain.py +0 -288
- agentpool-2.2.4/src/agentpool_toolsets/builtin/user_interaction.py +0 -52
- agentpool-2.2.4/src/agentpool_toolsets/semantic_memory_toolset.py +0 -536
- {agentpool-2.2.4 → agentpool-2.3.2}/LICENSE +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/acp/README.md +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/acp/__init__.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/acp/__main__.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/acp/agent/__init__.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/acp/agent/implementations/__init__.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/acp/agent/implementations/debug_server/__init__.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/acp/agent/implementations/debug_server/cli.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/acp/agent/implementations/debug_server/debug.html +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/acp/agent/implementations/testing.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/acp/bridge/README.md +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/acp/bridge/__init__.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/acp/bridge/__main__.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/acp/bridge/bridge.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/acp/bridge/py.typed +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/acp/bridge/settings.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/acp/bridge/ws_server.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/acp/bridge/ws_server_cli.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/acp/client/__init__.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/acp/client/implementations/__init__.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/acp/client/implementations/default_client.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/acp/client/implementations/headless_client.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/acp/client/implementations/noop_client.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/acp/client/protocol.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/acp/connection.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/acp/exceptions.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/acp/filesystem.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/acp/py.typed +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/acp/schema/__init__.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/acp/schema/agent_plan.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/acp/schema/agent_requests.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/acp/schema/base.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/acp/schema/capabilities.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/acp/schema/client_requests.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/acp/schema/client_responses.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/acp/schema/common.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/acp/schema/content_blocks.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/acp/schema/mcp.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/acp/schema/messages.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/acp/schema/notifications.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/acp/schema/protocol_stuff.md +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/acp/schema/session_updates.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/acp/schema/slash_commands.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/acp/schema/terminal.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/acp/schema/tool_call.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/acp/stdio.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/acp/task/__init__.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/acp/task/debug.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/acp/task/dispatcher.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/acp/task/queue.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/acp/task/sender.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/acp/task/state.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/acp/task/supervisor.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/acp/terminal_handle.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/acp/tool_call_reporter.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/acp/tool_call_state.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/acp/transports.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/acp/utils.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/__main__.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/agents/__init__.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/agents/acp_agent/__init__.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/agents/acp_agent/session_state.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/agents/agui_agent/__init__.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/agents/agui_agent/agui_converters.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/agents/agui_agent/chunk_transformer.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/agents/agui_agent/event_types.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/agents/agui_agent/helpers.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/agents/architect.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/agents/claude_code_agent/__init__.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/agents/claude_code_agent/converters.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/agents/claude_code_agent/history.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/agents/context.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/agents/events/tts_handlers.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/agents/interactions.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/agents/modes.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/agents/slashed_agent.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/agents/sys_prompts.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/agents/tool_call_accumulator.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/base_provider.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/config_resources/__init__.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/config_resources/agui_test.yml +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/config_resources/claude_style_subagent.md +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/config_resources/opencode_style_subagent.md +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/config_resources/tts_test_agents.yml +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/delegation/__init__.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/delegation/message_flow_tracker.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/diagnostics/__init__.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/diagnostics/lsp_manager.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/diagnostics/lsp_proxy.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/diagnostics/lsp_proxy_script.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/diagnostics/models.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/docs/__init__.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/docs/gen_examples.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/docs/utils.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/functional/__init__.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/functional/py.typed +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/functional/run.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/functional/structure.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/hooks/__init__.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/hooks/agent_hooks.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/hooks/base.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/hooks/callable.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/hooks/command.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/hooks/prompt.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/jinja_filters.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/log.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/mcp_server/__init__.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/mcp_server/constants.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/mcp_server/helpers.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/mcp_server/message_handler.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/mcp_server/registries/__init__.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/mcp_server/registries/official_registry_client.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/mcp_server/registries/pulsemcp_client.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/messaging/__init__.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/messaging/compaction.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/messaging/context.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/messaging/event_manager.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/messaging/events.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/mime_utils.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/models/acp_agents/__init__.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/models/acp_agents/base.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/models/file_agents.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/observability/__init__.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/observability/observability_registry.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/prompts/__init__.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/prompts/base.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/prompts/builtin_provider.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/prompts/conversion_manager.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/prompts/convert.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/prompts/manager.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/prompts/parts/zed.md +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/prompts/prompts.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/py.typed +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/queries/tree-sitter-language-pack/README.md +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/queries/tree-sitter-language-pack/arduino-tags.scm +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/queries/tree-sitter-language-pack/c-tags.scm +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/queries/tree-sitter-language-pack/chatito-tags.scm +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/queries/tree-sitter-language-pack/clojure-tags.scm +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/queries/tree-sitter-language-pack/commonlisp-tags.scm +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/queries/tree-sitter-language-pack/cpp-tags.scm +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/queries/tree-sitter-language-pack/csharp-tags.scm +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/queries/tree-sitter-language-pack/d-tags.scm +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/queries/tree-sitter-language-pack/dart-tags.scm +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/queries/tree-sitter-language-pack/elisp-tags.scm +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/queries/tree-sitter-language-pack/elixir-tags.scm +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/queries/tree-sitter-language-pack/elm-tags.scm +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/queries/tree-sitter-language-pack/gleam-tags.scm +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/queries/tree-sitter-language-pack/go-tags.scm +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/queries/tree-sitter-language-pack/java-tags.scm +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/queries/tree-sitter-language-pack/javascript-tags.scm +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/queries/tree-sitter-language-pack/lua-tags.scm +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/queries/tree-sitter-language-pack/matlab-tags.scm +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/queries/tree-sitter-language-pack/ocaml-tags.scm +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/queries/tree-sitter-language-pack/ocaml_interface-tags.scm +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/queries/tree-sitter-language-pack/pony-tags.scm +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/queries/tree-sitter-language-pack/properties-tags.scm +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/queries/tree-sitter-language-pack/python-tags.scm +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/queries/tree-sitter-language-pack/r-tags.scm +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/queries/tree-sitter-language-pack/racket-tags.scm +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/queries/tree-sitter-language-pack/ruby-tags.scm +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/queries/tree-sitter-language-pack/rust-tags.scm +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/queries/tree-sitter-language-pack/solidity-tags.scm +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/queries/tree-sitter-language-pack/swift-tags.scm +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/queries/tree-sitter-language-pack/udev-tags.scm +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/queries/tree-sitter-languages/README.md +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/queries/tree-sitter-languages/c-tags.scm +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/queries/tree-sitter-languages/c_sharp-tags.scm +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/queries/tree-sitter-languages/cpp-tags.scm +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/queries/tree-sitter-languages/dart-tags.scm +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/queries/tree-sitter-languages/elisp-tags.scm +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/queries/tree-sitter-languages/elixir-tags.scm +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/queries/tree-sitter-languages/elm-tags.scm +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/queries/tree-sitter-languages/fortran-tags.scm +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/queries/tree-sitter-languages/go-tags.scm +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/queries/tree-sitter-languages/haskell-tags.scm +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/queries/tree-sitter-languages/hcl-tags.scm +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/queries/tree-sitter-languages/java-tags.scm +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/queries/tree-sitter-languages/javascript-tags.scm +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/queries/tree-sitter-languages/julia-tags.scm +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/queries/tree-sitter-languages/kotlin-tags.scm +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/queries/tree-sitter-languages/matlab-tags.scm +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/queries/tree-sitter-languages/ocaml-tags.scm +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/queries/tree-sitter-languages/ocaml_interface-tags.scm +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/queries/tree-sitter-languages/php-tags.scm +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/queries/tree-sitter-languages/python-tags.scm +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/queries/tree-sitter-languages/ql-tags.scm +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/queries/tree-sitter-languages/ruby-tags.scm +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/queries/tree-sitter-languages/rust-tags.scm +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/queries/tree-sitter-languages/scala-tags.scm +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/queries/tree-sitter-languages/typescript-tags.scm +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/queries/tree-sitter-languages/zig-tags.scm +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/repomap.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/resource_providers/codemode/__init__.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/resource_providers/codemode/code_executor.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/resource_providers/codemode/default_prompt.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/resource_providers/codemode/progress_executor.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/resource_providers/codemode/remote_mcp_execution.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/running/__init__.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/running/decorators.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/running/discovery.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/running/executor.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/running/injection.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/running/py.typed +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/running/run_nodes.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/server.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/sessions/__init__.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/sessions/store.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/skills/__init__.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/skills/manager.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/skills/registry.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/skills/skill.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/storage/__init__.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/storage/serialization.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/talk/__init__.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/talk/registry.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/talk/stats.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/tasks/__init__.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/tasks/exceptions.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/tasks/registry.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/testing.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/text_templates/__init__.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/text_templates/system_prompt.jinja +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/text_templates/tool_call_default.jinja +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/text_templates/tool_call_markdown.jinja +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/text_templates/tool_call_simple.jinja +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/tools/exceptions.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/tools/tool_call_info.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/ui/__init__.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/ui/base.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/ui/mock_provider.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/ui/stdlib_provider.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/utils/__init__.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/utils/baseregistry.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/utils/count_tokens.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/utils/dag.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/utils/file_watcher.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/utils/identifiers.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/utils/importing.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/utils/inspection.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/utils/model_capabilities.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/utils/network.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/utils/now.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/utils/parse_time.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/utils/pydantic_ai_helpers.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/utils/result_utils.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/utils/signatures.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/utils/subprocess_utils.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/utils/tasks.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/utils/token_breakdown.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/vfs_registry.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_cli/__init__.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_cli/__main__.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_cli/agent.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_cli/cli_types.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_cli/common.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_cli/history.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_cli/log.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_cli/py.typed +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_cli/run.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_cli/serve_acp.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_cli/serve_agui.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_cli/serve_api.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_cli/serve_mcp.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_cli/serve_opencode.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_cli/serve_vercel.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_cli/store.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_cli/task.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_cli/utils.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_cli/watch.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_commands/__init__.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_commands/base.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_commands/commands.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_commands/completers.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_commands/connections.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_commands/history.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_commands/markdown_utils.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_commands/mcp.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_commands/models.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_commands/prompts.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_commands/py.typed +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_commands/read.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_commands/resources.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_commands/session.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_commands/tools.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_commands/utils.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_commands/workers.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_config/builtin_tools.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_config/commands.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_config/compaction.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_config/conditions.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_config/converters.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_config/durable.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_config/events.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_config/hook_conditions.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_config/hooks.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_config/knowledge.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_config/loaders.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_config/mcp_server.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_config/nodes.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_config/output_types.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_config/pool_server.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_config/prompt_hubs.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_config/prompts.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_config/py.typed +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_config/skills.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_config/system_prompts.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_config/task.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_config/teams.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_config/workers.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_prompts/__init__.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_prompts/braintrust_hub.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_prompts/fabric.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_prompts/langfuse_hub.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_prompts/promptlayer_provider.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_prompts/py.typed +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_server/__init__.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_server/a2a_server/__init__.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_server/a2a_server/a2a_types.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_server/a2a_server/server.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_server/a2a_server/storage.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_server/acp_server/__init__.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_server/acp_server/commands/__init__.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_server/acp_server/commands/debug_commands.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_server/acp_server/commands/docs_commands/__init__.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_server/acp_server/commands/docs_commands/fetch_repo.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_server/acp_server/commands/docs_commands/get_schema.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_server/acp_server/commands/docs_commands/get_source.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_server/acp_server/commands/docs_commands/git_diff.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_server/acp_server/commands/docs_commands/helpers.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_server/acp_server/commands/docs_commands/url_to_markdown.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_server/acp_server/commands/spawn.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_server/acp_server/converters.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_server/acp_server/server.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_server/acp_server/syntax_detection.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_server/acp_server/zed_tools.md +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_server/aggregating_server.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_server/agui_server/__init__.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_server/agui_server/server.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_server/base.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_server/http_server.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_server/mcp_server/__init__.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_server/mcp_server/server.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_server/mcp_server/zed_wrapper.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_server/openai_api_server/__init__.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_server/openai_api_server/completions/__init__.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_server/openai_api_server/completions/helpers.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_server/openai_api_server/completions/models.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_server/openai_api_server/responses/__init__.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_server/openai_api_server/responses/helpers.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_server/openai_api_server/responses/models.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_server/openai_api_server/server.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_server/opencode_server/.rules +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_server/opencode_server/__init__.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_server/opencode_server/command_validation.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_server/opencode_server/dependencies.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_server/opencode_server/input_provider.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_server/opencode_server/models/agent.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_server/opencode_server/models/app.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_server/opencode_server/models/base.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_server/opencode_server/models/common.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_server/opencode_server/models/config.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_server/opencode_server/models/file.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_server/opencode_server/models/message.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_server/opencode_server/models/provider.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_server/opencode_server/models/pty.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_server/opencode_server/models/session.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_server/opencode_server/routes/__init__.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_server/opencode_server/routes/app_routes.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_server/opencode_server/routes/config_routes.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_server/opencode_server/routes/file_routes.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_server/opencode_server/routes/global_routes.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_server/opencode_server/routes/lsp_routes.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_server/opencode_server/routes/message_routes.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_server/opencode_server/routes/pty_routes.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_server/opencode_server/routes/tui_routes.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_server/opencode_server/server.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_server/opencode_server/state.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_server/opencode_server/time_utils.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_server/py.typed +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_storage/__init__.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_storage/formatters.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_storage/models.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_storage/project_store.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_storage/py.typed +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_storage/sql_provider/__init__.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_storage/sql_provider/cli.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_storage/sql_provider/models.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_storage/sql_provider/queries.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_toolsets/builtin/debug.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_toolsets/builtin/file_edit/__init__.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_toolsets/builtin/file_edit/file_edit.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_toolsets/builtin/file_edit/fuzzy_matcher/__init__.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_toolsets/builtin/file_edit/fuzzy_matcher/example_usage.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_toolsets/builtin/file_edit/fuzzy_matcher/streaming_fuzzy_matcher.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_toolsets/config_creation.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_toolsets/fsspec_toolset/__init__.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_toolsets/fsspec_toolset/diagnostics.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_toolsets/fsspec_toolset/grep.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_toolsets/fsspec_toolset/helpers.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_toolsets/fsspec_toolset/image_utils.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_toolsets/fsspec_toolset/streaming_diff_parser.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_toolsets/mcp_discovery/__init__.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_toolsets/mcp_discovery/data/mcp_servers.parquet +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_toolsets/py.typed +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_toolsets/streaming_tools.py +0 -0
- {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_toolsets/vfs_toolset.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: agentpool
|
|
3
|
-
Version: 2.2
|
|
3
|
+
Version: 2.3.2
|
|
4
4
|
Summary: Pydantic-AI based Multi-Agent Framework with YAML-based Agents, Teams, Workflows & Extended ACP / AGUI integration
|
|
5
5
|
Keywords:
|
|
6
6
|
Author: Philipp Temminghoff
|
|
@@ -101,6 +101,7 @@ Requires-Dist: uvicorn[standard] ; extra == 'server'
|
|
|
101
101
|
Requires-Dist: textual>=1.0.0 ; extra == 'textual'
|
|
102
102
|
Requires-Dist: tiktoken ; extra == 'tiktoken'
|
|
103
103
|
Requires-Dist: anyvoice[tts-edge,openai]>=0.0.2 ; extra == 'tts'
|
|
104
|
+
Requires-Dist: zstandard>=0.23.0 ; extra == 'zed'
|
|
104
105
|
Requires-Python: >=3.13
|
|
105
106
|
Project-URL: Code coverage, https://app.codecov.io/gh/phil65/agentpool
|
|
106
107
|
Project-URL: Discussions, https://github.com/phil65/agentpool/discussions
|
|
@@ -129,6 +130,7 @@ Provides-Extra: server
|
|
|
129
130
|
Provides-Extra: textual
|
|
130
131
|
Provides-Extra: tiktoken
|
|
131
132
|
Provides-Extra: tts
|
|
133
|
+
Provides-Extra: zed
|
|
132
134
|
Description-Content-Type: text/markdown
|
|
133
135
|
|
|
134
136
|
# AgentPool
|
|
@@ -214,7 +216,7 @@ agents:
|
|
|
214
216
|
coordinator:
|
|
215
217
|
type: native
|
|
216
218
|
model: openai:gpt-4o
|
|
217
|
-
|
|
219
|
+
tools:
|
|
218
220
|
- type: subagent # Can delegate to all other agents
|
|
219
221
|
system_prompt: "Coordinate tasks between available agents."
|
|
220
222
|
|
|
@@ -282,7 +284,7 @@ agents:
|
|
|
282
284
|
model:
|
|
283
285
|
type: fallback
|
|
284
286
|
models: [openai:gpt-4o, anthropic:claude-sonnet-4-0]
|
|
285
|
-
|
|
287
|
+
tools:
|
|
286
288
|
- type: subagent
|
|
287
289
|
- type: resource_access
|
|
288
290
|
mcp_servers:
|
|
@@ -81,7 +81,7 @@ agents:
|
|
|
81
81
|
coordinator:
|
|
82
82
|
type: native
|
|
83
83
|
model: openai:gpt-4o
|
|
84
|
-
|
|
84
|
+
tools:
|
|
85
85
|
- type: subagent # Can delegate to all other agents
|
|
86
86
|
system_prompt: "Coordinate tasks between available agents."
|
|
87
87
|
|
|
@@ -149,7 +149,7 @@ agents:
|
|
|
149
149
|
model:
|
|
150
150
|
type: fallback
|
|
151
151
|
models: [openai:gpt-4o, anthropic:claude-sonnet-4-0]
|
|
152
|
-
|
|
152
|
+
tools:
|
|
153
153
|
- type: subagent
|
|
154
154
|
- type: resource_access
|
|
155
155
|
mcp_servers:
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
[project]
|
|
4
4
|
name = "agentpool"
|
|
5
|
-
version = "2.2
|
|
5
|
+
version = "2.3.2"
|
|
6
6
|
description = "Pydantic-AI based Multi-Agent Framework with YAML-based Agents, Teams, Workflows & Extended ACP / AGUI integration"
|
|
7
7
|
readme = "README.md"
|
|
8
8
|
requires-python = ">=3.13"
|
|
@@ -145,6 +145,7 @@ server = [
|
|
|
145
145
|
textual = ["textual>=1.0.0"] # Textual CLI app to create configs
|
|
146
146
|
tiktoken = ["tiktoken"] # Exact token counting
|
|
147
147
|
tts = ["anyvoice[tts-edge,openai]>=0.0.2"] # Text-to-Speech using AnyVoice
|
|
148
|
+
zed = ["zstandard>=0.23.0"] # Zed IDE storage provider
|
|
148
149
|
|
|
149
150
|
[dependency-groups]
|
|
150
151
|
dev = [
|
|
@@ -160,7 +161,7 @@ dev = [
|
|
|
160
161
|
# Only add below (Copier)
|
|
161
162
|
"pytest-asyncio>=0.24.0",
|
|
162
163
|
"pytest-cov",
|
|
163
|
-
"pytest-pretty>=1.3.0",
|
|
164
|
+
# "pytest-pretty>=1.3.0",
|
|
164
165
|
"pytest-rerunfailures>=16.1",
|
|
165
166
|
"pytest-timeout>=2.4.0",
|
|
166
167
|
"pytest-xdist",
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
from __future__ import annotations
|
|
4
4
|
|
|
5
5
|
import asyncio
|
|
6
|
-
from typing import TYPE_CHECKING
|
|
6
|
+
from typing import TYPE_CHECKING, Any
|
|
7
7
|
|
|
8
8
|
import structlog
|
|
9
9
|
|
|
@@ -34,17 +34,7 @@ if TYPE_CHECKING:
|
|
|
34
34
|
logger = structlog.get_logger(__name__)
|
|
35
35
|
|
|
36
36
|
|
|
37
|
-
RULES_FILE_NAMES = [
|
|
38
|
-
".rules",
|
|
39
|
-
"CLAUDE.md",
|
|
40
|
-
"AGENT.md",
|
|
41
|
-
"AGENTS.md",
|
|
42
|
-
"GEMINI.md",
|
|
43
|
-
".cursorrules",
|
|
44
|
-
".windsurfrules",
|
|
45
|
-
".clinerules",
|
|
46
|
-
".github/copilot-instructions.md",
|
|
47
|
-
]
|
|
37
|
+
RULES_FILE_NAMES = ["CLAUDE.md", "AGENTS.md"]
|
|
48
38
|
|
|
49
39
|
|
|
50
40
|
class ACPRequests:
|
|
@@ -55,12 +45,7 @@ class ACPRequests:
|
|
|
55
45
|
"""
|
|
56
46
|
|
|
57
47
|
def __init__(self, client: Client, session_id: str) -> None:
|
|
58
|
-
"""Initialize requests helper.
|
|
59
|
-
|
|
60
|
-
Args:
|
|
61
|
-
client: ACP client
|
|
62
|
-
session_id: Session ID
|
|
63
|
-
"""
|
|
48
|
+
"""Initialize requests helper."""
|
|
64
49
|
self.client = client
|
|
65
50
|
self.id = session_id
|
|
66
51
|
|
|
@@ -81,12 +66,7 @@ class ACPRequests:
|
|
|
81
66
|
Returns:
|
|
82
67
|
File content as string
|
|
83
68
|
"""
|
|
84
|
-
request = ReadTextFileRequest(
|
|
85
|
-
session_id=self.id,
|
|
86
|
-
path=path,
|
|
87
|
-
limit=limit,
|
|
88
|
-
line=line,
|
|
89
|
-
)
|
|
69
|
+
request = ReadTextFileRequest(session_id=self.id, path=path, limit=limit, line=line)
|
|
90
70
|
response = await self.client.read_text_file(request)
|
|
91
71
|
return response.content
|
|
92
72
|
|
|
@@ -105,12 +85,7 @@ class ACPRequests:
|
|
|
105
85
|
return None
|
|
106
86
|
|
|
107
87
|
async def write_text_file(self, path: str, content: str) -> None:
|
|
108
|
-
"""Write text content to a file.
|
|
109
|
-
|
|
110
|
-
Args:
|
|
111
|
-
path: File path to write
|
|
112
|
-
content: Text content to write
|
|
113
|
-
"""
|
|
88
|
+
"""Write text content to a file."""
|
|
114
89
|
request = WriteTextFileRequest(session_id=self.id, path=path, content=content)
|
|
115
90
|
await self.client.write_text_file(request)
|
|
116
91
|
|
|
@@ -147,47 +122,22 @@ class ACPRequests:
|
|
|
147
122
|
return TerminalHandle(terminal_id=response.terminal_id, requests=self)
|
|
148
123
|
|
|
149
124
|
async def terminal_output(self, terminal_id: str) -> TerminalOutputResponse:
|
|
150
|
-
"""Get output from a terminal session.
|
|
151
|
-
|
|
152
|
-
Args:
|
|
153
|
-
terminal_id: Terminal identifier
|
|
154
|
-
|
|
155
|
-
Returns:
|
|
156
|
-
Terminal output response
|
|
157
|
-
"""
|
|
125
|
+
"""Get output from a terminal session."""
|
|
158
126
|
request = TerminalOutputRequest(session_id=self.id, terminal_id=terminal_id)
|
|
159
127
|
return await self.client.terminal_output(request)
|
|
160
128
|
|
|
161
|
-
async def wait_for_terminal_exit(
|
|
162
|
-
|
|
163
|
-
terminal_id: str,
|
|
164
|
-
) -> WaitForTerminalExitResponse:
|
|
165
|
-
"""Wait for a terminal to exit.
|
|
166
|
-
|
|
167
|
-
Args:
|
|
168
|
-
terminal_id: Terminal identifier
|
|
169
|
-
|
|
170
|
-
Returns:
|
|
171
|
-
Terminal exit response with exit_code
|
|
172
|
-
"""
|
|
129
|
+
async def wait_for_terminal_exit(self, terminal_id: str) -> WaitForTerminalExitResponse:
|
|
130
|
+
"""Wait for a terminal to exit."""
|
|
173
131
|
request = WaitForTerminalExitRequest(session_id=self.id, terminal_id=terminal_id)
|
|
174
132
|
return await self.client.wait_for_terminal_exit(request)
|
|
175
133
|
|
|
176
134
|
async def kill_terminal(self, terminal_id: str) -> None:
|
|
177
|
-
"""Kill a terminal session.
|
|
178
|
-
|
|
179
|
-
Args:
|
|
180
|
-
terminal_id: Terminal identifier to kill
|
|
181
|
-
"""
|
|
135
|
+
"""Kill a terminal session."""
|
|
182
136
|
request = KillTerminalCommandRequest(session_id=self.id, terminal_id=terminal_id)
|
|
183
137
|
await self.client.kill_terminal(request)
|
|
184
138
|
|
|
185
139
|
async def release_terminal(self, terminal_id: str) -> None:
|
|
186
|
-
"""Release a terminal session.
|
|
187
|
-
|
|
188
|
-
Args:
|
|
189
|
-
terminal_id: Terminal identifier to release
|
|
190
|
-
"""
|
|
140
|
+
"""Release a terminal session."""
|
|
191
141
|
request = ReleaseTerminalRequest(session_id=self.id, terminal_id=terminal_id)
|
|
192
142
|
await self.client.release_terminal(request)
|
|
193
143
|
|
|
@@ -229,10 +179,8 @@ class ACPRequests:
|
|
|
229
179
|
try:
|
|
230
180
|
if timeout_seconds: # Wait for completion (with optional timeout)
|
|
231
181
|
try:
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
timeout=timeout_seconds,
|
|
235
|
-
)
|
|
182
|
+
coro = self.wait_for_terminal_exit(terminal_id)
|
|
183
|
+
exit_result = await asyncio.wait_for(coro, timeout=timeout_seconds)
|
|
236
184
|
except TimeoutError: # Kill on timeout and get partial output
|
|
237
185
|
await self.kill_terminal(terminal_id)
|
|
238
186
|
output_response = await self.terminal_output(terminal_id)
|
|
@@ -251,6 +199,7 @@ class ACPRequests:
|
|
|
251
199
|
tool_call_id: str,
|
|
252
200
|
*,
|
|
253
201
|
title: str | None = None,
|
|
202
|
+
raw_input: Any | None = None,
|
|
254
203
|
options: list[PermissionOption] | None = None,
|
|
255
204
|
) -> RequestPermissionResponse:
|
|
256
205
|
"""Request permission from user before executing a tool call.
|
|
@@ -258,6 +207,7 @@ class ACPRequests:
|
|
|
258
207
|
Args:
|
|
259
208
|
tool_call_id: Unique identifier for the tool call
|
|
260
209
|
title: Human-readable description of the operation
|
|
210
|
+
raw_input: The raw input parameters for the tool call
|
|
261
211
|
options: Available permission options (defaults to allow/reject once)
|
|
262
212
|
|
|
263
213
|
Returns:
|
|
@@ -265,19 +215,11 @@ class ACPRequests:
|
|
|
265
215
|
"""
|
|
266
216
|
if options is None:
|
|
267
217
|
options = [
|
|
268
|
-
PermissionOption(
|
|
269
|
-
|
|
270
|
-
name="Allow once",
|
|
271
|
-
kind="allow_once",
|
|
272
|
-
),
|
|
273
|
-
PermissionOption(
|
|
274
|
-
option_id="reject-once",
|
|
275
|
-
name="Reject",
|
|
276
|
-
kind="reject_once",
|
|
277
|
-
),
|
|
218
|
+
PermissionOption(option_id="allow-once", name="Allow once", kind="allow_once"),
|
|
219
|
+
PermissionOption(option_id="reject-once", name="Reject", kind="reject_once"),
|
|
278
220
|
]
|
|
279
221
|
|
|
280
|
-
tool_call = ToolCall(tool_call_id=tool_call_id, title=title)
|
|
222
|
+
tool_call = ToolCall(tool_call_id=tool_call_id, title=title, raw_input=raw_input)
|
|
281
223
|
request = RequestPermissionRequest(
|
|
282
224
|
session_id=self.id,
|
|
283
225
|
tool_call=tool_call,
|
|
@@ -30,6 +30,7 @@ from acp.schema import (
|
|
|
30
30
|
RequestPermissionRequest,
|
|
31
31
|
RequestPermissionResponse,
|
|
32
32
|
SessionNotification,
|
|
33
|
+
SetSessionConfigOptionRequest,
|
|
33
34
|
SetSessionModelRequest,
|
|
34
35
|
SetSessionModeRequest,
|
|
35
36
|
TerminalOutputRequest,
|
|
@@ -243,6 +244,13 @@ async def _agent_handler( # noqa: PLR0911
|
|
|
243
244
|
if (model_result := await agent.set_session_model(set_model_request))
|
|
244
245
|
else {}
|
|
245
246
|
)
|
|
247
|
+
case "session/set_config_option":
|
|
248
|
+
set_config_request = SetSessionConfigOptionRequest.model_validate(params)
|
|
249
|
+
return (
|
|
250
|
+
config_result.model_dump(by_alias=True, exclude_none=True)
|
|
251
|
+
if (config_result := await agent.set_session_config_option(set_config_request))
|
|
252
|
+
else {}
|
|
253
|
+
)
|
|
246
254
|
case "authenticate":
|
|
247
255
|
p = AuthenticateRequest.model_validate(params)
|
|
248
256
|
result = await agent.authenticate(p)
|
{agentpool-2.2.4 → agentpool-2.3.2}/src/acp/agent/implementations/debug_server/debug_server.py
RENAMED
|
@@ -190,6 +190,10 @@ class MockAgent(Agent):
|
|
|
190
190
|
"""Mock session model change."""
|
|
191
191
|
logger.info("Mock session model change")
|
|
192
192
|
|
|
193
|
+
async def set_session_config_option(self, params: Any) -> None:
|
|
194
|
+
"""Mock session config option change."""
|
|
195
|
+
logger.info("Mock session config option change")
|
|
196
|
+
|
|
193
197
|
async def ext_notification(self, method: str, params: dict[str, Any]) -> None:
|
|
194
198
|
"""Mock extensibility notification."""
|
|
195
199
|
logger.info("Mock ext notification", method=method)
|
|
@@ -24,6 +24,8 @@ if TYPE_CHECKING:
|
|
|
24
24
|
PromptResponse,
|
|
25
25
|
ResumeSessionRequest,
|
|
26
26
|
ResumeSessionResponse,
|
|
27
|
+
SetSessionConfigOptionRequest,
|
|
28
|
+
SetSessionConfigOptionResponse,
|
|
27
29
|
SetSessionModelRequest,
|
|
28
30
|
SetSessionModelResponse,
|
|
29
31
|
SetSessionModeRequest,
|
|
@@ -60,6 +62,10 @@ class Agent(Protocol):
|
|
|
60
62
|
self, params: SetSessionModelRequest
|
|
61
63
|
) -> SetSessionModelResponse | None: ...
|
|
62
64
|
|
|
65
|
+
async def set_session_config_option(
|
|
66
|
+
self, params: SetSessionConfigOptionRequest
|
|
67
|
+
) -> SetSessionConfigOptionResponse | None: ...
|
|
68
|
+
|
|
63
69
|
async def ext_method(self, method: str, params: dict[str, Any]) -> dict[str, Any]: ...
|
|
64
70
|
|
|
65
71
|
async def ext_notification(self, method: str, params: dict[str, Any]) -> None: ...
|
|
@@ -7,8 +7,35 @@ from typing import TYPE_CHECKING, Any, Self
|
|
|
7
7
|
|
|
8
8
|
import logfire
|
|
9
9
|
|
|
10
|
+
from acp.agent.protocol import Agent
|
|
11
|
+
from acp.connection import Connection
|
|
12
|
+
from acp.exceptions import RequestError
|
|
13
|
+
from acp.schema import (
|
|
14
|
+
AuthenticateResponse,
|
|
15
|
+
CreateTerminalRequest,
|
|
16
|
+
ForkSessionResponse,
|
|
17
|
+
InitializeResponse,
|
|
18
|
+
KillTerminalCommandRequest,
|
|
19
|
+
ListSessionsResponse,
|
|
20
|
+
LoadSessionResponse,
|
|
21
|
+
NewSessionResponse,
|
|
22
|
+
PromptResponse,
|
|
23
|
+
ReadTextFileRequest,
|
|
24
|
+
ReleaseTerminalRequest,
|
|
25
|
+
RequestPermissionRequest,
|
|
26
|
+
ResumeSessionResponse,
|
|
27
|
+
SessionNotification,
|
|
28
|
+
SetSessionConfigOptionResponse,
|
|
29
|
+
SetSessionModelResponse,
|
|
30
|
+
SetSessionModeResponse,
|
|
31
|
+
TerminalOutputRequest,
|
|
32
|
+
WaitForTerminalExitRequest,
|
|
33
|
+
WriteTextFileRequest,
|
|
34
|
+
)
|
|
35
|
+
|
|
10
36
|
|
|
11
37
|
if TYPE_CHECKING:
|
|
38
|
+
from collections.abc import Callable
|
|
12
39
|
from types import TracebackType
|
|
13
40
|
|
|
14
41
|
from anyio.abc import ByteReceiveStream, ByteSendStream
|
|
@@ -31,6 +58,7 @@ if TYPE_CHECKING:
|
|
|
31
58
|
ReleaseTerminalResponse,
|
|
32
59
|
RequestPermissionResponse,
|
|
33
60
|
ResumeSessionRequest,
|
|
61
|
+
SetSessionConfigOptionRequest,
|
|
34
62
|
SetSessionModelRequest,
|
|
35
63
|
SetSessionModeRequest,
|
|
36
64
|
TerminalOutputResponse,
|
|
@@ -38,35 +66,6 @@ if TYPE_CHECKING:
|
|
|
38
66
|
WriteTextFileResponse,
|
|
39
67
|
)
|
|
40
68
|
|
|
41
|
-
from acp.agent.protocol import Agent
|
|
42
|
-
from acp.connection import Connection
|
|
43
|
-
from acp.exceptions import RequestError
|
|
44
|
-
from acp.schema import (
|
|
45
|
-
AuthenticateResponse,
|
|
46
|
-
CreateTerminalRequest,
|
|
47
|
-
ForkSessionResponse,
|
|
48
|
-
InitializeResponse,
|
|
49
|
-
KillTerminalCommandRequest,
|
|
50
|
-
ListSessionsResponse,
|
|
51
|
-
LoadSessionResponse,
|
|
52
|
-
NewSessionResponse,
|
|
53
|
-
PromptResponse,
|
|
54
|
-
ReadTextFileRequest,
|
|
55
|
-
ReleaseTerminalRequest,
|
|
56
|
-
RequestPermissionRequest,
|
|
57
|
-
ResumeSessionResponse,
|
|
58
|
-
SessionNotification,
|
|
59
|
-
SetSessionModelResponse,
|
|
60
|
-
SetSessionModeResponse,
|
|
61
|
-
TerminalOutputRequest,
|
|
62
|
-
WaitForTerminalExitRequest,
|
|
63
|
-
WriteTextFileRequest,
|
|
64
|
-
)
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
if TYPE_CHECKING:
|
|
68
|
-
from collections.abc import Callable
|
|
69
|
-
|
|
70
69
|
|
|
71
70
|
class ClientSideConnection(Agent):
|
|
72
71
|
"""Client-side connection.
|
|
@@ -151,6 +150,16 @@ class ClientSideConnection(Agent):
|
|
|
151
150
|
payload = resp if isinstance(resp, dict) else {}
|
|
152
151
|
return SetSessionModelResponse.model_validate(payload)
|
|
153
152
|
|
|
153
|
+
async def set_session_config_option(
|
|
154
|
+
self, params: SetSessionConfigOptionRequest
|
|
155
|
+
) -> SetSessionConfigOptionResponse:
|
|
156
|
+
dct = params.model_dump(
|
|
157
|
+
mode="json", by_alias=True, exclude_none=True, exclude_defaults=True
|
|
158
|
+
)
|
|
159
|
+
resp = await self._conn.send_request("session/set_config_option", dct)
|
|
160
|
+
payload = resp if isinstance(resp, dict) else {}
|
|
161
|
+
return SetSessionConfigOptionResponse.model_validate(payload)
|
|
162
|
+
|
|
154
163
|
async def authenticate(self, params: AuthenticateRequest) -> AuthenticateResponse:
|
|
155
164
|
dct = params.model_dump(
|
|
156
165
|
mode="json", by_alias=True, exclude_none=True, exclude_defaults=True
|
|
@@ -134,11 +134,11 @@ class ACPNotifications:
|
|
|
134
134
|
async def tool_call(
|
|
135
135
|
self,
|
|
136
136
|
tool_name: str,
|
|
137
|
+
tool_call_id: str,
|
|
137
138
|
*,
|
|
138
139
|
tool_input: dict[str, Any],
|
|
139
140
|
tool_output: Any,
|
|
140
141
|
status: ToolCallStatus = "completed",
|
|
141
|
-
tool_call_id: str | None = None,
|
|
142
142
|
) -> None:
|
|
143
143
|
"""Send tool execution as ACP tool call update.
|
|
144
144
|
|
|
@@ -176,11 +176,10 @@ class ACPNotifications:
|
|
|
176
176
|
|
|
177
177
|
# Generate a descriptive title from tool name and inputs
|
|
178
178
|
title = generate_tool_title(tool_name, tool_input)
|
|
179
|
-
|
|
180
179
|
# Use appropriate notification type based on status
|
|
181
180
|
if status == "pending":
|
|
182
181
|
await self.tool_call_start(
|
|
183
|
-
tool_call_id=tool_call_id
|
|
182
|
+
tool_call_id=tool_call_id,
|
|
184
183
|
title=title,
|
|
185
184
|
kind=infer_tool_kind(tool_name),
|
|
186
185
|
locations=locations or None,
|
|
@@ -190,7 +189,7 @@ class ACPNotifications:
|
|
|
190
189
|
else:
|
|
191
190
|
# For in_progress, completed, and failed statuses
|
|
192
191
|
await self.tool_call_progress(
|
|
193
|
-
tool_call_id=tool_call_id
|
|
192
|
+
tool_call_id=tool_call_id,
|
|
194
193
|
title=title,
|
|
195
194
|
status=status,
|
|
196
195
|
locations=locations or None,
|
|
@@ -607,36 +606,24 @@ class ACPNotifications:
|
|
|
607
606
|
match block:
|
|
608
607
|
case TextContentBlock(text=text):
|
|
609
608
|
await self.send_user_message(text)
|
|
610
|
-
case ImageContentBlock() as img_block:
|
|
609
|
+
case ImageContentBlock(annotations=annots) as img_block:
|
|
611
610
|
await self.send_user_image(
|
|
612
611
|
data=img_block.data,
|
|
613
612
|
mime_type=img_block.mime_type,
|
|
614
613
|
uri=img_block.uri,
|
|
615
|
-
audience=
|
|
616
|
-
if
|
|
617
|
-
else None,
|
|
618
|
-
last_modified=img_block.annotations.last_modified
|
|
619
|
-
if img_block.annotations
|
|
620
|
-
else None,
|
|
621
|
-
priority=img_block.annotations.priority
|
|
622
|
-
if img_block.annotations
|
|
623
|
-
else None,
|
|
614
|
+
audience=annots.audience if annots else None,
|
|
615
|
+
last_modified=annots.last_modified if annots else None,
|
|
616
|
+
priority=annots.priority if annots else None,
|
|
624
617
|
)
|
|
625
|
-
case AudioContentBlock() as audio_block:
|
|
618
|
+
case AudioContentBlock(annotations=annots) as audio_block:
|
|
626
619
|
await self.send_user_audio(
|
|
627
620
|
data=audio_block.data,
|
|
628
621
|
mime_type=audio_block.mime_type,
|
|
629
|
-
audience=
|
|
630
|
-
if
|
|
631
|
-
else None,
|
|
632
|
-
last_modified=audio_block.annotations.last_modified
|
|
633
|
-
if audio_block.annotations
|
|
634
|
-
else None,
|
|
635
|
-
priority=audio_block.annotations.priority
|
|
636
|
-
if audio_block.annotations
|
|
637
|
-
else None,
|
|
622
|
+
audience=annots.audience if annots else None,
|
|
623
|
+
last_modified=annots.last_modified if annots else None,
|
|
624
|
+
priority=annots.priority if annots else None,
|
|
638
625
|
)
|
|
639
|
-
case ResourceContentBlock() as resource_block:
|
|
626
|
+
case ResourceContentBlock(annotations=annots) as resource_block:
|
|
640
627
|
await self.send_user_resource(
|
|
641
628
|
uri=resource_block.uri,
|
|
642
629
|
name=resource_block.name,
|
|
@@ -644,15 +631,9 @@ class ACPNotifications:
|
|
|
644
631
|
mime_type=resource_block.mime_type,
|
|
645
632
|
size=resource_block.size,
|
|
646
633
|
title=resource_block.title,
|
|
647
|
-
audience=
|
|
648
|
-
if
|
|
649
|
-
else None,
|
|
650
|
-
last_modified=resource_block.annotations.last_modified
|
|
651
|
-
if resource_block.annotations
|
|
652
|
-
else None,
|
|
653
|
-
priority=resource_block.annotations.priority
|
|
654
|
-
if resource_block.annotations
|
|
655
|
-
else None,
|
|
634
|
+
audience=annots.audience if annots else None,
|
|
635
|
+
last_modified=annots.last_modified if annots else None,
|
|
636
|
+
priority=annots.priority if annots else None,
|
|
656
637
|
)
|
|
657
638
|
case EmbeddedResourceContentBlock() as embedded_block:
|
|
658
639
|
# Handle embedded resources with proper
|
|
@@ -678,14 +659,12 @@ class ACPNotifications:
|
|
|
678
659
|
tool_input = self._tool_call_inputs.get(tool_call_id, {})
|
|
679
660
|
await self.tool_call(
|
|
680
661
|
tool_name=tool_name,
|
|
662
|
+
tool_call_id=tool_call_id,
|
|
681
663
|
tool_input=tool_input,
|
|
682
664
|
tool_output=converted_content,
|
|
683
665
|
status="completed",
|
|
684
|
-
tool_call_id=tool_call_id,
|
|
685
666
|
)
|
|
686
|
-
# Clean up stored input
|
|
687
667
|
self._tool_call_inputs.pop(tool_call_id, None)
|
|
688
|
-
|
|
689
668
|
case _:
|
|
690
669
|
typ = type(part).__name__
|
|
691
670
|
self.log.debug("Unhandled request part type", part_type=typ)
|
|
@@ -754,16 +733,6 @@ class ACPNotifications:
|
|
|
754
733
|
notification = SessionNotification(session_id=self.id, update=update)
|
|
755
734
|
await self.client.session_update(notification) # pyright: ignore[reportArgumentType] # ty: ignore[invalid-argument-type]
|
|
756
735
|
|
|
757
|
-
# async def update_session_model(self, model_id: str) -> None:
|
|
758
|
-
# """Send a session model update notification.
|
|
759
|
-
|
|
760
|
-
# Args:
|
|
761
|
-
# model_id: Unique identifier for the model
|
|
762
|
-
# """
|
|
763
|
-
# update = CurrentModelUpdate(current_model_id=model_id)
|
|
764
|
-
# notification = SessionNotification(session_id=self.id, update=update)
|
|
765
|
-
# await self.client.session_update(notification)
|
|
766
|
-
|
|
767
736
|
async def send_agent_audio(
|
|
768
737
|
self,
|
|
769
738
|
data: str | bytes,
|
|
@@ -9,6 +9,7 @@ from acp.schema.base import Response
|
|
|
9
9
|
from acp.schema.capabilities import AgentCapabilities
|
|
10
10
|
from acp.schema.common import AuthMethod, Implementation # noqa: TC001
|
|
11
11
|
from acp.schema.session_state import ( # noqa: TC001
|
|
12
|
+
SessionConfigOption,
|
|
12
13
|
SessionInfo,
|
|
13
14
|
SessionModelState,
|
|
14
15
|
SessionModeState,
|
|
@@ -58,6 +59,14 @@ class NewSessionResponse(Response):
|
|
|
58
59
|
See protocol docs: [Session Modes](https://agentclientprotocol.com/protocol/session-modes)
|
|
59
60
|
"""
|
|
60
61
|
|
|
62
|
+
config_options: Sequence[SessionConfigOption] | None = None
|
|
63
|
+
"""**UNSTABLE**
|
|
64
|
+
|
|
65
|
+
Configuration options for this session.
|
|
66
|
+
|
|
67
|
+
See RFD: Session Config Options
|
|
68
|
+
"""
|
|
69
|
+
|
|
61
70
|
session_id: str
|
|
62
71
|
"""Unique identifier for the created session.
|
|
63
72
|
|
|
@@ -135,6 +144,9 @@ class SetSessionModeResponse(Response):
|
|
|
135
144
|
class SetSessionConfigOptionResponse(Response):
|
|
136
145
|
"""Response to `session/set_config_option` method."""
|
|
137
146
|
|
|
147
|
+
config_options: Sequence[SessionConfigOption] = []
|
|
148
|
+
"""The full list of config options with updated values."""
|
|
149
|
+
|
|
138
150
|
|
|
139
151
|
class PromptResponse(Response):
|
|
140
152
|
"""Response from processing a user prompt.
|