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.
Files changed (547) hide show
  1. {agentpool-2.2.4 → agentpool-2.3.2}/PKG-INFO +5 -3
  2. {agentpool-2.2.4 → agentpool-2.3.2}/README.md +2 -2
  3. {agentpool-2.2.4 → agentpool-2.3.2}/pyproject.toml +3 -2
  4. {agentpool-2.2.4 → agentpool-2.3.2}/src/acp/acp_requests.py +17 -75
  5. {agentpool-2.2.4 → agentpool-2.3.2}/src/acp/agent/connection.py +8 -0
  6. {agentpool-2.2.4 → agentpool-2.3.2}/src/acp/agent/implementations/debug_server/debug_server.py +4 -0
  7. {agentpool-2.2.4 → agentpool-2.3.2}/src/acp/agent/protocol.py +6 -0
  8. {agentpool-2.2.4 → agentpool-2.3.2}/src/acp/client/connection.py +38 -29
  9. {agentpool-2.2.4 → agentpool-2.3.2}/src/acp/notifications.py +16 -47
  10. {agentpool-2.2.4 → agentpool-2.3.2}/src/acp/schema/agent_responses.py +12 -0
  11. {agentpool-2.2.4 → agentpool-2.3.2}/src/acp/schema/session_state.py +43 -30
  12. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/__init__.py +2 -0
  13. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/agents/acp_agent/acp_agent.py +177 -106
  14. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/agents/acp_agent/acp_converters.py +2 -2
  15. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/agents/acp_agent/client_handler.py +31 -21
  16. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/agents/agent.py +334 -75
  17. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/agents/agui_agent/agui_agent.py +88 -11
  18. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/agents/base_agent.py +35 -16
  19. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/agents/claude_code_agent/claude_code_agent.py +290 -93
  20. agentpool-2.3.2/src/agentpool/agents/claude_code_agent/usage.py +280 -0
  21. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/agents/events/__init__.py +16 -0
  22. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/agents/events/builtin_handlers.py +65 -0
  23. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/agents/events/event_emitter.py +3 -0
  24. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/agents/events/events.py +24 -2
  25. agentpool-2.3.2/src/agentpool/agents/events/processors.py +254 -0
  26. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/agents/tool_wrapping.py +1 -1
  27. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/common_types.py +4 -9
  28. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/config_resources/acp_assistant.yml +2 -2
  29. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/config_resources/agents.yml +3 -0
  30. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/config_resources/agents_template.yml +1 -0
  31. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/config_resources/claude_code_agent.yml +7 -7
  32. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/config_resources/external_acp_agents.yml +2 -1
  33. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/delegation/base_team.py +2 -2
  34. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/delegation/pool.py +108 -138
  35. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/delegation/team.py +40 -47
  36. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/delegation/teamrun.py +37 -34
  37. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/mcp_server/client.py +51 -0
  38. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/mcp_server/conversions.py +20 -1
  39. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/mcp_server/manager.py +7 -21
  40. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/mcp_server/tool_bridge.py +3 -3
  41. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/messaging/connection_manager.py +4 -4
  42. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/messaging/message_container.py +6 -30
  43. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/messaging/message_history.py +1 -1
  44. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/messaging/messagenode.py +48 -10
  45. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/messaging/messages.py +2 -26
  46. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/messaging/processing.py +9 -21
  47. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/models/__init__.py +1 -1
  48. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/models/acp_agents/mcp_capable.py +45 -14
  49. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/models/acp_agents/non_mcp.py +0 -23
  50. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/models/agents.py +64 -64
  51. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/models/agui_agents.py +1 -1
  52. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/models/claude_code_agents.py +64 -13
  53. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/models/file_parsing.py +0 -1
  54. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/models/manifest.py +67 -47
  55. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/resource_providers/__init__.py +2 -0
  56. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/resource_providers/aggregating.py +4 -2
  57. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/resource_providers/base.py +3 -3
  58. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/resource_providers/codemode/helpers.py +2 -2
  59. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/resource_providers/codemode/provider.py +3 -1
  60. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/resource_providers/codemode/remote_provider.py +1 -1
  61. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/resource_providers/filtering.py +3 -1
  62. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/resource_providers/mcp_provider.py +62 -3
  63. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/resource_providers/plan_provider.py +88 -14
  64. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/resource_providers/pool.py +5 -3
  65. agentpool-2.3.2/src/agentpool/resource_providers/resource_info.py +111 -0
  66. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/resource_providers/static.py +2 -2
  67. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/sessions/manager.py +1 -2
  68. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/sessions/models.py +0 -7
  69. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/sessions/session.py +11 -46
  70. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/storage/manager.py +258 -37
  71. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/talk/talk.py +3 -4
  72. agentpool-2.3.2/src/agentpool/tool_impls/__init__.py +6 -0
  73. agentpool-2.3.2/src/agentpool/tool_impls/agent_cli/__init__.py +42 -0
  74. agentpool-2.3.2/src/agentpool/tool_impls/agent_cli/tool.py +95 -0
  75. agentpool-2.3.2/src/agentpool/tool_impls/ask_user/__init__.py +42 -0
  76. agentpool-2.3.2/src/agentpool/tool_impls/ask_user/tool.py +60 -0
  77. agentpool-2.3.2/src/agentpool/tool_impls/bash/__init__.py +64 -0
  78. agentpool-2.3.2/src/agentpool/tool_impls/bash/helpers.py +35 -0
  79. agentpool-2.3.2/src/agentpool/tool_impls/bash/tool.py +135 -0
  80. agentpool-2.3.2/src/agentpool/tool_impls/execute_code/__init__.py +55 -0
  81. agentpool-2.3.2/src/agentpool/tool_impls/execute_code/tool.py +118 -0
  82. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/tools/__init__.py +2 -1
  83. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/tools/base.py +75 -33
  84. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/tools/manager.py +43 -0
  85. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/utils/streams.py +20 -95
  86. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_cli/create.py +1 -1
  87. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_commands/agents.py +1 -1
  88. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_config/__init__.py +30 -2
  89. agentpool-2.3.2/src/agentpool_config/agentpool_tools.py +166 -0
  90. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_config/event_handlers.py +42 -0
  91. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_config/forward_targets.py +1 -4
  92. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_config/jinja.py +3 -3
  93. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_config/observability.py +44 -0
  94. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_config/session.py +0 -3
  95. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_config/storage.py +38 -39
  96. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_config/tools.py +11 -28
  97. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_config/toolsets.py +17 -85
  98. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_server/acp_server/acp_agent.py +114 -9
  99. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_server/acp_server/acp_tools.py +2 -2
  100. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_server/acp_server/commands/acp_commands.py +46 -11
  101. agentpool-2.3.2/src/agentpool_server/acp_server/event_converter.py +647 -0
  102. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_server/acp_server/input_provider.py +24 -22
  103. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_server/acp_server/session.py +21 -362
  104. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_server/acp_server/session_manager.py +1 -1
  105. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_server/opencode_server/ENDPOINTS.md +2 -1
  106. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_server/opencode_server/converters.py +125 -14
  107. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_server/opencode_server/models/__init__.py +2 -0
  108. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_server/opencode_server/models/events.py +29 -31
  109. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_server/opencode_server/models/mcp.py +19 -0
  110. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_server/opencode_server/models/parts.py +139 -1
  111. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_server/opencode_server/routes/agent_routes.py +31 -0
  112. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_server/opencode_server/routes/session_routes.py +16 -5
  113. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_storage/base.py +81 -2
  114. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_storage/claude_provider.py +171 -1
  115. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_storage/file_provider.py +149 -15
  116. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_storage/memory_provider.py +131 -12
  117. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_storage/opencode_provider.py +397 -6
  118. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_storage/session_store.py +0 -2
  119. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_storage/sql_provider/sql_provider.py +135 -2
  120. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_storage/sql_provider/utils.py +2 -12
  121. agentpool-2.3.2/src/agentpool_storage/zed_provider.py +884 -0
  122. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_toolsets/__init__.py +0 -2
  123. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_toolsets/builtin/__init__.py +2 -4
  124. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_toolsets/builtin/code.py +4 -4
  125. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_toolsets/builtin/execution_environment.py +14 -163
  126. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_toolsets/builtin/skills.py +0 -77
  127. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_toolsets/builtin/subagent_tools.py +62 -50
  128. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_toolsets/builtin/workers.py +3 -1
  129. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_toolsets/composio_toolset.py +2 -2
  130. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_toolsets/entry_points.py +3 -1
  131. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_toolsets/fsspec_toolset/toolset.py +8 -7
  132. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_toolsets/mcp_discovery/toolset.py +3 -1
  133. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_toolsets/mcp_run_toolset.py +2 -1
  134. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_toolsets/notifications.py +2 -2
  135. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_toolsets/openapi.py +3 -1
  136. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_toolsets/search_toolset.py +3 -1
  137. agentpool-2.2.4/src/agentpool_config/resources.py +0 -33
  138. agentpool-2.2.4/src/agentpool_storage/text_log_provider.py +0 -276
  139. agentpool-2.2.4/src/agentpool_toolsets/builtin/chain.py +0 -288
  140. agentpool-2.2.4/src/agentpool_toolsets/builtin/user_interaction.py +0 -52
  141. agentpool-2.2.4/src/agentpool_toolsets/semantic_memory_toolset.py +0 -536
  142. {agentpool-2.2.4 → agentpool-2.3.2}/LICENSE +0 -0
  143. {agentpool-2.2.4 → agentpool-2.3.2}/src/acp/README.md +0 -0
  144. {agentpool-2.2.4 → agentpool-2.3.2}/src/acp/__init__.py +0 -0
  145. {agentpool-2.2.4 → agentpool-2.3.2}/src/acp/__main__.py +0 -0
  146. {agentpool-2.2.4 → agentpool-2.3.2}/src/acp/agent/__init__.py +0 -0
  147. {agentpool-2.2.4 → agentpool-2.3.2}/src/acp/agent/implementations/__init__.py +0 -0
  148. {agentpool-2.2.4 → agentpool-2.3.2}/src/acp/agent/implementations/debug_server/__init__.py +0 -0
  149. {agentpool-2.2.4 → agentpool-2.3.2}/src/acp/agent/implementations/debug_server/cli.py +0 -0
  150. {agentpool-2.2.4 → agentpool-2.3.2}/src/acp/agent/implementations/debug_server/debug.html +0 -0
  151. {agentpool-2.2.4 → agentpool-2.3.2}/src/acp/agent/implementations/testing.py +0 -0
  152. {agentpool-2.2.4 → agentpool-2.3.2}/src/acp/bridge/README.md +0 -0
  153. {agentpool-2.2.4 → agentpool-2.3.2}/src/acp/bridge/__init__.py +0 -0
  154. {agentpool-2.2.4 → agentpool-2.3.2}/src/acp/bridge/__main__.py +0 -0
  155. {agentpool-2.2.4 → agentpool-2.3.2}/src/acp/bridge/bridge.py +0 -0
  156. {agentpool-2.2.4 → agentpool-2.3.2}/src/acp/bridge/py.typed +0 -0
  157. {agentpool-2.2.4 → agentpool-2.3.2}/src/acp/bridge/settings.py +0 -0
  158. {agentpool-2.2.4 → agentpool-2.3.2}/src/acp/bridge/ws_server.py +0 -0
  159. {agentpool-2.2.4 → agentpool-2.3.2}/src/acp/bridge/ws_server_cli.py +0 -0
  160. {agentpool-2.2.4 → agentpool-2.3.2}/src/acp/client/__init__.py +0 -0
  161. {agentpool-2.2.4 → agentpool-2.3.2}/src/acp/client/implementations/__init__.py +0 -0
  162. {agentpool-2.2.4 → agentpool-2.3.2}/src/acp/client/implementations/default_client.py +0 -0
  163. {agentpool-2.2.4 → agentpool-2.3.2}/src/acp/client/implementations/headless_client.py +0 -0
  164. {agentpool-2.2.4 → agentpool-2.3.2}/src/acp/client/implementations/noop_client.py +0 -0
  165. {agentpool-2.2.4 → agentpool-2.3.2}/src/acp/client/protocol.py +0 -0
  166. {agentpool-2.2.4 → agentpool-2.3.2}/src/acp/connection.py +0 -0
  167. {agentpool-2.2.4 → agentpool-2.3.2}/src/acp/exceptions.py +0 -0
  168. {agentpool-2.2.4 → agentpool-2.3.2}/src/acp/filesystem.py +0 -0
  169. {agentpool-2.2.4 → agentpool-2.3.2}/src/acp/py.typed +0 -0
  170. {agentpool-2.2.4 → agentpool-2.3.2}/src/acp/schema/__init__.py +0 -0
  171. {agentpool-2.2.4 → agentpool-2.3.2}/src/acp/schema/agent_plan.py +0 -0
  172. {agentpool-2.2.4 → agentpool-2.3.2}/src/acp/schema/agent_requests.py +0 -0
  173. {agentpool-2.2.4 → agentpool-2.3.2}/src/acp/schema/base.py +0 -0
  174. {agentpool-2.2.4 → agentpool-2.3.2}/src/acp/schema/capabilities.py +0 -0
  175. {agentpool-2.2.4 → agentpool-2.3.2}/src/acp/schema/client_requests.py +0 -0
  176. {agentpool-2.2.4 → agentpool-2.3.2}/src/acp/schema/client_responses.py +0 -0
  177. {agentpool-2.2.4 → agentpool-2.3.2}/src/acp/schema/common.py +0 -0
  178. {agentpool-2.2.4 → agentpool-2.3.2}/src/acp/schema/content_blocks.py +0 -0
  179. {agentpool-2.2.4 → agentpool-2.3.2}/src/acp/schema/mcp.py +0 -0
  180. {agentpool-2.2.4 → agentpool-2.3.2}/src/acp/schema/messages.py +0 -0
  181. {agentpool-2.2.4 → agentpool-2.3.2}/src/acp/schema/notifications.py +0 -0
  182. {agentpool-2.2.4 → agentpool-2.3.2}/src/acp/schema/protocol_stuff.md +0 -0
  183. {agentpool-2.2.4 → agentpool-2.3.2}/src/acp/schema/session_updates.py +0 -0
  184. {agentpool-2.2.4 → agentpool-2.3.2}/src/acp/schema/slash_commands.py +0 -0
  185. {agentpool-2.2.4 → agentpool-2.3.2}/src/acp/schema/terminal.py +0 -0
  186. {agentpool-2.2.4 → agentpool-2.3.2}/src/acp/schema/tool_call.py +0 -0
  187. {agentpool-2.2.4 → agentpool-2.3.2}/src/acp/stdio.py +0 -0
  188. {agentpool-2.2.4 → agentpool-2.3.2}/src/acp/task/__init__.py +0 -0
  189. {agentpool-2.2.4 → agentpool-2.3.2}/src/acp/task/debug.py +0 -0
  190. {agentpool-2.2.4 → agentpool-2.3.2}/src/acp/task/dispatcher.py +0 -0
  191. {agentpool-2.2.4 → agentpool-2.3.2}/src/acp/task/queue.py +0 -0
  192. {agentpool-2.2.4 → agentpool-2.3.2}/src/acp/task/sender.py +0 -0
  193. {agentpool-2.2.4 → agentpool-2.3.2}/src/acp/task/state.py +0 -0
  194. {agentpool-2.2.4 → agentpool-2.3.2}/src/acp/task/supervisor.py +0 -0
  195. {agentpool-2.2.4 → agentpool-2.3.2}/src/acp/terminal_handle.py +0 -0
  196. {agentpool-2.2.4 → agentpool-2.3.2}/src/acp/tool_call_reporter.py +0 -0
  197. {agentpool-2.2.4 → agentpool-2.3.2}/src/acp/tool_call_state.py +0 -0
  198. {agentpool-2.2.4 → agentpool-2.3.2}/src/acp/transports.py +0 -0
  199. {agentpool-2.2.4 → agentpool-2.3.2}/src/acp/utils.py +0 -0
  200. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/__main__.py +0 -0
  201. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/agents/__init__.py +0 -0
  202. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/agents/acp_agent/__init__.py +0 -0
  203. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/agents/acp_agent/session_state.py +0 -0
  204. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/agents/agui_agent/__init__.py +0 -0
  205. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/agents/agui_agent/agui_converters.py +0 -0
  206. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/agents/agui_agent/chunk_transformer.py +0 -0
  207. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/agents/agui_agent/event_types.py +0 -0
  208. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/agents/agui_agent/helpers.py +0 -0
  209. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/agents/architect.py +0 -0
  210. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/agents/claude_code_agent/__init__.py +0 -0
  211. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/agents/claude_code_agent/converters.py +0 -0
  212. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/agents/claude_code_agent/history.py +0 -0
  213. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/agents/context.py +0 -0
  214. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/agents/events/tts_handlers.py +0 -0
  215. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/agents/interactions.py +0 -0
  216. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/agents/modes.py +0 -0
  217. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/agents/slashed_agent.py +0 -0
  218. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/agents/sys_prompts.py +0 -0
  219. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/agents/tool_call_accumulator.py +0 -0
  220. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/base_provider.py +0 -0
  221. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/config_resources/__init__.py +0 -0
  222. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/config_resources/agui_test.yml +0 -0
  223. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/config_resources/claude_style_subagent.md +0 -0
  224. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/config_resources/opencode_style_subagent.md +0 -0
  225. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/config_resources/tts_test_agents.yml +0 -0
  226. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/delegation/__init__.py +0 -0
  227. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/delegation/message_flow_tracker.py +0 -0
  228. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/diagnostics/__init__.py +0 -0
  229. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/diagnostics/lsp_manager.py +0 -0
  230. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/diagnostics/lsp_proxy.py +0 -0
  231. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/diagnostics/lsp_proxy_script.py +0 -0
  232. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/diagnostics/models.py +0 -0
  233. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/docs/__init__.py +0 -0
  234. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/docs/gen_examples.py +0 -0
  235. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/docs/utils.py +0 -0
  236. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/functional/__init__.py +0 -0
  237. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/functional/py.typed +0 -0
  238. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/functional/run.py +0 -0
  239. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/functional/structure.py +0 -0
  240. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/hooks/__init__.py +0 -0
  241. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/hooks/agent_hooks.py +0 -0
  242. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/hooks/base.py +0 -0
  243. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/hooks/callable.py +0 -0
  244. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/hooks/command.py +0 -0
  245. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/hooks/prompt.py +0 -0
  246. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/jinja_filters.py +0 -0
  247. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/log.py +0 -0
  248. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/mcp_server/__init__.py +0 -0
  249. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/mcp_server/constants.py +0 -0
  250. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/mcp_server/helpers.py +0 -0
  251. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/mcp_server/message_handler.py +0 -0
  252. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/mcp_server/registries/__init__.py +0 -0
  253. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/mcp_server/registries/official_registry_client.py +0 -0
  254. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/mcp_server/registries/pulsemcp_client.py +0 -0
  255. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/messaging/__init__.py +0 -0
  256. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/messaging/compaction.py +0 -0
  257. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/messaging/context.py +0 -0
  258. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/messaging/event_manager.py +0 -0
  259. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/messaging/events.py +0 -0
  260. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/mime_utils.py +0 -0
  261. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/models/acp_agents/__init__.py +0 -0
  262. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/models/acp_agents/base.py +0 -0
  263. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/models/file_agents.py +0 -0
  264. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/observability/__init__.py +0 -0
  265. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/observability/observability_registry.py +0 -0
  266. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/prompts/__init__.py +0 -0
  267. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/prompts/base.py +0 -0
  268. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/prompts/builtin_provider.py +0 -0
  269. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/prompts/conversion_manager.py +0 -0
  270. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/prompts/convert.py +0 -0
  271. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/prompts/manager.py +0 -0
  272. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/prompts/parts/zed.md +0 -0
  273. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/prompts/prompts.py +0 -0
  274. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/py.typed +0 -0
  275. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/queries/tree-sitter-language-pack/README.md +0 -0
  276. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/queries/tree-sitter-language-pack/arduino-tags.scm +0 -0
  277. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/queries/tree-sitter-language-pack/c-tags.scm +0 -0
  278. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/queries/tree-sitter-language-pack/chatito-tags.scm +0 -0
  279. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/queries/tree-sitter-language-pack/clojure-tags.scm +0 -0
  280. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/queries/tree-sitter-language-pack/commonlisp-tags.scm +0 -0
  281. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/queries/tree-sitter-language-pack/cpp-tags.scm +0 -0
  282. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/queries/tree-sitter-language-pack/csharp-tags.scm +0 -0
  283. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/queries/tree-sitter-language-pack/d-tags.scm +0 -0
  284. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/queries/tree-sitter-language-pack/dart-tags.scm +0 -0
  285. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/queries/tree-sitter-language-pack/elisp-tags.scm +0 -0
  286. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/queries/tree-sitter-language-pack/elixir-tags.scm +0 -0
  287. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/queries/tree-sitter-language-pack/elm-tags.scm +0 -0
  288. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/queries/tree-sitter-language-pack/gleam-tags.scm +0 -0
  289. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/queries/tree-sitter-language-pack/go-tags.scm +0 -0
  290. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/queries/tree-sitter-language-pack/java-tags.scm +0 -0
  291. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/queries/tree-sitter-language-pack/javascript-tags.scm +0 -0
  292. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/queries/tree-sitter-language-pack/lua-tags.scm +0 -0
  293. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/queries/tree-sitter-language-pack/matlab-tags.scm +0 -0
  294. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/queries/tree-sitter-language-pack/ocaml-tags.scm +0 -0
  295. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/queries/tree-sitter-language-pack/ocaml_interface-tags.scm +0 -0
  296. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/queries/tree-sitter-language-pack/pony-tags.scm +0 -0
  297. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/queries/tree-sitter-language-pack/properties-tags.scm +0 -0
  298. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/queries/tree-sitter-language-pack/python-tags.scm +0 -0
  299. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/queries/tree-sitter-language-pack/r-tags.scm +0 -0
  300. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/queries/tree-sitter-language-pack/racket-tags.scm +0 -0
  301. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/queries/tree-sitter-language-pack/ruby-tags.scm +0 -0
  302. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/queries/tree-sitter-language-pack/rust-tags.scm +0 -0
  303. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/queries/tree-sitter-language-pack/solidity-tags.scm +0 -0
  304. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/queries/tree-sitter-language-pack/swift-tags.scm +0 -0
  305. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/queries/tree-sitter-language-pack/udev-tags.scm +0 -0
  306. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/queries/tree-sitter-languages/README.md +0 -0
  307. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/queries/tree-sitter-languages/c-tags.scm +0 -0
  308. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/queries/tree-sitter-languages/c_sharp-tags.scm +0 -0
  309. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/queries/tree-sitter-languages/cpp-tags.scm +0 -0
  310. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/queries/tree-sitter-languages/dart-tags.scm +0 -0
  311. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/queries/tree-sitter-languages/elisp-tags.scm +0 -0
  312. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/queries/tree-sitter-languages/elixir-tags.scm +0 -0
  313. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/queries/tree-sitter-languages/elm-tags.scm +0 -0
  314. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/queries/tree-sitter-languages/fortran-tags.scm +0 -0
  315. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/queries/tree-sitter-languages/go-tags.scm +0 -0
  316. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/queries/tree-sitter-languages/haskell-tags.scm +0 -0
  317. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/queries/tree-sitter-languages/hcl-tags.scm +0 -0
  318. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/queries/tree-sitter-languages/java-tags.scm +0 -0
  319. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/queries/tree-sitter-languages/javascript-tags.scm +0 -0
  320. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/queries/tree-sitter-languages/julia-tags.scm +0 -0
  321. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/queries/tree-sitter-languages/kotlin-tags.scm +0 -0
  322. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/queries/tree-sitter-languages/matlab-tags.scm +0 -0
  323. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/queries/tree-sitter-languages/ocaml-tags.scm +0 -0
  324. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/queries/tree-sitter-languages/ocaml_interface-tags.scm +0 -0
  325. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/queries/tree-sitter-languages/php-tags.scm +0 -0
  326. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/queries/tree-sitter-languages/python-tags.scm +0 -0
  327. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/queries/tree-sitter-languages/ql-tags.scm +0 -0
  328. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/queries/tree-sitter-languages/ruby-tags.scm +0 -0
  329. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/queries/tree-sitter-languages/rust-tags.scm +0 -0
  330. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/queries/tree-sitter-languages/scala-tags.scm +0 -0
  331. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/queries/tree-sitter-languages/typescript-tags.scm +0 -0
  332. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/queries/tree-sitter-languages/zig-tags.scm +0 -0
  333. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/repomap.py +0 -0
  334. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/resource_providers/codemode/__init__.py +0 -0
  335. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/resource_providers/codemode/code_executor.py +0 -0
  336. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/resource_providers/codemode/default_prompt.py +0 -0
  337. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/resource_providers/codemode/progress_executor.py +0 -0
  338. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/resource_providers/codemode/remote_mcp_execution.py +0 -0
  339. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/running/__init__.py +0 -0
  340. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/running/decorators.py +0 -0
  341. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/running/discovery.py +0 -0
  342. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/running/executor.py +0 -0
  343. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/running/injection.py +0 -0
  344. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/running/py.typed +0 -0
  345. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/running/run_nodes.py +0 -0
  346. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/server.py +0 -0
  347. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/sessions/__init__.py +0 -0
  348. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/sessions/store.py +0 -0
  349. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/skills/__init__.py +0 -0
  350. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/skills/manager.py +0 -0
  351. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/skills/registry.py +0 -0
  352. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/skills/skill.py +0 -0
  353. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/storage/__init__.py +0 -0
  354. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/storage/serialization.py +0 -0
  355. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/talk/__init__.py +0 -0
  356. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/talk/registry.py +0 -0
  357. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/talk/stats.py +0 -0
  358. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/tasks/__init__.py +0 -0
  359. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/tasks/exceptions.py +0 -0
  360. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/tasks/registry.py +0 -0
  361. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/testing.py +0 -0
  362. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/text_templates/__init__.py +0 -0
  363. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/text_templates/system_prompt.jinja +0 -0
  364. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/text_templates/tool_call_default.jinja +0 -0
  365. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/text_templates/tool_call_markdown.jinja +0 -0
  366. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/text_templates/tool_call_simple.jinja +0 -0
  367. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/tools/exceptions.py +0 -0
  368. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/tools/tool_call_info.py +0 -0
  369. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/ui/__init__.py +0 -0
  370. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/ui/base.py +0 -0
  371. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/ui/mock_provider.py +0 -0
  372. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/ui/stdlib_provider.py +0 -0
  373. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/utils/__init__.py +0 -0
  374. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/utils/baseregistry.py +0 -0
  375. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/utils/count_tokens.py +0 -0
  376. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/utils/dag.py +0 -0
  377. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/utils/file_watcher.py +0 -0
  378. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/utils/identifiers.py +0 -0
  379. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/utils/importing.py +0 -0
  380. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/utils/inspection.py +0 -0
  381. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/utils/model_capabilities.py +0 -0
  382. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/utils/network.py +0 -0
  383. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/utils/now.py +0 -0
  384. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/utils/parse_time.py +0 -0
  385. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/utils/pydantic_ai_helpers.py +0 -0
  386. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/utils/result_utils.py +0 -0
  387. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/utils/signatures.py +0 -0
  388. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/utils/subprocess_utils.py +0 -0
  389. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/utils/tasks.py +0 -0
  390. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/utils/token_breakdown.py +0 -0
  391. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool/vfs_registry.py +0 -0
  392. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_cli/__init__.py +0 -0
  393. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_cli/__main__.py +0 -0
  394. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_cli/agent.py +0 -0
  395. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_cli/cli_types.py +0 -0
  396. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_cli/common.py +0 -0
  397. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_cli/history.py +0 -0
  398. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_cli/log.py +0 -0
  399. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_cli/py.typed +0 -0
  400. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_cli/run.py +0 -0
  401. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_cli/serve_acp.py +0 -0
  402. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_cli/serve_agui.py +0 -0
  403. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_cli/serve_api.py +0 -0
  404. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_cli/serve_mcp.py +0 -0
  405. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_cli/serve_opencode.py +0 -0
  406. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_cli/serve_vercel.py +0 -0
  407. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_cli/store.py +0 -0
  408. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_cli/task.py +0 -0
  409. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_cli/utils.py +0 -0
  410. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_cli/watch.py +0 -0
  411. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_commands/__init__.py +0 -0
  412. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_commands/base.py +0 -0
  413. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_commands/commands.py +0 -0
  414. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_commands/completers.py +0 -0
  415. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_commands/connections.py +0 -0
  416. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_commands/history.py +0 -0
  417. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_commands/markdown_utils.py +0 -0
  418. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_commands/mcp.py +0 -0
  419. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_commands/models.py +0 -0
  420. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_commands/prompts.py +0 -0
  421. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_commands/py.typed +0 -0
  422. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_commands/read.py +0 -0
  423. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_commands/resources.py +0 -0
  424. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_commands/session.py +0 -0
  425. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_commands/tools.py +0 -0
  426. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_commands/utils.py +0 -0
  427. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_commands/workers.py +0 -0
  428. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_config/builtin_tools.py +0 -0
  429. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_config/commands.py +0 -0
  430. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_config/compaction.py +0 -0
  431. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_config/conditions.py +0 -0
  432. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_config/converters.py +0 -0
  433. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_config/durable.py +0 -0
  434. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_config/events.py +0 -0
  435. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_config/hook_conditions.py +0 -0
  436. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_config/hooks.py +0 -0
  437. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_config/knowledge.py +0 -0
  438. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_config/loaders.py +0 -0
  439. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_config/mcp_server.py +0 -0
  440. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_config/nodes.py +0 -0
  441. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_config/output_types.py +0 -0
  442. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_config/pool_server.py +0 -0
  443. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_config/prompt_hubs.py +0 -0
  444. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_config/prompts.py +0 -0
  445. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_config/py.typed +0 -0
  446. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_config/skills.py +0 -0
  447. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_config/system_prompts.py +0 -0
  448. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_config/task.py +0 -0
  449. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_config/teams.py +0 -0
  450. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_config/workers.py +0 -0
  451. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_prompts/__init__.py +0 -0
  452. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_prompts/braintrust_hub.py +0 -0
  453. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_prompts/fabric.py +0 -0
  454. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_prompts/langfuse_hub.py +0 -0
  455. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_prompts/promptlayer_provider.py +0 -0
  456. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_prompts/py.typed +0 -0
  457. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_server/__init__.py +0 -0
  458. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_server/a2a_server/__init__.py +0 -0
  459. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_server/a2a_server/a2a_types.py +0 -0
  460. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_server/a2a_server/server.py +0 -0
  461. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_server/a2a_server/storage.py +0 -0
  462. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_server/acp_server/__init__.py +0 -0
  463. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_server/acp_server/commands/__init__.py +0 -0
  464. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_server/acp_server/commands/debug_commands.py +0 -0
  465. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_server/acp_server/commands/docs_commands/__init__.py +0 -0
  466. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_server/acp_server/commands/docs_commands/fetch_repo.py +0 -0
  467. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_server/acp_server/commands/docs_commands/get_schema.py +0 -0
  468. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_server/acp_server/commands/docs_commands/get_source.py +0 -0
  469. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_server/acp_server/commands/docs_commands/git_diff.py +0 -0
  470. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_server/acp_server/commands/docs_commands/helpers.py +0 -0
  471. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_server/acp_server/commands/docs_commands/url_to_markdown.py +0 -0
  472. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_server/acp_server/commands/spawn.py +0 -0
  473. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_server/acp_server/converters.py +0 -0
  474. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_server/acp_server/server.py +0 -0
  475. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_server/acp_server/syntax_detection.py +0 -0
  476. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_server/acp_server/zed_tools.md +0 -0
  477. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_server/aggregating_server.py +0 -0
  478. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_server/agui_server/__init__.py +0 -0
  479. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_server/agui_server/server.py +0 -0
  480. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_server/base.py +0 -0
  481. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_server/http_server.py +0 -0
  482. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_server/mcp_server/__init__.py +0 -0
  483. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_server/mcp_server/server.py +0 -0
  484. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_server/mcp_server/zed_wrapper.py +0 -0
  485. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_server/openai_api_server/__init__.py +0 -0
  486. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_server/openai_api_server/completions/__init__.py +0 -0
  487. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_server/openai_api_server/completions/helpers.py +0 -0
  488. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_server/openai_api_server/completions/models.py +0 -0
  489. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_server/openai_api_server/responses/__init__.py +0 -0
  490. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_server/openai_api_server/responses/helpers.py +0 -0
  491. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_server/openai_api_server/responses/models.py +0 -0
  492. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_server/openai_api_server/server.py +0 -0
  493. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_server/opencode_server/.rules +0 -0
  494. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_server/opencode_server/__init__.py +0 -0
  495. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_server/opencode_server/command_validation.py +0 -0
  496. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_server/opencode_server/dependencies.py +0 -0
  497. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_server/opencode_server/input_provider.py +0 -0
  498. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_server/opencode_server/models/agent.py +0 -0
  499. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_server/opencode_server/models/app.py +0 -0
  500. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_server/opencode_server/models/base.py +0 -0
  501. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_server/opencode_server/models/common.py +0 -0
  502. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_server/opencode_server/models/config.py +0 -0
  503. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_server/opencode_server/models/file.py +0 -0
  504. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_server/opencode_server/models/message.py +0 -0
  505. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_server/opencode_server/models/provider.py +0 -0
  506. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_server/opencode_server/models/pty.py +0 -0
  507. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_server/opencode_server/models/session.py +0 -0
  508. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_server/opencode_server/routes/__init__.py +0 -0
  509. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_server/opencode_server/routes/app_routes.py +0 -0
  510. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_server/opencode_server/routes/config_routes.py +0 -0
  511. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_server/opencode_server/routes/file_routes.py +0 -0
  512. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_server/opencode_server/routes/global_routes.py +0 -0
  513. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_server/opencode_server/routes/lsp_routes.py +0 -0
  514. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_server/opencode_server/routes/message_routes.py +0 -0
  515. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_server/opencode_server/routes/pty_routes.py +0 -0
  516. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_server/opencode_server/routes/tui_routes.py +0 -0
  517. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_server/opencode_server/server.py +0 -0
  518. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_server/opencode_server/state.py +0 -0
  519. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_server/opencode_server/time_utils.py +0 -0
  520. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_server/py.typed +0 -0
  521. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_storage/__init__.py +0 -0
  522. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_storage/formatters.py +0 -0
  523. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_storage/models.py +0 -0
  524. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_storage/project_store.py +0 -0
  525. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_storage/py.typed +0 -0
  526. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_storage/sql_provider/__init__.py +0 -0
  527. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_storage/sql_provider/cli.py +0 -0
  528. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_storage/sql_provider/models.py +0 -0
  529. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_storage/sql_provider/queries.py +0 -0
  530. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_toolsets/builtin/debug.py +0 -0
  531. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_toolsets/builtin/file_edit/__init__.py +0 -0
  532. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_toolsets/builtin/file_edit/file_edit.py +0 -0
  533. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_toolsets/builtin/file_edit/fuzzy_matcher/__init__.py +0 -0
  534. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_toolsets/builtin/file_edit/fuzzy_matcher/example_usage.py +0 -0
  535. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_toolsets/builtin/file_edit/fuzzy_matcher/streaming_fuzzy_matcher.py +0 -0
  536. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_toolsets/config_creation.py +0 -0
  537. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_toolsets/fsspec_toolset/__init__.py +0 -0
  538. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_toolsets/fsspec_toolset/diagnostics.py +0 -0
  539. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_toolsets/fsspec_toolset/grep.py +0 -0
  540. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_toolsets/fsspec_toolset/helpers.py +0 -0
  541. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_toolsets/fsspec_toolset/image_utils.py +0 -0
  542. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_toolsets/fsspec_toolset/streaming_diff_parser.py +0 -0
  543. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_toolsets/mcp_discovery/__init__.py +0 -0
  544. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_toolsets/mcp_discovery/data/mcp_servers.parquet +0 -0
  545. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_toolsets/py.typed +0 -0
  546. {agentpool-2.2.4 → agentpool-2.3.2}/src/agentpool_toolsets/streaming_tools.py +0 -0
  547. {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.4
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
- toolsets:
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
- toolsets:
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
- toolsets:
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
- toolsets:
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.4"
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
- self,
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
- exit_result = await asyncio.wait_for(
233
- self.wait_for_terminal_exit(terminal_id),
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
- option_id="allow-once",
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)
@@ -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 or f"{tool_name}_{hash(str(tool_input))}",
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 or f"{tool_name}_{hash(str(tool_input))}",
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=img_block.annotations.audience
616
- if img_block.annotations
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=audio_block.annotations.audience
630
- if audio_block.annotations
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=resource_block.annotations.audience
648
- if resource_block.annotations
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.