agentpool 2.1.9__py3-none-any.whl → 2.2.3__py3-none-any.whl
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.
- acp/__init__.py +13 -0
- acp/bridge/README.md +15 -2
- acp/bridge/__init__.py +3 -2
- acp/bridge/__main__.py +60 -19
- acp/bridge/ws_server.py +173 -0
- acp/bridge/ws_server_cli.py +89 -0
- acp/notifications.py +2 -1
- acp/stdio.py +39 -9
- acp/transports.py +362 -2
- acp/utils.py +15 -2
- agentpool/__init__.py +4 -1
- agentpool/agents/__init__.py +2 -0
- agentpool/agents/acp_agent/acp_agent.py +203 -88
- agentpool/agents/acp_agent/acp_converters.py +46 -21
- agentpool/agents/acp_agent/client_handler.py +157 -3
- agentpool/agents/acp_agent/session_state.py +4 -1
- agentpool/agents/agent.py +314 -107
- agentpool/agents/agui_agent/__init__.py +0 -2
- agentpool/agents/agui_agent/agui_agent.py +90 -21
- agentpool/agents/agui_agent/agui_converters.py +0 -131
- agentpool/agents/base_agent.py +163 -1
- agentpool/agents/claude_code_agent/claude_code_agent.py +626 -179
- agentpool/agents/claude_code_agent/converters.py +71 -3
- agentpool/agents/claude_code_agent/history.py +474 -0
- agentpool/agents/context.py +40 -0
- agentpool/agents/events/__init__.py +2 -0
- agentpool/agents/events/builtin_handlers.py +2 -1
- agentpool/agents/events/event_emitter.py +29 -2
- agentpool/agents/events/events.py +20 -0
- agentpool/agents/modes.py +54 -0
- agentpool/agents/tool_call_accumulator.py +213 -0
- agentpool/common_types.py +21 -0
- agentpool/config_resources/__init__.py +38 -1
- agentpool/config_resources/claude_code_agent.yml +3 -0
- agentpool/delegation/pool.py +37 -29
- agentpool/delegation/team.py +1 -0
- agentpool/delegation/teamrun.py +1 -0
- agentpool/diagnostics/__init__.py +53 -0
- agentpool/diagnostics/lsp_manager.py +1593 -0
- agentpool/diagnostics/lsp_proxy.py +41 -0
- agentpool/diagnostics/lsp_proxy_script.py +229 -0
- agentpool/diagnostics/models.py +398 -0
- agentpool/mcp_server/__init__.py +0 -2
- agentpool/mcp_server/client.py +12 -3
- agentpool/mcp_server/manager.py +25 -31
- agentpool/mcp_server/registries/official_registry_client.py +25 -0
- agentpool/mcp_server/tool_bridge.py +78 -66
- agentpool/messaging/__init__.py +0 -2
- agentpool/messaging/compaction.py +72 -197
- agentpool/messaging/message_history.py +12 -0
- agentpool/messaging/messages.py +52 -9
- agentpool/messaging/processing.py +3 -1
- agentpool/models/acp_agents/base.py +0 -22
- agentpool/models/acp_agents/mcp_capable.py +8 -148
- agentpool/models/acp_agents/non_mcp.py +129 -72
- agentpool/models/agents.py +35 -13
- agentpool/models/claude_code_agents.py +33 -2
- agentpool/models/manifest.py +43 -0
- agentpool/repomap.py +1 -1
- agentpool/resource_providers/__init__.py +9 -1
- agentpool/resource_providers/aggregating.py +52 -3
- agentpool/resource_providers/base.py +57 -1
- agentpool/resource_providers/mcp_provider.py +23 -0
- agentpool/resource_providers/plan_provider.py +130 -41
- agentpool/resource_providers/pool.py +2 -0
- agentpool/resource_providers/static.py +2 -0
- agentpool/sessions/__init__.py +2 -1
- agentpool/sessions/manager.py +31 -2
- agentpool/sessions/models.py +50 -0
- agentpool/skills/registry.py +13 -8
- agentpool/storage/manager.py +217 -1
- agentpool/testing.py +537 -19
- agentpool/utils/file_watcher.py +269 -0
- agentpool/utils/identifiers.py +121 -0
- agentpool/utils/pydantic_ai_helpers.py +46 -0
- agentpool/utils/streams.py +690 -1
- agentpool/utils/subprocess_utils.py +155 -0
- agentpool/utils/token_breakdown.py +461 -0
- {agentpool-2.1.9.dist-info → agentpool-2.2.3.dist-info}/METADATA +27 -7
- {agentpool-2.1.9.dist-info → agentpool-2.2.3.dist-info}/RECORD +170 -112
- {agentpool-2.1.9.dist-info → agentpool-2.2.3.dist-info}/WHEEL +1 -1
- agentpool_cli/__main__.py +4 -0
- agentpool_cli/serve_acp.py +41 -20
- agentpool_cli/serve_agui.py +87 -0
- agentpool_cli/serve_opencode.py +119 -0
- agentpool_commands/__init__.py +30 -0
- agentpool_commands/agents.py +74 -1
- agentpool_commands/history.py +62 -0
- agentpool_commands/mcp.py +176 -0
- agentpool_commands/models.py +56 -3
- agentpool_commands/tools.py +57 -0
- agentpool_commands/utils.py +51 -0
- agentpool_config/builtin_tools.py +77 -22
- agentpool_config/commands.py +24 -1
- agentpool_config/compaction.py +258 -0
- agentpool_config/mcp_server.py +131 -1
- agentpool_config/storage.py +46 -1
- agentpool_config/tools.py +7 -1
- agentpool_config/toolsets.py +92 -148
- agentpool_server/acp_server/acp_agent.py +134 -150
- agentpool_server/acp_server/commands/acp_commands.py +216 -51
- agentpool_server/acp_server/commands/docs_commands/fetch_repo.py +10 -10
- agentpool_server/acp_server/server.py +23 -79
- agentpool_server/acp_server/session.py +181 -19
- agentpool_server/opencode_server/.rules +95 -0
- agentpool_server/opencode_server/ENDPOINTS.md +362 -0
- agentpool_server/opencode_server/__init__.py +27 -0
- agentpool_server/opencode_server/command_validation.py +172 -0
- agentpool_server/opencode_server/converters.py +869 -0
- agentpool_server/opencode_server/dependencies.py +24 -0
- agentpool_server/opencode_server/input_provider.py +269 -0
- agentpool_server/opencode_server/models/__init__.py +228 -0
- agentpool_server/opencode_server/models/agent.py +53 -0
- agentpool_server/opencode_server/models/app.py +60 -0
- agentpool_server/opencode_server/models/base.py +26 -0
- agentpool_server/opencode_server/models/common.py +23 -0
- agentpool_server/opencode_server/models/config.py +37 -0
- agentpool_server/opencode_server/models/events.py +647 -0
- agentpool_server/opencode_server/models/file.py +88 -0
- agentpool_server/opencode_server/models/mcp.py +25 -0
- agentpool_server/opencode_server/models/message.py +162 -0
- agentpool_server/opencode_server/models/parts.py +190 -0
- agentpool_server/opencode_server/models/provider.py +81 -0
- agentpool_server/opencode_server/models/pty.py +43 -0
- agentpool_server/opencode_server/models/session.py +99 -0
- agentpool_server/opencode_server/routes/__init__.py +25 -0
- agentpool_server/opencode_server/routes/agent_routes.py +442 -0
- agentpool_server/opencode_server/routes/app_routes.py +139 -0
- agentpool_server/opencode_server/routes/config_routes.py +241 -0
- agentpool_server/opencode_server/routes/file_routes.py +392 -0
- agentpool_server/opencode_server/routes/global_routes.py +94 -0
- agentpool_server/opencode_server/routes/lsp_routes.py +319 -0
- agentpool_server/opencode_server/routes/message_routes.py +705 -0
- agentpool_server/opencode_server/routes/pty_routes.py +299 -0
- agentpool_server/opencode_server/routes/session_routes.py +1205 -0
- agentpool_server/opencode_server/routes/tui_routes.py +139 -0
- agentpool_server/opencode_server/server.py +430 -0
- agentpool_server/opencode_server/state.py +121 -0
- agentpool_server/opencode_server/time_utils.py +8 -0
- agentpool_storage/__init__.py +16 -0
- agentpool_storage/base.py +103 -0
- agentpool_storage/claude_provider.py +907 -0
- agentpool_storage/file_provider.py +129 -0
- agentpool_storage/memory_provider.py +61 -0
- agentpool_storage/models.py +3 -0
- agentpool_storage/opencode_provider.py +730 -0
- agentpool_storage/project_store.py +325 -0
- agentpool_storage/session_store.py +6 -0
- agentpool_storage/sql_provider/__init__.py +4 -2
- agentpool_storage/sql_provider/models.py +48 -0
- agentpool_storage/sql_provider/sql_provider.py +134 -1
- agentpool_storage/sql_provider/utils.py +10 -1
- agentpool_storage/text_log_provider.py +1 -0
- agentpool_toolsets/builtin/__init__.py +0 -8
- agentpool_toolsets/builtin/code.py +95 -56
- agentpool_toolsets/builtin/debug.py +16 -21
- agentpool_toolsets/builtin/execution_environment.py +99 -103
- agentpool_toolsets/builtin/file_edit/file_edit.py +115 -7
- agentpool_toolsets/builtin/skills.py +86 -4
- agentpool_toolsets/fsspec_toolset/__init__.py +13 -1
- agentpool_toolsets/fsspec_toolset/diagnostics.py +860 -73
- agentpool_toolsets/fsspec_toolset/grep.py +74 -2
- agentpool_toolsets/fsspec_toolset/image_utils.py +161 -0
- agentpool_toolsets/fsspec_toolset/toolset.py +159 -38
- agentpool_toolsets/mcp_discovery/__init__.py +5 -0
- agentpool_toolsets/mcp_discovery/data/mcp_servers.parquet +0 -0
- agentpool_toolsets/mcp_discovery/toolset.py +454 -0
- agentpool_toolsets/mcp_run_toolset.py +84 -6
- agentpool_toolsets/builtin/agent_management.py +0 -239
- agentpool_toolsets/builtin/history.py +0 -36
- agentpool_toolsets/builtin/integration.py +0 -85
- agentpool_toolsets/builtin/tool_management.py +0 -90
- {agentpool-2.1.9.dist-info → agentpool-2.2.3.dist-info}/entry_points.txt +0 -0
- {agentpool-2.1.9.dist-info → agentpool-2.2.3.dist-info}/licenses/LICENSE +0 -0
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
acp/README.md,sha256=7cLy5Qsl9zh6m9cWjFmqwsYc_909zY-KQtPxmtX9Hj4,1974
|
|
2
|
-
acp/__init__.py,sha256=
|
|
2
|
+
acp/__init__.py,sha256=7d64sRw-GTMBeIpM6BsxNbtheN40Z3it_jWV396-PkY,4499
|
|
3
3
|
acp/__main__.py,sha256=N3wGJDaMk6ug0yHoL2VNqvReyVZSVZKhQyyEiftF3KQ,202
|
|
4
4
|
acp/acp_requests.py,sha256=VdP_ZsVwjO-zNi5xfRxCexMObe8w1zN6wUiL5J8qbec,9051
|
|
5
5
|
acp/agent/__init__.py,sha256=l3zV38uGHie7zX-g9mn8NWcG_CVCOmhF5e045Tikzjw,172
|
|
@@ -11,12 +11,14 @@ acp/agent/implementations/debug_server/debug.html,sha256=icL_1i7lU3QzwOzaIF_WAaT
|
|
|
11
11
|
acp/agent/implementations/debug_server/debug_server.py,sha256=JvL85eYTQ0hLpTkZHZPPWmv3ZjFM3XlEaHEBk_EWM5o,17595
|
|
12
12
|
acp/agent/implementations/testing.py,sha256=zjbAbCyDxcXdoQdW1jnjzNRZ1qUkGh-l4xzGV8UGdmc,2996
|
|
13
13
|
acp/agent/protocol.py,sha256=MW3NYC1hGFNiN8IlB0HTUR5oNb2pgy4TaYHvtrbUIWM,2049
|
|
14
|
-
acp/bridge/README.md,sha256=
|
|
15
|
-
acp/bridge/__init__.py,sha256=
|
|
16
|
-
acp/bridge/__main__.py,sha256=
|
|
14
|
+
acp/bridge/README.md,sha256=dgSIqJ4oK8zaIO9iimcFl6xsYeCZ9i3b1z-JyB5zN6k,4360
|
|
15
|
+
acp/bridge/__init__.py,sha256=odmXK5zpE1yerDtpO-NG9vnxbmjvHELrvJmGAg1EvNE,258
|
|
16
|
+
acp/bridge/__main__.py,sha256=r_tZ4U0pdd0teYbJ86JPSplM6qt1RaOgAU00D7zARRU,3881
|
|
17
17
|
acp/bridge/bridge.py,sha256=OAAnrWzhMb0tjEwe9sNXPJUqekOuAqu1Vtg91K9a18A,10211
|
|
18
18
|
acp/bridge/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
19
19
|
acp/bridge/settings.py,sha256=T-9iRC0J1CnUuoDZ2aHiXzoJ785pkXHvNeJ9VAweypk,318
|
|
20
|
+
acp/bridge/ws_server.py,sha256=cIS1h2JTQ6srn0kpmniMLmpTmaUPQ2HzumgduCOrETc,6070
|
|
21
|
+
acp/bridge/ws_server_cli.py,sha256=rJAtUQbelcUnmneP1ssBs8CC6sk_eBnkWgl8U-GYpdw,2492
|
|
20
22
|
acp/client/__init__.py,sha256=-NFsoqyf85oNs1ok6gcI5m-tsP2JqtdASb94Gg4h_AM,312
|
|
21
23
|
acp/client/connection.py,sha256=r0IEd1WDeQsqNVw14yTN4-nhisYW7vxr_3ygqdUPygk,9819
|
|
22
24
|
acp/client/implementations/__init__.py,sha256=0A4Ht4ldBiifeIlC5TBg8V4UNPXOMA9ffWrVdDp4JxA,308
|
|
@@ -27,7 +29,7 @@ acp/client/protocol.py,sha256=_dlRDzdL9_D7ubFwoY8RYz4nDYlfCNyqJlTULAh-ZFw,1932
|
|
|
27
29
|
acp/connection.py,sha256=ybN6UrVruh1jTLjADX0JZj0WCEIzpV0BPxJW1_ythkw,10300
|
|
28
30
|
acp/exceptions.py,sha256=ELTB_k0e1YZn06pPasHxvMpMq-j0qwzF2fZ6WxoJea0,1513
|
|
29
31
|
acp/filesystem.py,sha256=255NCw8IMKYSdFZsxvhRkqkvSZuFvEJnUdcZ9OT29A0,19277
|
|
30
|
-
acp/notifications.py,sha256=
|
|
32
|
+
acp/notifications.py,sha256=sQPl556MJjTy-vqmhabBCZm6p2QOAaog_HkDyvhYyFY,33095
|
|
31
33
|
acp/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
32
34
|
acp/schema/__init__.py,sha256=F2mbApdMqvTsJbZTS3F1xl8RYsfJmsWQ4ZaztSD46Qs,6560
|
|
33
35
|
acp/schema/agent_plan.py,sha256=65uyLfzpGiSB3pD0xyMi9kmxYp-VRcsC-8snFo_Rn7U,869
|
|
@@ -48,7 +50,7 @@ acp/schema/session_updates.py,sha256=9qIfY2NrFfPZdB_kvCuFjZfMq-EGagmUTz6nM0RuRY0
|
|
|
48
50
|
acp/schema/slash_commands.py,sha256=Xgh4Z6Ne_qmEnjYkRiUWeyP4KCjzlONrt-SP9MQgHQo,1453
|
|
49
51
|
acp/schema/terminal.py,sha256=ksBe84Bs5F-I3LWrWXgRn6X345Dw15OSWMDQnFKHCP0,425
|
|
50
52
|
acp/schema/tool_call.py,sha256=0MyXngLhR_8FiQh9nRCviCpEFYdkOW1n41A67WZJF7c,11025
|
|
51
|
-
acp/stdio.py,sha256=
|
|
53
|
+
acp/stdio.py,sha256=iufw_pWc5ApiEd4f78by1RXLA3YkhAmqhL1jrf3YtEQ,9661
|
|
52
54
|
acp/task/__init__.py,sha256=U_sET_Sf8fLbs21_96_z4UJCjrcqFF5j8pfmOWJC_8M,1227
|
|
53
55
|
acp/task/debug.py,sha256=6D1aJ4ABLlQLo69XsVGfSTd_ZB5XJRqi1ZG5g-6-UBY,6906
|
|
54
56
|
acp/task/dispatcher.py,sha256=n50NBHyLRFX6odlCuEWeuexqsC7lfRqXSDX3fUcdvZI,2984
|
|
@@ -59,46 +61,49 @@ acp/task/supervisor.py,sha256=U8l4MoK8ci4_OPKKA7g3FEOLwKB1Thpr-1I19iRs6XA,2942
|
|
|
59
61
|
acp/terminal_handle.py,sha256=nNm7ryzApuk2YpBo4hTH3CMzL39X4ORmsV8IO7fZ6Nw,979
|
|
60
62
|
acp/tool_call_reporter.py,sha256=_BBCd-LnyDxfpcXgbX5MuVjCn2PhntJYtdXrhatCHPU,7007
|
|
61
63
|
acp/tool_call_state.py,sha256=9crvqnnC6Ofpvk1mf8YaWwbFFYmFWAOby-UGxc0-mcU,6004
|
|
62
|
-
acp/transports.py,sha256=
|
|
63
|
-
acp/utils.py,sha256=
|
|
64
|
-
agentpool/__init__.py,sha256=
|
|
64
|
+
acp/transports.py,sha256=7ArJMgNiyZMiLQe7NzKhiYV01WmvNWYqIMeCOY55yXw,14780
|
|
65
|
+
acp/utils.py,sha256=8P2hXT99Dv8lJnz4qXc17HSrNl6BNPWFzbxig1XEfY0,9248
|
|
66
|
+
agentpool/__init__.py,sha256=K1rwiC405nJeK1oqtmwe5ajyj8Jnpj-5qkthD_BY8a8,1698
|
|
65
67
|
agentpool/__main__.py,sha256=m6sATzeG9JSTQB37V29ooNz-1ScKBObFpfPIGsBFRn8,149
|
|
66
|
-
agentpool/agents/__init__.py,sha256=
|
|
68
|
+
agentpool/agents/__init__.py,sha256=xMeqYpeNIJR2pZ-Vu_aYBAgb5xwp5EHt-ckoiNac2gs,865
|
|
67
69
|
agentpool/agents/acp_agent/__init__.py,sha256=ciQUOhtOjjF9wT1qjUi-IgNyBf4E63e8EzSpnvEZWmg,89
|
|
68
|
-
agentpool/agents/acp_agent/acp_agent.py,sha256=
|
|
69
|
-
agentpool/agents/acp_agent/acp_converters.py,sha256=
|
|
70
|
-
agentpool/agents/acp_agent/client_handler.py,sha256=
|
|
71
|
-
agentpool/agents/acp_agent/session_state.py,sha256=
|
|
72
|
-
agentpool/agents/agent.py,sha256
|
|
73
|
-
agentpool/agents/agui_agent/__init__.py,sha256=
|
|
74
|
-
agentpool/agents/agui_agent/agui_agent.py,sha256=
|
|
75
|
-
agentpool/agents/agui_agent/agui_converters.py,sha256=
|
|
70
|
+
agentpool/agents/acp_agent/acp_agent.py,sha256=ryuFNa7wYRJAaCYP9hE3jsSS3ZGe2MWGqz08goF-bVg,38582
|
|
71
|
+
agentpool/agents/acp_agent/acp_converters.py,sha256=BKxHiF4mk5dv0lzSwRiDzlaIhz4425hduIZyY765CA0,11327
|
|
72
|
+
agentpool/agents/acp_agent/client_handler.py,sha256=Vg-HpW7r2APbLEomJKIYZL5wbctxDVyiT9h0dnIJYos,20328
|
|
73
|
+
agentpool/agents/acp_agent/session_state.py,sha256=nccjBiPULUeYTUoI0j5UYPuSjM6Z6yxOj0QYGqFe9RI,1400
|
|
74
|
+
agentpool/agents/agent.py,sha256=-Dh2YDsfmgFZuehzFbuOldwkZo90gPCIPYAVBzXCn4M,58801
|
|
75
|
+
agentpool/agents/agui_agent/__init__.py,sha256=qbxs-NvrAuaVBzTvUsir607kM4KWfwFR2UrQTlL4XRA,471
|
|
76
|
+
agentpool/agents/agui_agent/agui_agent.py,sha256=UFVYnDjB3rk--nDuawoXbhUY_FoXyusmp0nLSMuhAJs,31388
|
|
77
|
+
agentpool/agents/agui_agent/agui_converters.py,sha256=h4DtOWABDBWlsOhP0PFfQsxp8rsl2p0JNT21FVftzOI,10190
|
|
76
78
|
agentpool/agents/agui_agent/chunk_transformer.py,sha256=UFbqmmralMxn256bLoiLzWtocJlSjg2ayzOXSU_5mhU,7125
|
|
77
79
|
agentpool/agents/agui_agent/event_types.py,sha256=c2MUoM04MhOPOqHwGnaxJpeOul72rnDFIu2Rih8v05U,2047
|
|
78
80
|
agentpool/agents/agui_agent/helpers.py,sha256=Yq9mOQdBQVeOt9KE4Bn9QURoGBe0QKBDGyp99UP7bI0,6519
|
|
79
81
|
agentpool/agents/architect.py,sha256=KPBuyLWQwR_DEB0xOWWz8xCoBEH3yKMn0MbYRz-T_pI,2109
|
|
80
|
-
agentpool/agents/base_agent.py,sha256=
|
|
82
|
+
agentpool/agents/base_agent.py,sha256=7mQAKulgclKBf9JiHaRCYItOOIXstqPmodJMV5XWduY,12869
|
|
81
83
|
agentpool/agents/claude_code_agent/__init__.py,sha256=nQ1f8HfvpodAlaaqo0Pt_1c2H537JThMGBVkXNCGeqQ,348
|
|
82
|
-
agentpool/agents/claude_code_agent/claude_code_agent.py,sha256=
|
|
83
|
-
agentpool/agents/claude_code_agent/converters.py,sha256=
|
|
84
|
-
agentpool/agents/
|
|
85
|
-
agentpool/agents/
|
|
86
|
-
agentpool/agents/events/
|
|
87
|
-
agentpool/agents/events/
|
|
88
|
-
agentpool/agents/events/
|
|
84
|
+
agentpool/agents/claude_code_agent/claude_code_agent.py,sha256=D_q0NDavSJnZpFamaNYYhSu-FsPI3YuUbiZRLCTVy9I,66076
|
|
85
|
+
agentpool/agents/claude_code_agent/converters.py,sha256=bQ8sVi1O5ROuv1Kleqp4eKshldiBmODOPr1NcaZ-7zg,12763
|
|
86
|
+
agentpool/agents/claude_code_agent/history.py,sha256=qXCSPJavchVULtswTTnvrOwXDgyDiGzVZiDYh7L8lpE,15213
|
|
87
|
+
agentpool/agents/context.py,sha256=EJEgstksIRB3DkPQtknNpk-kL0QGH7nolZXy_dhVoYo,4660
|
|
88
|
+
agentpool/agents/events/__init__.py,sha256=VR7MGeelZLLHZ-nxTi5oZu-V92v47ZtJf3rxd4Y65po,1454
|
|
89
|
+
agentpool/agents/events/builtin_handlers.py,sha256=jlxhT079SaOVGnM0Gew2uN3PB49MVchDegE9T_iX-cw,4657
|
|
90
|
+
agentpool/agents/events/event_emitter.py,sha256=kpb6-UcVlZMSadlv4gKZhPVmwE5qbZzzbvTfiYbRylA,11803
|
|
91
|
+
agentpool/agents/events/events.py,sha256=IbR3SdxB06bc2p9f0OY0efxO-msnmz0La6twFhEGQCI,17935
|
|
89
92
|
agentpool/agents/events/tts_handlers.py,sha256=-nJVTfw_mg8jK8YGyg4wuhZCAO5wXUcYogEmQfi0o10,5994
|
|
90
93
|
agentpool/agents/interactions.py,sha256=6F1cuW4gBJWvbhl8ZCGSVlqkK119CEnmD8-gTMDjNlY,13190
|
|
94
|
+
agentpool/agents/modes.py,sha256=08efTh394iR8Y7VFHE4YbHdU6hlqCeQrlZ1RLRgmPuM,1347
|
|
91
95
|
agentpool/agents/slashed_agent.py,sha256=0C83Fc5VsTGTRyJ6I7YqhcyFE69XTn2AhXw-9LImtrs,9091
|
|
92
96
|
agentpool/agents/sys_prompts.py,sha256=TnYb90YrPN_2PXbb0V4Qi2zFrFNWtWv2ynJC5KTj4yU,5930
|
|
97
|
+
agentpool/agents/tool_call_accumulator.py,sha256=W0br55JBXR-hM4qBNOHs6hC_g77H3q6M-9NDXEJ-kGo,6349
|
|
93
98
|
agentpool/agents/tool_wrapping.py,sha256=TyYDWC8O898hPvmmrfy5fdb5gOS9EpZVYQ43QNkq8WE,7336
|
|
94
99
|
agentpool/base_provider.py,sha256=gsvswWxIO2hMuZXstJcsT-lNzZYnk2YhqmFjyiaVvoY,887
|
|
95
|
-
agentpool/common_types.py,sha256=
|
|
96
|
-
agentpool/config_resources/__init__.py,sha256=
|
|
100
|
+
agentpool/common_types.py,sha256=lwLI2SYzWFnwJnFMOQUVNk9J8tGAV6RfIQhzjAwIwn4,8396
|
|
101
|
+
agentpool/config_resources/__init__.py,sha256=m7_guYWmD-BIbDfVAtPrbRlm48kNMlvmmLa0YMMySDE,1522
|
|
97
102
|
agentpool/config_resources/acp_assistant.yml,sha256=6S66z-BvI8Hb-u_dZX4vkHME6WYELJm-bf51NAyvyRU,884
|
|
98
103
|
agentpool/config_resources/agents.yml,sha256=iRJlu6n06voOXPqpl-m8jRHSm_sOKos8oPozCpfiQHY,3269
|
|
99
104
|
agentpool/config_resources/agents_template.yml,sha256=7-n0kcrm92YwpT1L35i8YSoWqOIg5UnNrnJ1jQSeHek,634
|
|
100
105
|
agentpool/config_resources/agui_test.yml,sha256=TTaA671k0jk1Y2vKI13PwBhHqKmKejAlJhHnGyKnbNg,655
|
|
101
|
-
agentpool/config_resources/claude_code_agent.yml,sha256=
|
|
106
|
+
agentpool/config_resources/claude_code_agent.yml,sha256=0tIMo-07eCc1igR73gZiCktYHhuZiEFUlLQkWUnjv6A,562
|
|
102
107
|
agentpool/config_resources/claude_style_subagent.md,sha256=6RMWSUPMn3QgBObya1q-2nJDkDOwmxJ1qAoX51hEFws,904
|
|
103
108
|
agentpool/config_resources/external_acp_agents.yml,sha256=8SjwPvPpIgjWDYZAA9O8EMi_b-vdNLOSE6WIanejDGE,2221
|
|
104
109
|
agentpool/config_resources/opencode_style_subagent.md,sha256=j2OjMI38pPmJfYSW327AVLQsoKkqmJ5NqB0GNHDTM1Q,411
|
|
@@ -106,9 +111,14 @@ agentpool/config_resources/tts_test_agents.yml,sha256=sVBTpDm63kZf4s-rxwpW_tQQTr
|
|
|
106
111
|
agentpool/delegation/__init__.py,sha256=CPQgs3IUPWt4jL3YvC6xOHnPF8-WzIpgNIkyGHC2oQ8,305
|
|
107
112
|
agentpool/delegation/base_team.py,sha256=MqTN0IpJvL7qqjH6rK7xfefQIprKdqA_YB0cSRwQ1xw,18143
|
|
108
113
|
agentpool/delegation/message_flow_tracker.py,sha256=TU2uy9trbtIU-2sW8m2_eUoqfoXlS2rojyxaQIaYaKQ,1312
|
|
109
|
-
agentpool/delegation/pool.py,sha256=
|
|
110
|
-
agentpool/delegation/team.py,sha256=
|
|
111
|
-
agentpool/delegation/teamrun.py,sha256=
|
|
114
|
+
agentpool/delegation/pool.py,sha256=Igg6VoTm6FKlZ9cm4V8oKs1g0usaWeI1bqEPypXWmNs,44217
|
|
115
|
+
agentpool/delegation/team.py,sha256=Tgtv0kr9YmRj7nQjgopz8F_njErpZDNV00s9UeKSGPw,12332
|
|
116
|
+
agentpool/delegation/teamrun.py,sha256=LCzD1o-vjvthIPUqCWQ26Qd0Nuk77p1PtcxM0uJTdCU,12869
|
|
117
|
+
agentpool/diagnostics/__init__.py,sha256=g0xqLbQPqxTNn4TitU_bu_kVS5EiyWD5rTYvlmKw1b8,1195
|
|
118
|
+
agentpool/diagnostics/lsp_manager.py,sha256=cJcP08tHKL1E-ccUJ9xlLZmq1AaTK0_Nfri1QOZ3gtg,49393
|
|
119
|
+
agentpool/diagnostics/lsp_proxy.py,sha256=Vu92B-PB19SZmriQlUD7QktMl3BosFys_Z7FnzxLTNk,1153
|
|
120
|
+
agentpool/diagnostics/lsp_proxy_script.py,sha256=JFsi8BAn5lbEZA077lqiC7bBCMlqomiTJqKMCb4u_OU,8324
|
|
121
|
+
agentpool/diagnostics/models.py,sha256=Il_vqBHeehGMo4RQcaRttP1jUdC-2izP75owlrGRN1E,8593
|
|
112
122
|
agentpool/docs/__init__.py,sha256=lMdVgo2V7fdRjF_9AmqW7TosE6NdJE7LbvMcLlBJwDY,155
|
|
113
123
|
agentpool/docs/gen_examples.py,sha256=ER0nKe99lVxGo60BIYf4D2Ejo8BV9fwUozrNYZEP1tA,1374
|
|
114
124
|
agentpool/docs/utils.py,sha256=AQen7CKftuqrOXvvyHGKn2CiQdNskw8W0wWnZXqBytA,11161
|
|
@@ -124,40 +134,40 @@ agentpool/hooks/command.py,sha256=WLzadbkkfC5hp2WKVeRfS6dzDLDkfKcE0Itnldnb-og,55
|
|
|
124
134
|
agentpool/hooks/prompt.py,sha256=CAwXPJnvW1nmBa5ruk8lOpzrC3NPDsmqcGJpEKilHvU,3799
|
|
125
135
|
agentpool/jinja_filters.py,sha256=NT_fcDE7oBbpzZ04UJu4UHIk_a8B26Hrel05zn4BmS0,3995
|
|
126
136
|
agentpool/log.py,sha256=oKA7P258VYg-Q0EymBny2RdeWhjRfFrBoyFhNb8t9Is,7727
|
|
127
|
-
agentpool/mcp_server/__init__.py,sha256=
|
|
128
|
-
agentpool/mcp_server/client.py,sha256=
|
|
137
|
+
agentpool/mcp_server/__init__.py,sha256=dU4LaqySQqTKE5SOMG1KuTEunZAGw7p4rwgGZ16K5V0,312
|
|
138
|
+
agentpool/mcp_server/client.py,sha256=EntQqbKnfJO-EgYcYYIv0q-STlbpnHZGFeno9iKli5g,17792
|
|
129
139
|
agentpool/mcp_server/constants.py,sha256=Z1eNrsGPA3__rPMSC9REUJhIW8y7mGq909iFGTna5P8,693
|
|
130
140
|
agentpool/mcp_server/conversions.py,sha256=iy-tarfP1lVTx4teljQYJsWBjlZMROtdIghSuDHf09I,6649
|
|
131
141
|
agentpool/mcp_server/helpers.py,sha256=QD0qLLOIA5EcwEc9GxjWwLPK_i0SE9C-NOGiCpk67Ek,1243
|
|
132
|
-
agentpool/mcp_server/manager.py,sha256=
|
|
142
|
+
agentpool/mcp_server/manager.py,sha256=GiDKDicZGIe3edKtrhB2-AuJFfv0Mh0xKr_nwHeKd8E,8450
|
|
133
143
|
agentpool/mcp_server/message_handler.py,sha256=UBrajTlv6XRRvgC3m15uniuJ60dKsqboK-lzzuFTO3g,6670
|
|
134
144
|
agentpool/mcp_server/registries/__init__.py,sha256=ovKQKyrGBbHTMA6eMRbXx7PzFxQJrfOWFoxXo491nxk,28
|
|
135
|
-
agentpool/mcp_server/registries/official_registry_client.py,sha256=
|
|
145
|
+
agentpool/mcp_server/registries/official_registry_client.py,sha256=Mp7EQn1uiOxiKD1Q3z6LsWC0KSqxSDkL7ztU_UgGfLg,12263
|
|
136
146
|
agentpool/mcp_server/registries/pulsemcp_client.py,sha256=r2raIWX4kiEJOnoRY0IkpS8lUgDsHYytHySMhAh9K0w,2431
|
|
137
|
-
agentpool/mcp_server/tool_bridge.py,sha256=
|
|
138
|
-
agentpool/messaging/__init__.py,sha256=
|
|
139
|
-
agentpool/messaging/compaction.py,sha256=
|
|
147
|
+
agentpool/mcp_server/tool_bridge.py,sha256=Hs52IbqaVwip2A7Fk0pH1Ko04cfGZYeiJQND0EVoVnU,21360
|
|
148
|
+
agentpool/messaging/__init__.py,sha256=rRdF98lCvwBq38sRMB3v-H7qoOEn_WNUFhJo_eoJrQg,1448
|
|
149
|
+
agentpool/messaging/compaction.py,sha256=KXBSY1CkMFtX0EWX5XUF4KxkjlHUY-GAGSHxFY_fDoM,27446
|
|
140
150
|
agentpool/messaging/connection_manager.py,sha256=6LbVgV3iiAZ1bcMFqb6P40lcj5bXBteOxB5YaHYmNTA,12189
|
|
141
151
|
agentpool/messaging/context.py,sha256=2iaVbnXl_vFK0R9847pf4mc_32ZdbltOWIGbMC46ddA,1937
|
|
142
152
|
agentpool/messaging/event_manager.py,sha256=9PeOeQ2qFVzCYJmMTy_dEeyse03mP86XMVP8wkROdlM,14719
|
|
143
153
|
agentpool/messaging/events.py,sha256=WPfkC70ECeCtGkaLDCuffKs72NKygjo2gL-yW8a-JQ4,1104
|
|
144
154
|
agentpool/messaging/message_container.py,sha256=qWba-yVw19SzFxTDGPqYrqEHIcvSVhNw99jumWGKUTU,6855
|
|
145
|
-
agentpool/messaging/message_history.py,sha256=
|
|
155
|
+
agentpool/messaging/message_history.py,sha256=yx_OBtHlLUtABeEd-fkEOOCPtpio62YtyCiLigxM8fg,17875
|
|
146
156
|
agentpool/messaging/messagenode.py,sha256=6OpxX2LC_O6GsrHngSS7GNcqda44lstW_YAY99ArNm4,13478
|
|
147
|
-
agentpool/messaging/messages.py,sha256=
|
|
148
|
-
agentpool/messaging/processing.py,sha256=
|
|
157
|
+
agentpool/messaging/messages.py,sha256=ykI0d73TszaYDFKJ33y5eIzljILx-vvtyxPAgMeQnqE,24440
|
|
158
|
+
agentpool/messaging/processing.py,sha256=E3LMB8Ktfou9hfJPwNPerk5r-j-LdFeugxraeJoDaj4,2882
|
|
149
159
|
agentpool/mime_utils.py,sha256=WrTuZIudFlJH4yXf7s2F9OqeZwKjKF84zjKXCoO300g,2468
|
|
150
160
|
agentpool/models/__init__.py,sha256=M3NFbjen7HbLebkQSNQEQed5pxIfJf5N8QywGB16OCI,633
|
|
151
161
|
agentpool/models/acp_agents/__init__.py,sha256=pMlTEmTZ2v-6viVScU12kexB_jPBl2Fg7DM01hrjCls,671
|
|
152
|
-
agentpool/models/acp_agents/base.py,sha256
|
|
153
|
-
agentpool/models/acp_agents/mcp_capable.py,sha256=
|
|
154
|
-
agentpool/models/acp_agents/non_mcp.py,sha256=
|
|
155
|
-
agentpool/models/agents.py,sha256=
|
|
162
|
+
agentpool/models/acp_agents/base.py,sha256=-i0TXGp-E36MkMIKHGSLCrLPxes9-zoeFoq0zEu_j1c,10266
|
|
163
|
+
agentpool/models/acp_agents/mcp_capable.py,sha256=Vvaj3Us8coaj0qkKeFr42-NUL2U9jO-fOdrkJabl3oQ,21484
|
|
164
|
+
agentpool/models/acp_agents/non_mcp.py,sha256=0KRD8NDvSTiYVqhnVeMgJ9_ivRFSyApijnSsGip2b9I,28432
|
|
165
|
+
agentpool/models/agents.py,sha256=A4tU59W-_GG0bhw0C-MHiiVm_VdQjfNJxABDHTgLbDA,18891
|
|
156
166
|
agentpool/models/agui_agents.py,sha256=6cAj9xRTU-7IghZmhygHj37PYtBxLt7_wsx-CffbvgI,2886
|
|
157
|
-
agentpool/models/claude_code_agents.py,sha256=
|
|
167
|
+
agentpool/models/claude_code_agents.py,sha256=RFbRFY-vbp1m_1Fpj10_AKZa42tvhGb3am64qS-LMlE,8364
|
|
158
168
|
agentpool/models/file_agents.py,sha256=ypxzcIqwoMqYFylGPtt7Rb7do5g2QKEGgeOQD8x6JWw,3238
|
|
159
169
|
agentpool/models/file_parsing.py,sha256=XnvEJzJJE1vmSeln5VIEaW93ZTNqVw1Llv-7KhO8v0M,11610
|
|
160
|
-
agentpool/models/manifest.py,sha256=
|
|
170
|
+
agentpool/models/manifest.py,sha256=9UeYl4DtJAZ7U1KFmMrScXki8tEZqUpQR1RdD7W54mk,26634
|
|
161
171
|
agentpool/observability/__init__.py,sha256=N5zVOlQH9l9a0K_GY1xdpp8ABbhmcCO2bdJ2DmLLetw,232
|
|
162
172
|
agentpool/observability/observability_registry.py,sha256=40m60j26u-12SWkIdUNW9M74aUkHxzXc2U7E6anrpbo,3152
|
|
163
173
|
agentpool/prompts/__init__.py,sha256=HKBrk8pyr5pQq47YTxNWZEZ5ItJnVGZCMFS1d4QFtag,34
|
|
@@ -227,10 +237,10 @@ agentpool/queries/tree-sitter-languages/rust-tags.scm,sha256=9ljM1nzhfPs_ZTRw7cr
|
|
|
227
237
|
agentpool/queries/tree-sitter-languages/scala-tags.scm,sha256=UxQjz80JIrrJ7Pm56uUnQyThfmQNvwk7aQzPNypB-Ao,1761
|
|
228
238
|
agentpool/queries/tree-sitter-languages/typescript-tags.scm,sha256=OMdCeedPiA24ky82DpgTMKXK_l2ySTuF2zrQ2fJAi9E,1253
|
|
229
239
|
agentpool/queries/tree-sitter-languages/zig-tags.scm,sha256=BPgov_nD_LqpL37sbdwsMYbFmHwjBOuRm76geKo29ds,124
|
|
230
|
-
agentpool/repomap.py,sha256
|
|
231
|
-
agentpool/resource_providers/__init__.py,sha256=
|
|
232
|
-
agentpool/resource_providers/aggregating.py,sha256=
|
|
233
|
-
agentpool/resource_providers/base.py,sha256=
|
|
240
|
+
agentpool/repomap.py,sha256=-UeJF5m7x7qYm65Cp_FngVLDEbMV_is11LQDW4HalUQ,41295
|
|
241
|
+
agentpool/resource_providers/__init__.py,sha256=COYVrLre4PrWrl4OumqkfXrBsj4UMHaBDh45bRbxKyQ,797
|
|
242
|
+
agentpool/resource_providers/aggregating.py,sha256=nfcqCwNm6zmornjdulEXCA17tcxgAwunQvEjy_YIak8,4176
|
|
243
|
+
agentpool/resource_providers/base.py,sha256=0OWHXUnu7L7BX3rfyhBFgrmvZ6N_pH4_DyfFEuneiuI,7565
|
|
234
244
|
agentpool/resource_providers/codemode/__init__.py,sha256=Hvu2vtZqcE9XcTX9pb_iPBvj4IgjkkdIuo1A8LZySnM,340
|
|
235
245
|
agentpool/resource_providers/codemode/code_executor.py,sha256=w06Tzq5StML2cyCbvI2mMGykvq3e2z-24_AC6phMNnw,6979
|
|
236
246
|
agentpool/resource_providers/codemode/default_prompt.py,sha256=ZJo42O-WfQeMY8ppiLUcEIbTNhT-6IKrDMQ_j8hh1O8,531
|
|
@@ -240,10 +250,10 @@ agentpool/resource_providers/codemode/provider.py,sha256=fiEN-ShkOYWTn2iOfecR7a3
|
|
|
240
250
|
agentpool/resource_providers/codemode/remote_mcp_execution.py,sha256=Y48Ab_Nr7R9OFBAYa8OLG1A6VG76CLDDvzsnqVYC0oY,4636
|
|
241
251
|
agentpool/resource_providers/codemode/remote_provider.py,sha256=9HKBa5VkCz4g45An9B2VKgt8fUk0JwA3zgVSmC42tZQ,6137
|
|
242
252
|
agentpool/resource_providers/filtering.py,sha256=PINFQxI1g6d_OaE4X7KXIg9OC6kIEnfhblb8FES0920,1283
|
|
243
|
-
agentpool/resource_providers/mcp_provider.py,sha256=
|
|
244
|
-
agentpool/resource_providers/plan_provider.py,sha256=
|
|
245
|
-
agentpool/resource_providers/pool.py,sha256=
|
|
246
|
-
agentpool/resource_providers/static.py,sha256=
|
|
253
|
+
agentpool/resource_providers/mcp_provider.py,sha256=492km_oC1jHmYL6MwUBDm9oLa5otti9avrxsmwnCkog,10314
|
|
254
|
+
agentpool/resource_providers/plan_provider.py,sha256=2ot8FHpVB5iHqpu3f9_SydoUk2Ux9r9J5s0fq3moTpY,9859
|
|
255
|
+
agentpool/resource_providers/pool.py,sha256=XNnd6DDYrWW9vzjWJQP-2-sIhZEfwemd9oMRCAQdwMw,2451
|
|
256
|
+
agentpool/resource_providers/static.py,sha256=Ydj5pr6189xDpTV2P2ReBjLyHqMz99pXVYdcyMoLvNo,9358
|
|
247
257
|
agentpool/running/__init__.py,sha256=1rg38fpmdcdi_UnAQKCAMegYfTb_k5vy-luquQUnPIk,589
|
|
248
258
|
agentpool/running/decorators.py,sha256=0jXh892V4hSd2iLRScfQ_9aKkUXR2leoCksm6ols4hA,1736
|
|
249
259
|
agentpool/running/discovery.py,sha256=_H068qrENu-6YZVeF2HNkKgnqro9TnYrEr5iTbC1DvA,3033
|
|
@@ -252,17 +262,17 @@ agentpool/running/injection.py,sha256=QWOf2yNHRV8mASwso0GVLiLp4vfPE4AWqMg1i5Io5W
|
|
|
252
262
|
agentpool/running/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
253
263
|
agentpool/running/run_nodes.py,sha256=1R1aWRC-5kh1UuNkpNy6Xs-jtebs-ldNFaL1k_JNOoQ,2574
|
|
254
264
|
agentpool/server.py,sha256=DGsHjPzr1NWmWdGPLCbU_IFMuejzO4yfy3EsyIPceiM,3492
|
|
255
|
-
agentpool/sessions/__init__.py,sha256=
|
|
256
|
-
agentpool/sessions/manager.py,sha256=
|
|
257
|
-
agentpool/sessions/models.py,sha256=
|
|
265
|
+
agentpool/sessions/__init__.py,sha256=JnjeVDhr1cu8orCRsRf5CTcp0bhdzdXmafsCyMp3eL4,371
|
|
266
|
+
agentpool/sessions/manager.py,sha256=9MlvQsi9NLb8uJAqbMPCFwFoIkxxr5BYmw7sSQDKOj4,10601
|
|
267
|
+
agentpool/sessions/models.py,sha256=WqwXvVAMePnXo4idalgHzwqKOU23GlPYq2MWzQ_l76s,3858
|
|
258
268
|
agentpool/sessions/session.py,sha256=QlOBT2sBXLtrue11Q_U1SGnM5jlKxMwo8Tw2nI2WiTw,7645
|
|
259
269
|
agentpool/sessions/store.py,sha256=yqxSmQAKM7z4pGwYgx56oOaUii7Wv3lxRlefCKnN9X8,4328
|
|
260
270
|
agentpool/skills/__init__.py,sha256=I3nfekg0e6vOzMhK2jR7uHv2DHqdPLBLjAIczD3dzBQ,134
|
|
261
271
|
agentpool/skills/manager.py,sha256=dRZgPoBEWCGXWB2fZpUd7vH_MpGcuKeAaSqwiVqtUvE,4138
|
|
262
|
-
agentpool/skills/registry.py,sha256=
|
|
272
|
+
agentpool/skills/registry.py,sha256=3Pg3pqiEalA5FqHvm2SmYXOfhpq42zrmYAYDvzHP3jo,7894
|
|
263
273
|
agentpool/skills/skill.py,sha256=c8OslO4nnH8p6muKTVH_tDvcFz9LfbQ9veAuFZJp_II,1035
|
|
264
274
|
agentpool/storage/__init__.py,sha256=jFxKdECqKXXP_PesXUZawGPBD4ERbX0j2cTN5GjWrQo,358
|
|
265
|
-
agentpool/storage/manager.py,sha256=
|
|
275
|
+
agentpool/storage/manager.py,sha256=Nrkt1AWxtOUaiIZQNekk7XYVX1PAPhW6CEGYxXpLbAE,21572
|
|
266
276
|
agentpool/storage/serialization.py,sha256=hVwbSoXAngcdBgBd2ucYKxx5Hn0OB9aFtTkB45Mt6Ms,4651
|
|
267
277
|
agentpool/talk/__init__.py,sha256=8uxRmR90LUXGf8Tm66BGzIwAo3M3fVSsbyuZ74e8Sds,300
|
|
268
278
|
agentpool/talk/registry.py,sha256=VjSDy1OICYI62H-c7GfPBucRBkfMFt50JCpuzB77BF0,4318
|
|
@@ -271,7 +281,7 @@ agentpool/talk/talk.py,sha256=NVJ80wldsjkYjyPVbjgBJCjD3lyx4c0SA_JsYICUHo4,22264
|
|
|
271
281
|
agentpool/tasks/__init__.py,sha256=HpXy_KrC28IidN5GMYLgV0r4Zu8AfGSIbBfsoz14qVY,375
|
|
272
282
|
agentpool/tasks/exceptions.py,sha256=lXIqJaWVJt0BQGQQHn5wTKFnkpJoRLc0oHNlCqP74pk,513
|
|
273
283
|
agentpool/tasks/registry.py,sha256=yOjL0mxX1YjV1v_gai7f_Oq8sFDVrE1Zx0E46vDgqH8,1024
|
|
274
|
-
agentpool/testing.py,sha256=
|
|
284
|
+
agentpool/testing.py,sha256=MdAVOW2lt9-mjrXkay-F4qtp4BATNhL1pqbTmlWNNqA,20383
|
|
275
285
|
agentpool/text_templates/__init__.py,sha256=BrmnvhBFBiErVit8oz0ctYiGMghHRgM5_vZ3QHLcI3I,1026
|
|
276
286
|
agentpool/text_templates/system_prompt.jinja,sha256=nSXXjsXhJmcZ-H1MYpfeXNP3H_Cqwo86LDuT3KtTCIM,841
|
|
277
287
|
agentpool/text_templates/tool_call_default.jinja,sha256=lmZB9AN7issDyRjSC0FgkR5ZDjOZJfw0s1YkD4gsx_k,223
|
|
@@ -290,19 +300,24 @@ agentpool/utils/__init__.py,sha256=nMhW8kYB7ysI-ABlR6Rdq_HyMI_J_QM2D0vA0ho-JKE,1
|
|
|
290
300
|
agentpool/utils/baseregistry.py,sha256=CiI4Ph6UmiOlGj_ZTz6DncLnkdeNNdyO01qq02oqZjY,6059
|
|
291
301
|
agentpool/utils/count_tokens.py,sha256=CwlidDhx_H0CFp_8hi20hbpoFcu2osEB-Sdee9jkAgU,1640
|
|
292
302
|
agentpool/utils/dag.py,sha256=jpaKwKxcJt8y1mJLMTqPLCZ8Uco-ZIfdI70D72RFeCk,5374
|
|
303
|
+
agentpool/utils/file_watcher.py,sha256=ILyveB5byqwZGQOTVUtvMYR-fnIo7Ljs56K0dddzH1I,8439
|
|
304
|
+
agentpool/utils/identifiers.py,sha256=E_hk6hC-SszfUKS57okKcC5unXBATmsFXnHlO1wE8-0,3224
|
|
293
305
|
agentpool/utils/importing.py,sha256=-OtceIZwLXnmHDVF37TGD7Ui-xc_5B9wWnou4feK7Q8,6272
|
|
294
306
|
agentpool/utils/inspection.py,sha256=WkK_TzElgHSGO7douq5Gr5f8gPD-11sKpDld81FM8XI,10207
|
|
295
307
|
agentpool/utils/model_capabilities.py,sha256=DJ1HJTrS0MCwRKDA44_aqjyrgCgvh109J1b_FFtgWvA,623
|
|
296
308
|
agentpool/utils/network.py,sha256=lUOVBMWQaeyxTlxxM0cdvMx6Lt-JfVulKDUvgYlokQY,736
|
|
297
309
|
agentpool/utils/now.py,sha256=b-rUOZWKQJ1sCgm-N0aY2jB2A7wErx8BIWRdltG_ido,493
|
|
298
310
|
agentpool/utils/parse_time.py,sha256=iGZligPt4X-PM87dV9OjV58Ec6ngbl-gY_ufUmAfogE,2423
|
|
311
|
+
agentpool/utils/pydantic_ai_helpers.py,sha256=e86ywboNh_QaTB9IISpas7bRr_ZX9dXuMujFDgXiJKY,1518
|
|
299
312
|
agentpool/utils/result_utils.py,sha256=RhiBzgzghOPCO87KoOslZs9LZQdSBWFi40Yvb-bBw_0,1108
|
|
300
313
|
agentpool/utils/signatures.py,sha256=XzpXPfs1XQb26mD4e8bjUlWXbW1bsswLtifCAuYSELY,11564
|
|
301
|
-
agentpool/utils/streams.py,sha256=
|
|
314
|
+
agentpool/utils/streams.py,sha256=fF9kGaRE4vjmB8f1LHBQkywx_nG8-Uui7z_J-nY8GFM,25412
|
|
315
|
+
agentpool/utils/subprocess_utils.py,sha256=_bFrV-kZryaIias185r2mVApCS7WgVnK2PPtWU7O_ZU,4253
|
|
302
316
|
agentpool/utils/tasks.py,sha256=Z1uZi98pFx8BoNBE9ef9P6jr1cgpMNkhT79IFcIuqN8,6581
|
|
317
|
+
agentpool/utils/token_breakdown.py,sha256=MS0JrxoNqI073mWsfI2s7BCvGr4SpgAQQBBaWnxXL8M,15894
|
|
303
318
|
agentpool/vfs_registry.py,sha256=0bMQJRp9xjtE6ouKxtfyBzC4J9rkSwc4Bb2ntV3owMc,8079
|
|
304
319
|
agentpool_cli/__init__.py,sha256=fi0loBvgZqzpzcmajCKbrAMxxVFxdaUfCpqLDYxZtDo,903
|
|
305
|
-
agentpool_cli/__main__.py,sha256=
|
|
320
|
+
agentpool_cli/__main__.py,sha256=XTdhdudeXiQW0tsCAg68aRPmHfU_RygZF_Oliw7fWMU,2346
|
|
306
321
|
agentpool_cli/agent.py,sha256=_GZpCXjm9QUaSjuT3JloYDWsgQVebg2AXXa69t4bLYM,5367
|
|
307
322
|
agentpool_cli/cli_types.py,sha256=va8hnyRhzHBNLa8ZvrqpZ-yWzyou0sdWUITYLnYBIjQ,532
|
|
308
323
|
agentpool_cli/common.py,sha256=lz89WDTwt9xvmcoS8CcDjFRm7KxKX9jD2tNAIQD7dxA,4822
|
|
@@ -311,33 +326,38 @@ agentpool_cli/history.py,sha256=jd846SmfdUn8hIOfF-pYRUwtfnVmnAiXVg1Jn-iYSdQ,7445
|
|
|
311
326
|
agentpool_cli/log.py,sha256=JEnuiqNWkk7clYmhBFZAN04ZGs6X4JPJtj5Hd4RuGNc,2133
|
|
312
327
|
agentpool_cli/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
313
328
|
agentpool_cli/run.py,sha256=Iwn-ZpKl-Y2piO9GrgiZGZxrZQrodyRHB8cPhzqTeok,2934
|
|
314
|
-
agentpool_cli/serve_acp.py,sha256
|
|
329
|
+
agentpool_cli/serve_acp.py,sha256=pOsMlzXsJRAUAHI0gu2zBlZlqvWcUWdFhlpuKDtRWh0,6663
|
|
330
|
+
agentpool_cli/serve_agui.py,sha256=nvr0jjGsrtt8d13477NvjCd-JzoKehB1dhZAKMUq3C0,2609
|
|
315
331
|
agentpool_cli/serve_api.py,sha256=0F_nU0HIu6SIK-DwTbNH-6Kr0g8LD_GoqFSVCIA8wYQ,2068
|
|
316
332
|
agentpool_cli/serve_mcp.py,sha256=i_G_zB4KJv6xr5fkqtm8Spzvq6e9HDS7BmDdLbDYQu8,2462
|
|
333
|
+
agentpool_cli/serve_opencode.py,sha256=IOpagGOIc5YSW2iMNF7HSws6Nh3kZ-YGyPF6qvBhPc8,3698
|
|
317
334
|
agentpool_cli/serve_vercel.py,sha256=vSOqLYoV9tejSarCc7lKVEqRFQzSntiSQlCcjmxr4b4,8147
|
|
318
335
|
agentpool_cli/store.py,sha256=bjd7MCHQZZHSH0Uh2VvKd60QO88BBZnO7ORSlAdXNmY,5410
|
|
319
336
|
agentpool_cli/task.py,sha256=ABKyNlGx3Pr3T8uyGZvajsCBHf1n9xY5Reh9uLI8hsw,2369
|
|
320
337
|
agentpool_cli/utils.py,sha256=Ac6nO4y31oPPSoZ6WraCGqtDjHQI8C1jlrfxbjPmVRE,3179
|
|
321
338
|
agentpool_cli/watch.py,sha256=_8dGPnGWUK24VPAvBzUg4pYED2FE2tvsyrCx-9EfAvs,1679
|
|
322
|
-
agentpool_commands/__init__.py,sha256=
|
|
323
|
-
agentpool_commands/agents.py,sha256
|
|
339
|
+
agentpool_commands/__init__.py,sha256=l8T-NDflhjrgsCl4ujWkmA9gdp-CCeqs92I40nVdSiE,7812
|
|
340
|
+
agentpool_commands/agents.py,sha256=-fpamafS90-8qKq7VN6Kgs1mi_wRnzHmFlcOk6OphRI,8969
|
|
324
341
|
agentpool_commands/base.py,sha256=3SmCor_AnSQxvaUtMZV0QU5QnSbGL9W0LHpMr35RxGQ,1247
|
|
325
342
|
agentpool_commands/commands.py,sha256=sJbyJHFv3WAautmxbWp5x6jEF_y6k5zQb1l3hzGhjeg,1779
|
|
326
343
|
agentpool_commands/completers.py,sha256=MNZBWlgFqCZfzZ7XV22hlk_2fSwTUUN9Qoa8j8HKy2E,3908
|
|
327
344
|
agentpool_commands/connections.py,sha256=WjS87xKl9brBKeOyT0c5VheUgIjBWSIGtHh5vHgEXFU,5407
|
|
345
|
+
agentpool_commands/history.py,sha256=-ovu6TiT74wr_nai6WWF7__LFiMCpNprdM5ajSlN31Q,1893
|
|
328
346
|
agentpool_commands/markdown_utils.py,sha256=iHlIUzIG0SO7iSRrgMrw4VXUDAABiOH6OvX7Husm1QI,809
|
|
329
|
-
agentpool_commands/
|
|
347
|
+
agentpool_commands/mcp.py,sha256=qvvCFXGMQ-BYhuHUW0mLeWU8d18S1lqPAZMuWmmaXa4,5615
|
|
348
|
+
agentpool_commands/models.py,sha256=LZG-NHNekVY7XY6l6QgnQVVVmTm2ob7nkBhXVXBIgu8,3394
|
|
330
349
|
agentpool_commands/prompts.py,sha256=-rRVTPhbWGZgzK7gJ0OrJgs4pLiJXOdK2dENjWdhCnM,2754
|
|
331
350
|
agentpool_commands/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
332
351
|
agentpool_commands/read.py,sha256=IcMoOSClj8YrYu3Z07ASdR0FBbXohNDL-rx93tQQJk4,2335
|
|
333
352
|
agentpool_commands/resources.py,sha256=oMLOSCKWutzuGTBZgNCG7ATcG4ezoKk7PHf21axogZA,7310
|
|
334
353
|
agentpool_commands/session.py,sha256=JKWWja52eVcRBsOn8VQxp1qX2Aq6JClvpXRouTb2mkM,1284
|
|
335
|
-
agentpool_commands/tools.py,sha256=
|
|
336
|
-
agentpool_commands/utils.py,sha256=
|
|
354
|
+
agentpool_commands/tools.py,sha256=yYKRjahVSjkXn6rkhLoPoIFQ9grrMP-1VHg5-MIzNz4,9620
|
|
355
|
+
agentpool_commands/utils.py,sha256=9lfKa92xIDXJZll-FBPsGZ9siCQgO0AIdVrWExssSBM,8062
|
|
337
356
|
agentpool_commands/workers.py,sha256=pGC-roAqzB9TXFJX_KAlORdpqY_xFxoyjHkvPko2Z3E,5241
|
|
338
357
|
agentpool_config/__init__.py,sha256=pWChmhKERCnyWKSHQ_yqkbhycc5-c8VZ0LaFuVDROuw,1337
|
|
339
|
-
agentpool_config/builtin_tools.py,sha256=
|
|
340
|
-
agentpool_config/commands.py,sha256=
|
|
358
|
+
agentpool_config/builtin_tools.py,sha256=XD5rUvdpkpgiah5MZ4ev5V6auWGKsJ2uprvtyyEhHjg,9585
|
|
359
|
+
agentpool_config/commands.py,sha256=ia-VyprYxvgO247M5PhrQTg1tUBPV3mEwe9T9atKzL8,8780
|
|
360
|
+
agentpool_config/compaction.py,sha256=pdblL8ZiPmXgf9615Cl6oFkHJVerYfX5zguWe1m2I0c,7651
|
|
341
361
|
agentpool_config/conditions.py,sha256=LjqtR8gwOYNwmFJKuy_p9i9pJhjHzLjM_7s_kR4r9oE,10077
|
|
342
362
|
agentpool_config/converters.py,sha256=FlDkzRmrFXW58tjJAoLpn_v2HmXhw89VmRi7qHItEy0,854
|
|
343
363
|
agentpool_config/durable.py,sha256=3LvHDH1Oj98EjQ1xM5WaXPyvfjGY4k-7cHeRBxz7LrE,9385
|
|
@@ -349,7 +369,7 @@ agentpool_config/hooks.py,sha256=U0LnIPH5IiK7YXJ2ABRsQ4ZK1G64VW9LJ9kFPVCrl50,717
|
|
|
349
369
|
agentpool_config/jinja.py,sha256=klRcLRvbhnFY4iXG6UeIPS_TcHr2tHw6xSbJdNC98kA,6828
|
|
350
370
|
agentpool_config/knowledge.py,sha256=xdrC3mseRs8iH7DN9Jlvbj_pcmw-GlY0pFmWqY9fDTQ,1384
|
|
351
371
|
agentpool_config/loaders.py,sha256=OFwinzF_i6ek8IVf-_IIXJD_gnt37UGSVsD0wjpcygo,11861
|
|
352
|
-
agentpool_config/mcp_server.py,sha256=
|
|
372
|
+
agentpool_config/mcp_server.py,sha256=e7GokmHm2H0mwWbaGIlRUsuiDkl_sSL7KMrq--XEXvc,12498
|
|
353
373
|
agentpool_config/nodes.py,sha256=Af0bhEitZu8R1PIIYwxUa1Dee6l8r89WPoAKVvMT9fE,6062
|
|
354
374
|
agentpool_config/observability.py,sha256=LaPZnXBcTuk9Pso4aTY8YZI2R322fKYDcOQ052HEaCs,6347
|
|
355
375
|
agentpool_config/output_types.py,sha256=D3kuSNzXrn3GCoc_Ej2Hu6_kOqJEWiX675nDFj4t-6g,1822
|
|
@@ -360,12 +380,12 @@ agentpool_config/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
|
360
380
|
agentpool_config/resources.py,sha256=0aP_wbkdRa8Nv4fF2WLAuHG1Fu--PFNYol0DdvqnEB0,948
|
|
361
381
|
agentpool_config/session.py,sha256=a65YO221obbJZ3jvLPsTSdCWOleVCNGU0f1UspbQd7E,3754
|
|
362
382
|
agentpool_config/skills.py,sha256=pUesZyxb8WpYUAPkjF_SCAS2XtaacUrG68vScek-Mt8,279
|
|
363
|
-
agentpool_config/storage.py,sha256=
|
|
383
|
+
agentpool_config/storage.py,sha256=Tz3Tdm60s6ukvlT629MrCN7M8tHDl7_VOJ275DRWNP0,11150
|
|
364
384
|
agentpool_config/system_prompts.py,sha256=nt7GgFCYpDvYK1gon8-AMk1yX99ipOSxFOiBVo1OlUA,5789
|
|
365
385
|
agentpool_config/task.py,sha256=GBu1TjwTNafzCeSbAS60MnhluwrLz3fuiHGGIG-IW_Y,5209
|
|
366
386
|
agentpool_config/teams.py,sha256=i84mTdLNGfyBXTM-MG4AljFZkHEBT-saTITkpsTrGb0,1546
|
|
367
|
-
agentpool_config/tools.py,sha256=
|
|
368
|
-
agentpool_config/toolsets.py,sha256=
|
|
387
|
+
agentpool_config/tools.py,sha256=rVKJRw0L0qLyqV24sD46-UkjcbQXpRUao49CL29Maq0,3653
|
|
388
|
+
agentpool_config/toolsets.py,sha256=vyaMDlM4qBeRPkKzgLMKYV4p8OXgT0ldttNoTxwQfqc,32316
|
|
369
389
|
agentpool_config/workers.py,sha256=bcAaOLyM7su-aQEe5TU7bKbN_kQyS02GgSUsLDyGanM,2599
|
|
370
390
|
agentpool_prompts/__init__.py,sha256=cW6TB3SK5p0_s6dJGXP8kpJq3EnbgA0E0gk3VfiuHS4,23
|
|
371
391
|
agentpool_prompts/braintrust_hub.py,sha256=CekSCI2IkM9v0BY19dZu4yYPuGrutNkNhTSwhSnriJg,8757
|
|
@@ -379,13 +399,13 @@ agentpool_server/a2a_server/a2a_types.py,sha256=XL4cGp7rYI1_sLBnlc0hU6vNNqZtMMyr
|
|
|
379
399
|
agentpool_server/a2a_server/server.py,sha256=XXInjRT1tD8Qqc_H2JKypKvpkj3kZA06l-lfaeUw25Q,6259
|
|
380
400
|
agentpool_server/a2a_server/storage.py,sha256=vMPRmpNR_40SB4hUUoGomzDR8z_BfQU3hva3Zy4oNQ4,2636
|
|
381
401
|
agentpool_server/acp_server/__init__.py,sha256=E_oL_bnCkn2tiL-QEjuZ1hyiANPmtJiCUMGfozvPTFM,636
|
|
382
|
-
agentpool_server/acp_server/acp_agent.py,sha256=
|
|
402
|
+
agentpool_server/acp_server/acp_agent.py,sha256=SybbA_HzCT6FkiK9gqq7nwmY90cjFt6kvWb9DvkpS6E,31475
|
|
383
403
|
agentpool_server/acp_server/acp_tools.py,sha256=cgoYO_rAF6JyHEupuM4Zwvli4pI-F7C6LuFWsbWA3qg,1486
|
|
384
404
|
agentpool_server/acp_server/commands/__init__.py,sha256=H1RULVwM52SHbPktV73gSNyjC_whtjMl5DXTLcJutsk,440
|
|
385
|
-
agentpool_server/acp_server/commands/acp_commands.py,sha256=
|
|
405
|
+
agentpool_server/acp_server/commands/acp_commands.py,sha256=HzkiMsKk_mLBuQuj2mJiqo13sXR9K3xlaVYb0Dz71lo,28780
|
|
386
406
|
agentpool_server/acp_server/commands/debug_commands.py,sha256=YcHZqmmWTmf8h52rmzVBdnNZO-c9lSCZZ0IFGIxEkQA,12741
|
|
387
407
|
agentpool_server/acp_server/commands/docs_commands/__init__.py,sha256=wGcY0vRrWoc-AHRwileJpk_Ok-cI7dMmgTgpFSUBfHk,1004
|
|
388
|
-
agentpool_server/acp_server/commands/docs_commands/fetch_repo.py,sha256=
|
|
408
|
+
agentpool_server/acp_server/commands/docs_commands/fetch_repo.py,sha256=36g0CoB7eI53RU38XWzcimSOssvo1Bwrf3R0sLhr9aI,6271
|
|
389
409
|
agentpool_server/acp_server/commands/docs_commands/get_schema.py,sha256=-r0iSQWiMele2L1EcKcSVVRLBE9fy8hCViIF75aHX5M,6584
|
|
390
410
|
agentpool_server/acp_server/commands/docs_commands/get_source.py,sha256=xKt_-PjLTAwRpCo9jVlgQIKCCOek39oKc4i0l2npTe4,4090
|
|
391
411
|
agentpool_server/acp_server/commands/docs_commands/git_diff.py,sha256=h3f07LU9GdtmwibGU8grGv1K6CxbkmXVwhVeyNY4v80,4109
|
|
@@ -394,8 +414,8 @@ agentpool_server/acp_server/commands/docs_commands/url_to_markdown.py,sha256=XJX
|
|
|
394
414
|
agentpool_server/acp_server/commands/spawn.py,sha256=HnDOWF5LAT5nO5I-ILq97zr-3eTBgmUSO9eXFQ2STOA,7766
|
|
395
415
|
agentpool_server/acp_server/converters.py,sha256=vVlZOwkm-vP3Ei2BheO7M-6mVE5vhQIxg4dy09Lo-wk,8291
|
|
396
416
|
agentpool_server/acp_server/input_provider.py,sha256=fvQiXluJnajbhM3993ErY2NZIyqBttUC1AX0wj_BQp8,14584
|
|
397
|
-
agentpool_server/acp_server/server.py,sha256=
|
|
398
|
-
agentpool_server/acp_server/session.py,sha256=
|
|
417
|
+
agentpool_server/acp_server/server.py,sha256=C5nkLQC5JbTKVXpWWTAPVxRb5n6uMBDHQpBRK6ieSM4,8716
|
|
418
|
+
agentpool_server/acp_server/session.py,sha256=J1U-Q7LPGay2UmwFqwg_P7OkVxkqb7P14sAfYYdlw1Q,48349
|
|
399
419
|
agentpool_server/acp_server/session_manager.py,sha256=ns-UPYnk_dN-vq9OWq_K4MTJte6rhTYa1gWcQ420J9s,10923
|
|
400
420
|
agentpool_server/acp_server/syntax_detection.py,sha256=CtYVOUu7lt4i5I34inTmFaJ5gF9UkEM0_M25P_R54wo,6360
|
|
401
421
|
agentpool_server/acp_server/zed_tools.md,sha256=5tpE1-ARtKAeYOcGbvitIUehRAi8-JiR5flNuZ87AEg,3589
|
|
@@ -415,51 +435,89 @@ agentpool_server/openai_api_server/responses/__init__.py,sha256=4yMHkaCxJEmNODPv
|
|
|
415
435
|
agentpool_server/openai_api_server/responses/helpers.py,sha256=uD_12vWBKTMUE8HUqi7EuY6O0LvmqSBI1gHL6fp60U0,2439
|
|
416
436
|
agentpool_server/openai_api_server/responses/models.py,sha256=d_yLcJTT1hsweEc-gfhHxl3a0nzX7IN0SyrAICeq5_w,2550
|
|
417
437
|
agentpool_server/openai_api_server/server.py,sha256=VxfzZkLFNCEXMpl83Rh9EKh2P7EJgmM1kDGeZAGthR0,8845
|
|
438
|
+
agentpool_server/opencode_server/.rules,sha256=_mvVTNkGfWqiBNvGnUqK10SOtqACHZOCU1SiwyE193k,3034
|
|
439
|
+
agentpool_server/opencode_server/ENDPOINTS.md,sha256=YN-tCe5BPlCIS53ydOx9wkShrHD36VyHDLxTXs9UQMc,12379
|
|
440
|
+
agentpool_server/opencode_server/__init__.py,sha256=Np0o29VjclqKnr2s9xcfNN2U1oJ1z6NxgA54QUF1Lw0,669
|
|
441
|
+
agentpool_server/opencode_server/command_validation.py,sha256=9y5GU67NtsNA26bHv1djwBIdozzt-huAiXM8XPZMyE8,6063
|
|
442
|
+
agentpool_server/opencode_server/converters.py,sha256=2QK524U4_tYssMYG-zlIrth1aaz7x9iyMbWA6pjEfeI,30605
|
|
443
|
+
agentpool_server/opencode_server/dependencies.py,sha256=cSOFYAw9w4JuD57glx9IO0KkDeMFEsFigz3haheGVuQ,617
|
|
444
|
+
agentpool_server/opencode_server/input_provider.py,sha256=Me6a5JExoD96twIZ3WIpaTT2MdJ6e6_h2WQGL7CqJTc,10128
|
|
445
|
+
agentpool_server/opencode_server/models/__init__.py,sha256=Ylv4BhOnQEFeLHYSrNfdXqFxL7_uPdnPSZPN3MEb_Wo,4848
|
|
446
|
+
agentpool_server/opencode_server/models/agent.py,sha256=idnjhO31eF58B8Lz7A_05vK1H5_Exgyadcq116tGOxk,1544
|
|
447
|
+
agentpool_server/opencode_server/models/app.py,sha256=p9fBzjIjwJZod1dG7h_ybjxwcEq31Q0GK9nrYh0Fdrc,1176
|
|
448
|
+
agentpool_server/opencode_server/models/base.py,sha256=iK0nwwlnNrxXYOgUrpfmqfAQj6f-IhN4l1cTQZg9n60,733
|
|
449
|
+
agentpool_server/opencode_server/models/common.py,sha256=MGyhcWYxsG9VrX89fnUCtynmOcTl9KAY3IVCglOG4Xo,549
|
|
450
|
+
agentpool_server/opencode_server/models/config.py,sha256=yLRPy6dYm2_r5TyQ4tt-2k5b-DLjm4Go53zT1mFltNM,813
|
|
451
|
+
agentpool_server/opencode_server/models/events.py,sha256=Sm3Tp4jXUuuHEgLFxE8Dg1bQ2Gt_LMExg2k9ARUGrNE,17715
|
|
452
|
+
agentpool_server/opencode_server/models/file.py,sha256=3zIxf3k6AAV8SxiGCPQQcs_JuixkpIruXif3DTapJS4,1891
|
|
453
|
+
agentpool_server/opencode_server/models/mcp.py,sha256=QxhMYpg2TYyrOnb2Z7s57IXToyH3NgGhOdTyHIKcDZI,583
|
|
454
|
+
agentpool_server/opencode_server/models/message.py,sha256=24g3gzq6JCe0i8DwDd_mL77JBMmFAEbSf5FdLtUH7ZI,3608
|
|
455
|
+
agentpool_server/opencode_server/models/parts.py,sha256=gy40mIaoL4oNfIMOV2VvfJXbEW9QpXbNpDafxRLe6H8,4082
|
|
456
|
+
agentpool_server/opencode_server/models/provider.py,sha256=jNqx4KkRNxkcjUX21jk90lXP1SiO3JEm1HAXM3XbDcU,1844
|
|
457
|
+
agentpool_server/opencode_server/models/pty.py,sha256=m1U21_ULe9E0-qjk8enjwrrwgMNvazKUocHmyvqxwx0,867
|
|
458
|
+
agentpool_server/opencode_server/models/session.py,sha256=zAuCRlhzqyUOYcKX0c4AeAQBrmsQ_gQjR4_PNl-F2Lk,2599
|
|
459
|
+
agentpool_server/opencode_server/routes/__init__.py,sha256=4cMiO8KctahGlaZgJ-BoQ7GnxLQAma5pJKI2YtmGawM,1130
|
|
460
|
+
agentpool_server/opencode_server/routes/agent_routes.py,sha256=FjGvIdhL_9vhgoANVCXXRb0Fp6KB7nwsBq1TlDpX3wA,14284
|
|
461
|
+
agentpool_server/opencode_server/routes/app_routes.py,sha256=skPsOyvbHGG3KYFzx40TMq-ljSZ5j0HT1L72qZNUt6E,3950
|
|
462
|
+
agentpool_server/opencode_server/routes/config_routes.py,sha256=nyXxULKtJ3l2XoDvVe79FUTKHPJqYF3JLTAH9kVlMOg,7610
|
|
463
|
+
agentpool_server/opencode_server/routes/file_routes.py,sha256=2B3Qw0ljhNajwX12JR6_g-EguPJSX1a1emtkOdjTslA,14474
|
|
464
|
+
agentpool_server/opencode_server/routes/global_routes.py,sha256=UGAhh5NQnTKxll_HUOGgpmrM29otz0arJEiASL9nI98,3076
|
|
465
|
+
agentpool_server/opencode_server/routes/lsp_routes.py,sha256=bvEUtcH5WTNpFXxGCIcqTKGIvPpclGSAzKYxqtH5Csc,10152
|
|
466
|
+
agentpool_server/opencode_server/routes/message_routes.py,sha256=Knet8SMCgO0LYTYXrav84cypUm85NWns947o-dGbno8,29458
|
|
467
|
+
agentpool_server/opencode_server/routes/pty_routes.py,sha256=Yyz8xt_hNvrGa9tAtyz_pZv4BEyuc0P3rTFCdalH10A,9277
|
|
468
|
+
agentpool_server/opencode_server/routes/session_routes.py,sha256=-JSMxHFzgogtGhLanJm7JsZsmy5kGCXo6v1WfyOTZjc,46934
|
|
469
|
+
agentpool_server/opencode_server/routes/tui_routes.py,sha256=Wf7eD6kWJ7HxS08AtN1FLNSm0zbRIsqhOJlL9MZzb98,4170
|
|
470
|
+
agentpool_server/opencode_server/server.py,sha256=LsG92-5ChkNlFaW1WIbUHak4ryYcBYC1r2-yrMHswSY,14114
|
|
471
|
+
agentpool_server/opencode_server/state.py,sha256=kalCkDZHMDgzPOIe9QIrSx8DMNV3i7_Fnhrf322TWR0,4234
|
|
472
|
+
agentpool_server/opencode_server/time_utils.py,sha256=R1HU8altQgjFHKqQS-hrKNyYpmYji8-1wbYfH7oKnPY,196
|
|
418
473
|
agentpool_server/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
419
|
-
agentpool_storage/__init__.py,sha256=
|
|
420
|
-
agentpool_storage/base.py,sha256=
|
|
421
|
-
agentpool_storage/
|
|
474
|
+
agentpool_storage/__init__.py,sha256=Y7Gxm5ubfZGpt2QIbpT43E9oTB-OzS_iJPXy9R4gHmo,691
|
|
475
|
+
agentpool_storage/base.py,sha256=XTJQJwjD-J5v8iqX31FVUHk_c7QpztjqSwSSwHWq3A8,12520
|
|
476
|
+
agentpool_storage/claude_provider.py,sha256=FMPU6-wna-G8urA-4nURp25kPJhR5grMMcoUJH9M204,31007
|
|
477
|
+
agentpool_storage/file_provider.py,sha256=wix4rvnRhkCZyZJgwyO7GSJPX0h3as1t4eyvBNLsxs4,16791
|
|
422
478
|
agentpool_storage/formatters.py,sha256=vpPganIW7fgy9rUilRiV5FXASYnW9E2tTrSw4nVUptw,4142
|
|
423
|
-
agentpool_storage/memory_provider.py,sha256=
|
|
424
|
-
agentpool_storage/models.py,sha256=
|
|
479
|
+
agentpool_storage/memory_provider.py,sha256=tNVy51IMM1e1hWavSHL_3eLhXucMgC_RMj1vM4qMqwo,16292
|
|
480
|
+
agentpool_storage/models.py,sha256=rb_gEqxaYc5C9Ax56cBIxw8YWRoj6CjxR-Jgjj59aLE,2572
|
|
481
|
+
agentpool_storage/opencode_provider.py,sha256=B7aepPWR56YfNqdoC6JW9dhbUor_N8bnVQgBaTzQDAQ,24920
|
|
482
|
+
agentpool_storage/project_store.py,sha256=-GaLTedrtnEomfd6yp3ViBVoEMnn0JN4kPkKSHbxjPg,9803
|
|
425
483
|
agentpool_storage/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
426
|
-
agentpool_storage/session_store.py,sha256=
|
|
427
|
-
agentpool_storage/sql_provider/__init__.py,sha256=
|
|
484
|
+
agentpool_storage/session_store.py,sha256=OFplIVX8hf2mDrr3aE6xZXNdk2NkU9qKh1dWfLsR7no,8674
|
|
485
|
+
agentpool_storage/sql_provider/__init__.py,sha256=hb0Q9muzqYGAEmUVQVClrUarrt6PoJgfyoIz7hDi7aI,453
|
|
428
486
|
agentpool_storage/sql_provider/cli.py,sha256=vvaMa5ns_VXRhGdWLfy84RcEXUxIOZJPgwtpUEQWGUs,4004
|
|
429
|
-
agentpool_storage/sql_provider/models.py,sha256=
|
|
487
|
+
agentpool_storage/sql_provider/models.py,sha256=JPZJKz4H4PHHAjBZsaEmpJJdcHA-71iYGj91K8-c3tM,9356
|
|
430
488
|
agentpool_storage/sql_provider/queries.py,sha256=rQbZMEXClPLi339f8Src3sYvQtvLqiGhVNodQ0rio5Q,391
|
|
431
|
-
agentpool_storage/sql_provider/sql_provider.py,sha256=
|
|
432
|
-
agentpool_storage/sql_provider/utils.py,sha256=
|
|
433
|
-
agentpool_storage/text_log_provider.py,sha256=
|
|
489
|
+
agentpool_storage/sql_provider/sql_provider.py,sha256=XIA-1ode2mBkS8wUoqfNpAljG6wOACeAuvvUhz6JvjQ,21165
|
|
490
|
+
agentpool_storage/sql_provider/utils.py,sha256=nVOjx6gTfKqE_542iSw1FFKokmTdF5FAwMDeBiNJeyQ,8624
|
|
491
|
+
agentpool_storage/text_log_provider.py,sha256=GLPKrUbpdOQp3ZvFPcwpgpps7DA2bAb8Hz0z8IV46dk,9354
|
|
434
492
|
agentpool_toolsets/__init__.py,sha256=Pv1VchRHUuu5zY2OBwzDRj3ocPb9K8IHbeYobcxab2w,471
|
|
435
|
-
agentpool_toolsets/builtin/__init__.py,sha256=
|
|
436
|
-
agentpool_toolsets/builtin/agent_management.py,sha256=OtRSqcvzupKbBdRFAa4nSXskRQA-4MloMz5la5FeWvg,8000
|
|
493
|
+
agentpool_toolsets/builtin/__init__.py,sha256=oJ0IJEF6WxyPGfXnyVsfyJ38Msz5iINZMIPwl3o9t8E,767
|
|
437
494
|
agentpool_toolsets/builtin/chain.py,sha256=OpWA1xp86p2bFR1LiCU90s3dikeFLWnUiY3IH-7yJ0U,10212
|
|
438
|
-
agentpool_toolsets/builtin/code.py,sha256=
|
|
439
|
-
agentpool_toolsets/builtin/debug.py,sha256=
|
|
440
|
-
agentpool_toolsets/builtin/execution_environment.py,sha256=
|
|
495
|
+
agentpool_toolsets/builtin/code.py,sha256=hxtHztLmCmcVrEXwATvGxf1SeJlCavD-xB_NBZmENUU,15746
|
|
496
|
+
agentpool_toolsets/builtin/debug.py,sha256=WckDuLERx0PL2lbPO-PWvmaBdV8eakBrN_bjKOqLjlw,8848
|
|
497
|
+
agentpool_toolsets/builtin/execution_environment.py,sha256=QZq6Q3SFMDRqO1oueJguP-R1t2BBPMDLTNWkpMS6jj4,15984
|
|
441
498
|
agentpool_toolsets/builtin/file_edit/__init__.py,sha256=MDI3hf8bDVMm5JfyrVveemtLTa7Bomue4V_rF6bS1lg,201
|
|
442
|
-
agentpool_toolsets/builtin/file_edit/file_edit.py,sha256=
|
|
499
|
+
agentpool_toolsets/builtin/file_edit/file_edit.py,sha256=Ogz6LlZf4GIpG7iwotu2bWaqvzrN_H8Xq93uwPDRpmU,28502
|
|
443
500
|
agentpool_toolsets/builtin/file_edit/fuzzy_matcher/__init__.py,sha256=FTQTajleB9XtaBsj6NDDZY1ZuVTLCsGlZxTau_u9cVo,144
|
|
444
501
|
agentpool_toolsets/builtin/file_edit/fuzzy_matcher/example_usage.py,sha256=8sqRETZazUMQ8N5D5ISSq9kd_yMngSiMQlli4cqeyC8,8776
|
|
445
502
|
agentpool_toolsets/builtin/file_edit/fuzzy_matcher/streaming_fuzzy_matcher.py,sha256=hECDvmTtQDvy41crX_gMuKg_xv_K48Qe-nIzdAqISaI,14956
|
|
446
|
-
agentpool_toolsets/builtin/
|
|
447
|
-
agentpool_toolsets/builtin/integration.py,sha256=XWd3UC3Uh6QSlr853ZTnLfdwE4UH87iJPkJnxCKxEVA,2745
|
|
448
|
-
agentpool_toolsets/builtin/skills.py,sha256=Lxi10BHht7C-yPMC-CMajbIELakzuzpy3XQ8kh8rb4M,2665
|
|
503
|
+
agentpool_toolsets/builtin/skills.py,sha256=S1H5htgIdco5H8nluxmh4WBL0b2fdJs0kaWzGnYZWKI,5325
|
|
449
504
|
agentpool_toolsets/builtin/subagent_tools.py,sha256=wGcQ_bFv25BGww7XjJOzfTrQjkt8bFrg0foD2Op1b1E,11882
|
|
450
|
-
agentpool_toolsets/builtin/tool_management.py,sha256=d2chg5cO_XtQZTHQMq2FzL9XbHDgXmGUOW26Tnb5Qh4,2635
|
|
451
505
|
agentpool_toolsets/builtin/user_interaction.py,sha256=ZibSpRigT-tp6sZgaKJ_5hNsXRWc8U3yk9I0oZHdQjY,1800
|
|
452
506
|
agentpool_toolsets/builtin/workers.py,sha256=GggWKMHXrzZQbdfWYGyZwzIzjhqwDeodnmnFmKu-Y8k,4629
|
|
453
507
|
agentpool_toolsets/composio_toolset.py,sha256=cJ4Bsa7TdZ33AUZ9rXY8eChEbONLeWQxNy6wcmhjkAY,3101
|
|
454
508
|
agentpool_toolsets/config_creation.py,sha256=0P-sZ9-cAN49qJWPQkL6S-lVwRprvzbTqm28m5HjBjg,6698
|
|
455
509
|
agentpool_toolsets/entry_points.py,sha256=1TZR5gW_c8h4vAdbEPOhNhZINJAR_SpQ3_fHQRYjlRY,1358
|
|
456
|
-
agentpool_toolsets/fsspec_toolset/__init__.py,sha256=
|
|
457
|
-
agentpool_toolsets/fsspec_toolset/diagnostics.py,sha256=
|
|
458
|
-
agentpool_toolsets/fsspec_toolset/grep.py,sha256=
|
|
510
|
+
agentpool_toolsets/fsspec_toolset/__init__.py,sha256=vypf59YevF02dSsxJ1tKR8_R3KwurVsk_tw5MTpYWrc,478
|
|
511
|
+
agentpool_toolsets/fsspec_toolset/diagnostics.py,sha256=UFgi4_KIq1Eh32Tw-WwcQ5Bw0DX-nguzY6r7P_4z884,29106
|
|
512
|
+
agentpool_toolsets/fsspec_toolset/grep.py,sha256=x7GxOMSBksNFPisxe8Pnb1kolZK5jQGxA_vj7oTFZhM,16083
|
|
459
513
|
agentpool_toolsets/fsspec_toolset/helpers.py,sha256=mXhF_v9JPW1cMeZ_pI7lQgJCK4kKM64vjVcAMyWJGao,20611
|
|
514
|
+
agentpool_toolsets/fsspec_toolset/image_utils.py,sha256=nmP0G3eAH4lrtTG0VTg_TyRFGzoy_XHJ3qei5ih7Zvo,5780
|
|
460
515
|
agentpool_toolsets/fsspec_toolset/streaming_diff_parser.py,sha256=i7EzDDqIgRvvx-fCE46FFh6Chxds-s86pOXNgrZXFu0,8744
|
|
461
|
-
agentpool_toolsets/fsspec_toolset/toolset.py,sha256=
|
|
462
|
-
agentpool_toolsets/
|
|
516
|
+
agentpool_toolsets/fsspec_toolset/toolset.py,sha256=aE4jqOobeaz26C9wF3-CUFHJNeb6gjR65Ri7zcAVP9Y,64394
|
|
517
|
+
agentpool_toolsets/mcp_discovery/__init__.py,sha256=sjtLjLkxis0PVZNFMTTQmjmiY-R0lAT68dLizmb4YgY,190
|
|
518
|
+
agentpool_toolsets/mcp_discovery/data/mcp_servers.parquet,sha256=l17NY3qkFVRytcMbojmHt9diyo_2Mb7Eshm6nPNMISw,3180046
|
|
519
|
+
agentpool_toolsets/mcp_discovery/toolset.py,sha256=dKBAIntYGGKn2WIi0WjmT1eP_hC2ml-Nn_1yOZzm7w8,17228
|
|
520
|
+
agentpool_toolsets/mcp_run_toolset.py,sha256=pNBWO_4DmTWvYjqQ5b_jOdFi14Gd5dFV_xzIGxTZTN0,4975
|
|
463
521
|
agentpool_toolsets/notifications.py,sha256=akgqMfl5Bv1U3LXNgibogsugqQQfKm4-meVjllHSRnk,5171
|
|
464
522
|
agentpool_toolsets/openapi.py,sha256=QhBEd2S9yFahX_LPE82jUvnh60ipLDAaHcsja8txUZI,4080
|
|
465
523
|
agentpool_toolsets/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -467,8 +525,8 @@ agentpool_toolsets/search_toolset.py,sha256=T4wAwOVRCUGcuJ21sEMFcm-FaYf6iryLFRqC
|
|
|
467
525
|
agentpool_toolsets/semantic_memory_toolset.py,sha256=qLO1v0QYhSJTJzABW6RO7oVVM4WK9LkAwktAHo3Ea4U,19596
|
|
468
526
|
agentpool_toolsets/streaming_tools.py,sha256=z7_-E_AtNDCNC9htp7pSQES_19E3tRxQcAIwPETAJn0,8566
|
|
469
527
|
agentpool_toolsets/vfs_toolset.py,sha256=I5TdePKALERXIFPFvug87zGIoNNNVo_V8Va3g8H7CQs,3905
|
|
470
|
-
agentpool-2.
|
|
471
|
-
agentpool-2.
|
|
472
|
-
agentpool-2.
|
|
473
|
-
agentpool-2.
|
|
474
|
-
agentpool-2.
|
|
528
|
+
agentpool-2.2.3.dist-info/licenses/LICENSE,sha256=AteGCH9r177TxxrOFEiOARrastASsf7yW6MQxlAHdwA,1078
|
|
529
|
+
agentpool-2.2.3.dist-info/WHEEL,sha256=RRVLqVugUmFOqBedBFAmA4bsgFcROUBiSUKlERi0Hcg,79
|
|
530
|
+
agentpool-2.2.3.dist-info/entry_points.txt,sha256=AKoyr6iy8lEBbqlkxRMfXuFGtmigwOeK7JDQ08mc8kk,331
|
|
531
|
+
agentpool-2.2.3.dist-info/METADATA,sha256=nyD7sPQlgTFqTCchE4VDjG2y1sV-R58GrYyz7mJKViA,12347
|
|
532
|
+
agentpool-2.2.3.dist-info/RECORD,,
|
agentpool_cli/__main__.py
CHANGED
|
@@ -10,8 +10,10 @@ from agentpool_cli.cli_types import LogLevel # noqa: TC001
|
|
|
10
10
|
from agentpool_cli.history import history_cli
|
|
11
11
|
from agentpool_cli.run import run_command
|
|
12
12
|
from agentpool_cli.serve_acp import acp_command
|
|
13
|
+
from agentpool_cli.serve_agui import agui_command
|
|
13
14
|
from agentpool_cli.serve_api import api_command
|
|
14
15
|
from agentpool_cli.serve_mcp import serve_command
|
|
16
|
+
from agentpool_cli.serve_opencode import opencode_command
|
|
15
17
|
from agentpool_cli.serve_vercel import vercel_command
|
|
16
18
|
from agentpool_cli.store import ConfigStore
|
|
17
19
|
from agentpool_cli.task import task_command
|
|
@@ -54,8 +56,10 @@ cli.command(name="list-configs")(list_configs)
|
|
|
54
56
|
cli.command(name="set")(set_active_file)
|
|
55
57
|
cli.command(name="watch")(watch_command)
|
|
56
58
|
cli.command(name="serve-acp")(acp_command)
|
|
59
|
+
cli.command(name="serve-agui")(agui_command)
|
|
57
60
|
cli.command(name="serve-mcp")(serve_command)
|
|
58
61
|
cli.command(name="serve-api")(api_command)
|
|
62
|
+
cli.command(name="serve-opencode")(opencode_command)
|
|
59
63
|
cli.command(name="serve-vercel")(vercel_command)
|
|
60
64
|
cli.command(name="task")(task_command)
|
|
61
65
|
|