agentpool 2.1.9__py3-none-any.whl → 2.5.0__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 -4
- acp/acp_requests.py +20 -77
- acp/agent/connection.py +8 -0
- acp/agent/implementations/debug_server/debug_server.py +6 -2
- acp/agent/protocol.py +6 -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/client/connection.py +38 -29
- acp/client/implementations/default_client.py +3 -2
- acp/client/implementations/headless_client.py +2 -2
- acp/connection.py +2 -2
- acp/notifications.py +20 -50
- acp/schema/__init__.py +2 -0
- acp/schema/agent_responses.py +21 -0
- acp/schema/client_requests.py +3 -3
- acp/schema/session_state.py +63 -29
- acp/stdio.py +39 -9
- acp/task/supervisor.py +2 -2
- acp/transports.py +362 -2
- acp/utils.py +17 -4
- agentpool/__init__.py +6 -1
- agentpool/agents/__init__.py +2 -0
- agentpool/agents/acp_agent/acp_agent.py +407 -277
- agentpool/agents/acp_agent/acp_converters.py +196 -38
- agentpool/agents/acp_agent/client_handler.py +191 -26
- agentpool/agents/acp_agent/session_state.py +17 -6
- agentpool/agents/agent.py +607 -572
- agentpool/agents/agui_agent/__init__.py +0 -2
- agentpool/agents/agui_agent/agui_agent.py +176 -110
- agentpool/agents/agui_agent/agui_converters.py +0 -131
- agentpool/agents/agui_agent/helpers.py +3 -4
- agentpool/agents/base_agent.py +632 -17
- agentpool/agents/claude_code_agent/FORKING.md +191 -0
- agentpool/agents/claude_code_agent/__init__.py +13 -1
- agentpool/agents/claude_code_agent/claude_code_agent.py +1058 -291
- agentpool/agents/claude_code_agent/converters.py +74 -143
- agentpool/agents/claude_code_agent/history.py +474 -0
- agentpool/agents/claude_code_agent/models.py +77 -0
- agentpool/agents/claude_code_agent/static_info.py +100 -0
- agentpool/agents/claude_code_agent/usage.py +242 -0
- agentpool/agents/context.py +40 -0
- agentpool/agents/events/__init__.py +24 -0
- agentpool/agents/events/builtin_handlers.py +67 -1
- agentpool/agents/events/event_emitter.py +32 -2
- agentpool/agents/events/events.py +104 -3
- agentpool/agents/events/infer_info.py +145 -0
- agentpool/agents/events/processors.py +254 -0
- agentpool/agents/interactions.py +41 -6
- agentpool/agents/modes.py +67 -0
- agentpool/agents/slashed_agent.py +5 -4
- agentpool/agents/tool_call_accumulator.py +213 -0
- agentpool/agents/tool_wrapping.py +18 -6
- agentpool/common_types.py +56 -21
- agentpool/config_resources/__init__.py +38 -1
- agentpool/config_resources/acp_assistant.yml +2 -2
- agentpool/config_resources/agents.yml +3 -0
- agentpool/config_resources/agents_template.yml +1 -0
- agentpool/config_resources/claude_code_agent.yml +10 -6
- agentpool/config_resources/external_acp_agents.yml +2 -1
- agentpool/delegation/base_team.py +4 -30
- agentpool/delegation/pool.py +136 -289
- agentpool/delegation/team.py +58 -57
- agentpool/delegation/teamrun.py +51 -55
- 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/functional/run.py +10 -4
- agentpool/mcp_server/__init__.py +0 -2
- agentpool/mcp_server/client.py +76 -32
- agentpool/mcp_server/conversions.py +54 -13
- agentpool/mcp_server/manager.py +34 -54
- agentpool/mcp_server/registries/official_registry_client.py +35 -1
- agentpool/mcp_server/tool_bridge.py +186 -139
- agentpool/messaging/__init__.py +0 -2
- agentpool/messaging/compaction.py +72 -197
- agentpool/messaging/connection_manager.py +11 -10
- agentpool/messaging/event_manager.py +5 -5
- agentpool/messaging/message_container.py +6 -30
- agentpool/messaging/message_history.py +99 -8
- agentpool/messaging/messagenode.py +52 -14
- agentpool/messaging/messages.py +54 -35
- agentpool/messaging/processing.py +12 -22
- agentpool/models/__init__.py +1 -1
- agentpool/models/acp_agents/base.py +6 -24
- agentpool/models/acp_agents/mcp_capable.py +126 -157
- agentpool/models/acp_agents/non_mcp.py +129 -95
- agentpool/models/agents.py +98 -76
- agentpool/models/agui_agents.py +1 -1
- agentpool/models/claude_code_agents.py +144 -19
- agentpool/models/file_parsing.py +0 -1
- agentpool/models/manifest.py +113 -50
- agentpool/prompts/conversion_manager.py +1 -1
- agentpool/prompts/prompts.py +5 -2
- agentpool/repomap.py +1 -1
- agentpool/resource_providers/__init__.py +11 -1
- agentpool/resource_providers/aggregating.py +56 -5
- agentpool/resource_providers/base.py +70 -4
- agentpool/resource_providers/codemode/code_executor.py +72 -5
- agentpool/resource_providers/codemode/helpers.py +2 -2
- agentpool/resource_providers/codemode/provider.py +64 -12
- agentpool/resource_providers/codemode/remote_mcp_execution.py +2 -2
- agentpool/resource_providers/codemode/remote_provider.py +9 -12
- agentpool/resource_providers/filtering.py +3 -1
- agentpool/resource_providers/mcp_provider.py +89 -12
- agentpool/resource_providers/plan_provider.py +228 -46
- agentpool/resource_providers/pool.py +7 -3
- agentpool/resource_providers/resource_info.py +111 -0
- agentpool/resource_providers/static.py +4 -2
- agentpool/sessions/__init__.py +4 -1
- agentpool/sessions/manager.py +33 -5
- agentpool/sessions/models.py +59 -6
- agentpool/sessions/protocol.py +28 -0
- agentpool/sessions/session.py +11 -55
- agentpool/skills/registry.py +13 -8
- agentpool/storage/manager.py +572 -49
- agentpool/talk/registry.py +4 -4
- agentpool/talk/talk.py +9 -10
- agentpool/testing.py +538 -20
- agentpool/tool_impls/__init__.py +6 -0
- agentpool/tool_impls/agent_cli/__init__.py +42 -0
- agentpool/tool_impls/agent_cli/tool.py +95 -0
- agentpool/tool_impls/bash/__init__.py +64 -0
- agentpool/tool_impls/bash/helpers.py +35 -0
- agentpool/tool_impls/bash/tool.py +171 -0
- agentpool/tool_impls/delete_path/__init__.py +70 -0
- agentpool/tool_impls/delete_path/tool.py +142 -0
- agentpool/tool_impls/download_file/__init__.py +80 -0
- agentpool/tool_impls/download_file/tool.py +183 -0
- agentpool/tool_impls/execute_code/__init__.py +55 -0
- agentpool/tool_impls/execute_code/tool.py +163 -0
- agentpool/tool_impls/grep/__init__.py +80 -0
- agentpool/tool_impls/grep/tool.py +200 -0
- agentpool/tool_impls/list_directory/__init__.py +73 -0
- agentpool/tool_impls/list_directory/tool.py +197 -0
- agentpool/tool_impls/question/__init__.py +42 -0
- agentpool/tool_impls/question/tool.py +127 -0
- agentpool/tool_impls/read/__init__.py +104 -0
- agentpool/tool_impls/read/tool.py +305 -0
- agentpool/tools/__init__.py +2 -1
- agentpool/tools/base.py +114 -34
- agentpool/tools/manager.py +57 -1
- agentpool/ui/base.py +2 -2
- agentpool/ui/mock_provider.py +2 -2
- agentpool/ui/stdlib_provider.py +2 -2
- 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 +616 -2
- agentpool/utils/subprocess_utils.py +155 -0
- agentpool/utils/token_breakdown.py +461 -0
- agentpool/vfs_registry.py +7 -2
- {agentpool-2.1.9.dist-info → agentpool-2.5.0.dist-info}/METADATA +41 -27
- agentpool-2.5.0.dist-info/RECORD +579 -0
- {agentpool-2.1.9.dist-info → agentpool-2.5.0.dist-info}/WHEEL +1 -1
- agentpool_cli/__main__.py +24 -0
- agentpool_cli/create.py +1 -1
- agentpool_cli/serve_acp.py +100 -21
- agentpool_cli/serve_agui.py +87 -0
- agentpool_cli/serve_opencode.py +119 -0
- agentpool_cli/ui.py +557 -0
- agentpool_commands/__init__.py +42 -5
- agentpool_commands/agents.py +75 -2
- agentpool_commands/history.py +62 -0
- agentpool_commands/mcp.py +176 -0
- agentpool_commands/models.py +56 -3
- agentpool_commands/pool.py +260 -0
- agentpool_commands/session.py +1 -1
- agentpool_commands/text_sharing/__init__.py +119 -0
- agentpool_commands/text_sharing/base.py +123 -0
- agentpool_commands/text_sharing/github_gist.py +80 -0
- agentpool_commands/text_sharing/opencode.py +462 -0
- agentpool_commands/text_sharing/paste_rs.py +59 -0
- agentpool_commands/text_sharing/pastebin.py +116 -0
- agentpool_commands/text_sharing/shittycodingagent.py +112 -0
- agentpool_commands/tools.py +57 -0
- agentpool_commands/utils.py +80 -30
- agentpool_config/__init__.py +30 -2
- agentpool_config/agentpool_tools.py +498 -0
- agentpool_config/builtin_tools.py +77 -22
- agentpool_config/commands.py +24 -1
- agentpool_config/compaction.py +258 -0
- agentpool_config/converters.py +1 -1
- agentpool_config/event_handlers.py +42 -0
- agentpool_config/events.py +1 -1
- agentpool_config/forward_targets.py +1 -4
- agentpool_config/jinja.py +3 -3
- agentpool_config/mcp_server.py +132 -6
- agentpool_config/nodes.py +1 -1
- agentpool_config/observability.py +44 -0
- agentpool_config/session.py +0 -3
- agentpool_config/storage.py +82 -38
- agentpool_config/task.py +3 -3
- agentpool_config/tools.py +11 -22
- agentpool_config/toolsets.py +109 -233
- agentpool_server/a2a_server/agent_worker.py +307 -0
- agentpool_server/a2a_server/server.py +23 -18
- agentpool_server/acp_server/acp_agent.py +234 -181
- agentpool_server/acp_server/commands/acp_commands.py +151 -156
- agentpool_server/acp_server/commands/docs_commands/fetch_repo.py +18 -17
- agentpool_server/acp_server/event_converter.py +651 -0
- agentpool_server/acp_server/input_provider.py +53 -10
- agentpool_server/acp_server/server.py +24 -90
- agentpool_server/acp_server/session.py +173 -331
- agentpool_server/acp_server/session_manager.py +8 -34
- agentpool_server/agui_server/server.py +3 -1
- agentpool_server/mcp_server/server.py +5 -2
- agentpool_server/opencode_server/.rules +95 -0
- agentpool_server/opencode_server/ENDPOINTS.md +401 -0
- agentpool_server/opencode_server/OPENCODE_UI_TOOLS_COMPLETE.md +202 -0
- agentpool_server/opencode_server/__init__.py +19 -0
- agentpool_server/opencode_server/command_validation.py +172 -0
- agentpool_server/opencode_server/converters.py +975 -0
- agentpool_server/opencode_server/dependencies.py +24 -0
- agentpool_server/opencode_server/input_provider.py +421 -0
- agentpool_server/opencode_server/models/__init__.py +250 -0
- agentpool_server/opencode_server/models/agent.py +53 -0
- agentpool_server/opencode_server/models/app.py +72 -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 +821 -0
- agentpool_server/opencode_server/models/file.py +88 -0
- agentpool_server/opencode_server/models/mcp.py +44 -0
- agentpool_server/opencode_server/models/message.py +179 -0
- agentpool_server/opencode_server/models/parts.py +323 -0
- agentpool_server/opencode_server/models/provider.py +81 -0
- agentpool_server/opencode_server/models/pty.py +43 -0
- agentpool_server/opencode_server/models/question.py +56 -0
- agentpool_server/opencode_server/models/session.py +111 -0
- agentpool_server/opencode_server/routes/__init__.py +29 -0
- agentpool_server/opencode_server/routes/agent_routes.py +473 -0
- agentpool_server/opencode_server/routes/app_routes.py +202 -0
- agentpool_server/opencode_server/routes/config_routes.py +302 -0
- agentpool_server/opencode_server/routes/file_routes.py +571 -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 +761 -0
- agentpool_server/opencode_server/routes/permission_routes.py +63 -0
- agentpool_server/opencode_server/routes/pty_routes.py +300 -0
- agentpool_server/opencode_server/routes/question_routes.py +128 -0
- agentpool_server/opencode_server/routes/session_routes.py +1276 -0
- agentpool_server/opencode_server/routes/tui_routes.py +139 -0
- agentpool_server/opencode_server/server.py +475 -0
- agentpool_server/opencode_server/state.py +151 -0
- agentpool_server/opencode_server/time_utils.py +8 -0
- agentpool_storage/__init__.py +12 -0
- agentpool_storage/base.py +184 -2
- agentpool_storage/claude_provider/ARCHITECTURE.md +433 -0
- agentpool_storage/claude_provider/__init__.py +42 -0
- agentpool_storage/claude_provider/provider.py +1089 -0
- agentpool_storage/file_provider.py +278 -15
- agentpool_storage/memory_provider.py +193 -12
- agentpool_storage/models.py +3 -0
- agentpool_storage/opencode_provider/ARCHITECTURE.md +386 -0
- agentpool_storage/opencode_provider/__init__.py +16 -0
- agentpool_storage/opencode_provider/helpers.py +414 -0
- agentpool_storage/opencode_provider/provider.py +895 -0
- agentpool_storage/project_store.py +325 -0
- agentpool_storage/session_store.py +26 -6
- agentpool_storage/sql_provider/__init__.py +4 -2
- agentpool_storage/sql_provider/models.py +48 -0
- agentpool_storage/sql_provider/sql_provider.py +269 -3
- agentpool_storage/sql_provider/utils.py +12 -13
- agentpool_storage/zed_provider/__init__.py +16 -0
- agentpool_storage/zed_provider/helpers.py +281 -0
- agentpool_storage/zed_provider/models.py +130 -0
- agentpool_storage/zed_provider/provider.py +442 -0
- agentpool_storage/zed_provider.py +803 -0
- agentpool_toolsets/__init__.py +0 -2
- agentpool_toolsets/builtin/__init__.py +2 -12
- agentpool_toolsets/builtin/code.py +96 -57
- agentpool_toolsets/builtin/debug.py +118 -48
- agentpool_toolsets/builtin/execution_environment.py +115 -230
- agentpool_toolsets/builtin/file_edit/file_edit.py +115 -7
- agentpool_toolsets/builtin/skills.py +9 -4
- agentpool_toolsets/builtin/subagent_tools.py +64 -51
- agentpool_toolsets/builtin/workers.py +4 -2
- agentpool_toolsets/composio_toolset.py +2 -2
- agentpool_toolsets/entry_points.py +3 -1
- agentpool_toolsets/fsspec_toolset/__init__.py +13 -1
- agentpool_toolsets/fsspec_toolset/diagnostics.py +860 -73
- agentpool_toolsets/fsspec_toolset/grep.py +99 -7
- agentpool_toolsets/fsspec_toolset/helpers.py +3 -2
- agentpool_toolsets/fsspec_toolset/image_utils.py +161 -0
- agentpool_toolsets/fsspec_toolset/toolset.py +500 -95
- agentpool_toolsets/mcp_discovery/__init__.py +5 -0
- agentpool_toolsets/mcp_discovery/data/mcp_servers.parquet +0 -0
- agentpool_toolsets/mcp_discovery/toolset.py +511 -0
- agentpool_toolsets/mcp_run_toolset.py +87 -12
- agentpool_toolsets/notifications.py +33 -33
- agentpool_toolsets/openapi.py +3 -1
- agentpool_toolsets/search_toolset.py +3 -1
- agentpool-2.1.9.dist-info/RECORD +0 -474
- agentpool_config/resources.py +0 -33
- agentpool_server/acp_server/acp_tools.py +0 -43
- agentpool_server/acp_server/commands/spawn.py +0 -210
- agentpool_storage/text_log_provider.py +0 -275
- agentpool_toolsets/builtin/agent_management.py +0 -239
- agentpool_toolsets/builtin/chain.py +0 -288
- agentpool_toolsets/builtin/history.py +0 -36
- agentpool_toolsets/builtin/integration.py +0 -85
- agentpool_toolsets/builtin/tool_management.py +0 -90
- agentpool_toolsets/builtin/user_interaction.py +0 -52
- agentpool_toolsets/semantic_memory_toolset.py +0 -536
- {agentpool-2.1.9.dist-info → agentpool-2.5.0.dist-info}/entry_points.txt +0 -0
- {agentpool-2.1.9.dist-info → agentpool-2.5.0.dist-info}/licenses/LICENSE +0 -0
|
@@ -0,0 +1,579 @@
|
|
|
1
|
+
acp/README.md,sha256=7cLy5Qsl9zh6m9cWjFmqwsYc_909zY-KQtPxmtX9Hj4,1974
|
|
2
|
+
acp/__init__.py,sha256=7Jdi5fIRDdVITfH9XCvYyX8JqikzXhLFvxzVifBml1A,4396
|
|
3
|
+
acp/__main__.py,sha256=N3wGJDaMk6ug0yHoL2VNqvReyVZSVZKhQyyEiftF3KQ,202
|
|
4
|
+
acp/acp_requests.py,sha256=suFZtN_B21xZULMbn-X-esKIiKCORQQmYFlMnAyWE9I,8123
|
|
5
|
+
acp/agent/__init__.py,sha256=l3zV38uGHie7zX-g9mn8NWcG_CVCOmhF5e045Tikzjw,172
|
|
6
|
+
acp/agent/connection.py,sha256=6VCg1x6WyNmhuY56cSrLhlY0U5DGj0c7XweZ_5M-7OM,10540
|
|
7
|
+
acp/agent/implementations/__init__.py,sha256=3GOofHvsWCwgaW9jL_Ju0oCTLMM2DLTvvkBUM5SYVow,127
|
|
8
|
+
acp/agent/implementations/debug_server/__init__.py,sha256=YTqMeHa7HeDQpeeUoB1nOVR6IIB_fm0kbIMVt0o8Ku0,24
|
|
9
|
+
acp/agent/implementations/debug_server/cli.py,sha256=eBd_2MJSnfgiZGDJYprtxsDMoHpoCwMMEIat5WznS5k,2199
|
|
10
|
+
acp/agent/implementations/debug_server/debug.html,sha256=icL_1i7lU3QzwOzaIF_WAaTt0-tvTZdpqXKvPoSa42g,9625
|
|
11
|
+
acp/agent/implementations/debug_server/debug_server.py,sha256=v9HeZvx39iejYv42d-xRKt2_AyBBWcpk9h7qljd7n1I,17760
|
|
12
|
+
acp/agent/implementations/testing.py,sha256=zjbAbCyDxcXdoQdW1jnjzNRZ1qUkGh-l4xzGV8UGdmc,2996
|
|
13
|
+
acp/agent/protocol.py,sha256=rtJBVVuimaG-yQuA4GOMOY7vWZa9dwR_QxKjFO1DEF4,2274
|
|
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
|
+
acp/bridge/bridge.py,sha256=OAAnrWzhMb0tjEwe9sNXPJUqekOuAqu1Vtg91K9a18A,10211
|
|
18
|
+
acp/bridge/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
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
|
|
22
|
+
acp/client/__init__.py,sha256=-NFsoqyf85oNs1ok6gcI5m-tsP2JqtdASb94Gg4h_AM,312
|
|
23
|
+
acp/client/connection.py,sha256=CKqPiR4itWsWpecjHEuVAd1f_jBlKhl6UQWZzCksN4E,10339
|
|
24
|
+
acp/client/implementations/__init__.py,sha256=0A4Ht4ldBiifeIlC5TBg8V4UNPXOMA9ffWrVdDp4JxA,308
|
|
25
|
+
acp/client/implementations/default_client.py,sha256=UBPisjaer2KfAlMh8-F0j_vkhdZaZgRvMdZbuuEoLM8,7267
|
|
26
|
+
acp/client/implementations/headless_client.py,sha256=T8RtnjR0x2sBFSWunPOWZnWyCDgZS-PCzYFN5BLtAkM,10984
|
|
27
|
+
acp/client/implementations/noop_client.py,sha256=UJYSNTDClZI-CO7SpbjRM5tW4pKAPxRMh65HNvx8LMQ,3907
|
|
28
|
+
acp/client/protocol.py,sha256=_dlRDzdL9_D7ubFwoY8RYz4nDYlfCNyqJlTULAh-ZFw,1932
|
|
29
|
+
acp/connection.py,sha256=iDvyr6NC62Dguq1WpcqDfQNb4DEaV4HGwuvkMRV3rzg,10297
|
|
30
|
+
acp/exceptions.py,sha256=ELTB_k0e1YZn06pPasHxvMpMq-j0qwzF2fZ6WxoJea0,1513
|
|
31
|
+
acp/filesystem.py,sha256=255NCw8IMKYSdFZsxvhRkqkvSZuFvEJnUdcZ9OT29A0,19277
|
|
32
|
+
acp/notifications.py,sha256=ke2w0CpV1QlU3PrXJR43K0pWsYRy_uz7qYEtyu32Jzo,31551
|
|
33
|
+
acp/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
34
|
+
acp/schema/__init__.py,sha256=AnO66rOYKo4FYoPGTQTlbp6PZyMOwwAa1lEq9eEW41U,6628
|
|
35
|
+
acp/schema/agent_plan.py,sha256=65uyLfzpGiSB3pD0xyMi9kmxYp-VRcsC-8snFo_Rn7U,869
|
|
36
|
+
acp/schema/agent_requests.py,sha256=xhRyq1GNImVReIUfO2w1CclP8tQ8c0mWgm4EbsSM0AQ,3559
|
|
37
|
+
acp/schema/agent_responses.py,sha256=1ufvu9b_qjOYzqQ0Sz_ngOI7WGZ3FiBB3i0JPb3cqJA,8245
|
|
38
|
+
acp/schema/base.py,sha256=aAmVmcwsrkOxjAoT9wN3vmDdliFPpM8kRIBakfbg77k,810
|
|
39
|
+
acp/schema/capabilities.py,sha256=U1weFTaVizz8Did8KzVUi5QyLfUYoWwwaAaYzhsRGCg,7913
|
|
40
|
+
acp/schema/client_requests.py,sha256=UDI30SA-Pd7BvwZYquU2fsKAUR1vI85GpNn1iJwn9J4,7581
|
|
41
|
+
acp/schema/client_responses.py,sha256=9qsurxTkplsLwTM6J_j5A64cx0dKHzqiH5hRQrhnklU,2466
|
|
42
|
+
acp/schema/common.py,sha256=H8omlrRFpm1YN3VL4pBAV7y67y8_5ZuO8XBjjRVt1Lg,2197
|
|
43
|
+
acp/schema/content_blocks.py,sha256=vBe3Ao6oSneEY3a_nwQSi37HxKkkhgCNsDHHuehMHUw,4898
|
|
44
|
+
acp/schema/mcp.py,sha256=2qHNzjDHi6z9Kp_RncwEPojZmbsdi8S4O5x3ZySK-Jg,2057
|
|
45
|
+
acp/schema/messages.py,sha256=3KkCIVdKo04j0dlrUtryEj0KGJVwZeft24Rj1-cZj8A,4676
|
|
46
|
+
acp/schema/notifications.py,sha256=5KMpn-DNZTfXvJzx7O2P5MLmb1InOCgaQtTlWEg2CpQ,2650
|
|
47
|
+
acp/schema/protocol_stuff.md,sha256=R7eFXdp2nikbaXLJvRgZfm-6W7l84ZRsvnKHLXbWnaM,124
|
|
48
|
+
acp/schema/session_state.py,sha256=8rCk7KJICPSh9qAgh3dTiYrZ9lDadlxL6RnrLtloLKw,5567
|
|
49
|
+
acp/schema/session_updates.py,sha256=9qIfY2NrFfPZdB_kvCuFjZfMq-EGagmUTz6nM0RuRY0,12870
|
|
50
|
+
acp/schema/slash_commands.py,sha256=Xgh4Z6Ne_qmEnjYkRiUWeyP4KCjzlONrt-SP9MQgHQo,1453
|
|
51
|
+
acp/schema/terminal.py,sha256=ksBe84Bs5F-I3LWrWXgRn6X345Dw15OSWMDQnFKHCP0,425
|
|
52
|
+
acp/schema/tool_call.py,sha256=0MyXngLhR_8FiQh9nRCviCpEFYdkOW1n41A67WZJF7c,11025
|
|
53
|
+
acp/stdio.py,sha256=iufw_pWc5ApiEd4f78by1RXLA3YkhAmqhL1jrf3YtEQ,9661
|
|
54
|
+
acp/task/__init__.py,sha256=U_sET_Sf8fLbs21_96_z4UJCjrcqFF5j8pfmOWJC_8M,1227
|
|
55
|
+
acp/task/debug.py,sha256=6D1aJ4ABLlQLo69XsVGfSTd_ZB5XJRqi1ZG5g-6-UBY,6906
|
|
56
|
+
acp/task/dispatcher.py,sha256=n50NBHyLRFX6odlCuEWeuexqsC7lfRqXSDX3fUcdvZI,2984
|
|
57
|
+
acp/task/queue.py,sha256=f2j82kq98EhvXzIDbsz5QCaMA4qgtnmpKbINWkK5a0Q,1772
|
|
58
|
+
acp/task/sender.py,sha256=e7GN2OhnFKHWWoVduw-VMkCvwUiU_wvV81NHanl6tpY,2428
|
|
59
|
+
acp/task/state.py,sha256=_wfGlIxNeOTZoGnyaVoJyZ5zp7YS5OZfhsexMXSCjkQ,2870
|
|
60
|
+
acp/task/supervisor.py,sha256=c0s2bwYyw3yImtnBjt7AV4W0HSUaIg13--UOr06XY2g,2939
|
|
61
|
+
acp/terminal_handle.py,sha256=nNm7ryzApuk2YpBo4hTH3CMzL39X4ORmsV8IO7fZ6Nw,979
|
|
62
|
+
acp/tool_call_reporter.py,sha256=_BBCd-LnyDxfpcXgbX5MuVjCn2PhntJYtdXrhatCHPU,7007
|
|
63
|
+
acp/tool_call_state.py,sha256=9crvqnnC6Ofpvk1mf8YaWwbFFYmFWAOby-UGxc0-mcU,6004
|
|
64
|
+
acp/transports.py,sha256=7ArJMgNiyZMiLQe7NzKhiYV01WmvNWYqIMeCOY55yXw,14780
|
|
65
|
+
acp/utils.py,sha256=6dbuzpAPUNLtiAGZX2asFZ9Sb1d9zy5BTmNAYilM0RM,9238
|
|
66
|
+
agentpool/__init__.py,sha256=9pzvu5VlI7zKHh7ZCvf4WQD3x3RUljSqgaca-KyR1UQ,1775
|
|
67
|
+
agentpool/__main__.py,sha256=m6sATzeG9JSTQB37V29ooNz-1ScKBObFpfPIGsBFRn8,149
|
|
68
|
+
agentpool/agents/__init__.py,sha256=xMeqYpeNIJR2pZ-Vu_aYBAgb5xwp5EHt-ckoiNac2gs,865
|
|
69
|
+
agentpool/agents/acp_agent/__init__.py,sha256=ciQUOhtOjjF9wT1qjUi-IgNyBf4E63e8EzSpnvEZWmg,89
|
|
70
|
+
agentpool/agents/acp_agent/acp_agent.py,sha256=3l0NcYrkYbgmbARHJy-iO8AF6S6TILUjcZGVseTaIKk,40311
|
|
71
|
+
agentpool/agents/acp_agent/acp_converters.py,sha256=WM22r86pCiDme62a3Y-Sa3Sixj7ojXRY6g0Y7rKCZy0,15828
|
|
72
|
+
agentpool/agents/acp_agent/client_handler.py,sha256=hJazcEic8yiigUNBq5p2ilLkx7nCF-PMQQrSxGvMw0g,20782
|
|
73
|
+
agentpool/agents/acp_agent/session_state.py,sha256=FRguaUBu_EJVRsqmiwSeSkNrmorJ7QJIyDsm_EKHZU4,1628
|
|
74
|
+
agentpool/agents/agent.py,sha256=-3l3NMYHxxv2r95B8PEBlqfv1LFa7beienxSwprExz4,52547
|
|
75
|
+
agentpool/agents/agui_agent/__init__.py,sha256=qbxs-NvrAuaVBzTvUsir607kM4KWfwFR2UrQTlL4XRA,471
|
|
76
|
+
agentpool/agents/agui_agent/agui_agent.py,sha256=g0b9Yb-iTk0PCkRG2cZI0GD1SSYR96W5oW2xmrvFRMc,31070
|
|
77
|
+
agentpool/agents/agui_agent/agui_converters.py,sha256=h4DtOWABDBWlsOhP0PFfQsxp8rsl2p0JNT21FVftzOI,10190
|
|
78
|
+
agentpool/agents/agui_agent/chunk_transformer.py,sha256=UFbqmmralMxn256bLoiLzWtocJlSjg2ayzOXSU_5mhU,7125
|
|
79
|
+
agentpool/agents/agui_agent/event_types.py,sha256=c2MUoM04MhOPOqHwGnaxJpeOul72rnDFIu2Rih8v05U,2047
|
|
80
|
+
agentpool/agents/agui_agent/helpers.py,sha256=42I83YMaxlledVCQ5Yx6lOCFQhfOARN5U8-hJFsiysI,6479
|
|
81
|
+
agentpool/agents/architect.py,sha256=KPBuyLWQwR_DEB0xOWWz8xCoBEH3yKMn0MbYRz-T_pI,2109
|
|
82
|
+
agentpool/agents/base_agent.py,sha256=Rjk3zC0xNwyQJtrqCPnjV9SdcDAywNxy91P5D6HIyfA,32378
|
|
83
|
+
agentpool/agents/claude_code_agent/FORKING.md,sha256=f5onz2QgjZ-k2kWpZbL1szx0o-pkKAb1Xp7zPE7nPu4,5543
|
|
84
|
+
agentpool/agents/claude_code_agent/__init__.py,sha256=qfXqAJkQrnE67P44LVK4a7pl6R2zuBgZlH9kMqRD4CY,631
|
|
85
|
+
agentpool/agents/claude_code_agent/claude_code_agent.py,sha256=N2doHfQslZkiSJ9bRA069KyvFZx4dY5ZkJESREvH5AE,81018
|
|
86
|
+
agentpool/agents/claude_code_agent/converters.py,sha256=blTZXiKmTniERXjpGb9URSh06TzlOjibw7y80PfHYEc,6416
|
|
87
|
+
agentpool/agents/claude_code_agent/history.py,sha256=qXCSPJavchVULtswTTnvrOwXDgyDiGzVZiDYh7L8lpE,15213
|
|
88
|
+
agentpool/agents/claude_code_agent/models.py,sha256=yS2tsxyz6GOmJx1s0Zylt8TkOVDRofS0W7K28ghuWIc,2527
|
|
89
|
+
agentpool/agents/claude_code_agent/static_info.py,sha256=DRijEmbc4WUldXPYU5bQ-cVqxAlDYf5-UuFGGtIvvjc,2710
|
|
90
|
+
agentpool/agents/claude_code_agent/usage.py,sha256=KDBNkXX2BB8YKTsOWZZmmvUANMnDHx3iJRSqknVqHSA,7619
|
|
91
|
+
agentpool/agents/context.py,sha256=EJEgstksIRB3DkPQtknNpk-kL0QGH7nolZXy_dhVoYo,4660
|
|
92
|
+
agentpool/agents/events/__init__.py,sha256=cInZanhQVTX8nkM2OMdvNo1NBeCqhX0ifgUiXeOzIbk,1982
|
|
93
|
+
agentpool/agents/events/builtin_handlers.py,sha256=M4TgY9J2SA5L5iklkp0j2aAmsqJN963toyDW0eMJLIw,7051
|
|
94
|
+
agentpool/agents/events/event_emitter.py,sha256=P2htDCJ_k39ik968bdgUlylDk1DKWCF47duvQ3Uv3c4,11910
|
|
95
|
+
agentpool/agents/events/events.py,sha256=DgGMlihEbEWrcGvSs5kk2YoO7tp-jrFtGK7JxAW5HJk,20868
|
|
96
|
+
agentpool/agents/events/infer_info.py,sha256=Gi6kj1abMw-jYQ6x4kwI5xRo-n3iu2H2cILwmU1OgGk,6601
|
|
97
|
+
agentpool/agents/events/processors.py,sha256=ujPMQ-NSOeMaB7XRf5yJGAaxmcs4ApTtbf0SN2VBbH8,7403
|
|
98
|
+
agentpool/agents/events/tts_handlers.py,sha256=-nJVTfw_mg8jK8YGyg4wuhZCAO5wXUcYogEmQfi0o10,5994
|
|
99
|
+
agentpool/agents/interactions.py,sha256=hzSEu6bJQTm17aSxx8eHVSPw6vpsAk5XV2WIYXNsodc,14684
|
|
100
|
+
agentpool/agents/modes.py,sha256=qGgpBEtG_GUMzUJqjXJOjFgKxF-BWqXF57waTUOuLcU,1847
|
|
101
|
+
agentpool/agents/slashed_agent.py,sha256=fbthHYb6GA2fx-dXtfmnwULt-Aoxvr02NmX4XGGVhQU,9124
|
|
102
|
+
agentpool/agents/sys_prompts.py,sha256=TnYb90YrPN_2PXbb0V4Qi2zFrFNWtWv2ynJC5KTj4yU,5930
|
|
103
|
+
agentpool/agents/tool_call_accumulator.py,sha256=W0br55JBXR-hM4qBNOHs6hC_g77H3q6M-9NDXEJ-kGo,6349
|
|
104
|
+
agentpool/agents/tool_wrapping.py,sha256=KqgzNeUItEmD91zZyYnSfbA4nMlsD3drQ5hn26w-2uI,7851
|
|
105
|
+
agentpool/base_provider.py,sha256=gsvswWxIO2hMuZXstJcsT-lNzZYnk2YhqmFjyiaVvoY,887
|
|
106
|
+
agentpool/common_types.py,sha256=G7f43MxMwAO50zTmGiUons1iLZFOxQDkzCma9MsDJUk,8642
|
|
107
|
+
agentpool/config_resources/__init__.py,sha256=m7_guYWmD-BIbDfVAtPrbRlm48kNMlvmmLa0YMMySDE,1522
|
|
108
|
+
agentpool/config_resources/acp_assistant.yml,sha256=bPAoG5d2w9Ev2wPSEmNqcHXRRU5Xv_Kp3EyjU6wUQOY,890
|
|
109
|
+
agentpool/config_resources/agents.yml,sha256=fJKEzl9s6Ot1wdsTEgflKE0QiK5RQZsDI2Wn7o1yzRY,3320
|
|
110
|
+
agentpool/config_resources/agents_template.yml,sha256=8mHMrgXjVnKjbVL2akLFf8Yk45IWnen4zFSxRzkdrUM,651
|
|
111
|
+
agentpool/config_resources/agui_test.yml,sha256=TTaA671k0jk1Y2vKI13PwBhHqKmKejAlJhHnGyKnbNg,655
|
|
112
|
+
agentpool/config_resources/claude_code_agent.yml,sha256=jGi4VaXIWW5V4vXgESFcpnJU9wzKmQWphkmgMlsi1ts,573
|
|
113
|
+
agentpool/config_resources/claude_style_subagent.md,sha256=6RMWSUPMn3QgBObya1q-2nJDkDOwmxJ1qAoX51hEFws,904
|
|
114
|
+
agentpool/config_resources/external_acp_agents.yml,sha256=oqtsocKhYQ4_NVXhRXBbdBnQL0hbIHWViuZ5ZTNB4GQ,2237
|
|
115
|
+
agentpool/config_resources/opencode_style_subagent.md,sha256=j2OjMI38pPmJfYSW327AVLQsoKkqmJ5NqB0GNHDTM1Q,411
|
|
116
|
+
agentpool/config_resources/tts_test_agents.yml,sha256=sVBTpDm63kZf4s-rxwpW_tQQTr-obS27EizSp7ab5Mc,2532
|
|
117
|
+
agentpool/delegation/__init__.py,sha256=CPQgs3IUPWt4jL3YvC6xOHnPF8-WzIpgNIkyGHC2oQ8,305
|
|
118
|
+
agentpool/delegation/base_team.py,sha256=rMeiKYwybLJ3G3u9XEkppd92USJaJj5vMSf80M9WRnU,17215
|
|
119
|
+
agentpool/delegation/message_flow_tracker.py,sha256=TU2uy9trbtIU-2sW8m2_eUoqfoXlS2rojyxaQIaYaKQ,1312
|
|
120
|
+
agentpool/delegation/pool.py,sha256=O8VpxPiLwMu1EjH8VHJUoCu1Nl1ube4YnVDNEJlNNvc,37986
|
|
121
|
+
agentpool/delegation/team.py,sha256=dNshnovsVD-P7T3PSfhmRTC_PASn74cyiRVHtuBuFBo,12400
|
|
122
|
+
agentpool/delegation/teamrun.py,sha256=6VZ82c4yjA8mPe79WQgZ_FcWuod5-f_pg9SrOprPyu0,12500
|
|
123
|
+
agentpool/diagnostics/__init__.py,sha256=g0xqLbQPqxTNn4TitU_bu_kVS5EiyWD5rTYvlmKw1b8,1195
|
|
124
|
+
agentpool/diagnostics/lsp_manager.py,sha256=cJcP08tHKL1E-ccUJ9xlLZmq1AaTK0_Nfri1QOZ3gtg,49393
|
|
125
|
+
agentpool/diagnostics/lsp_proxy.py,sha256=Vu92B-PB19SZmriQlUD7QktMl3BosFys_Z7FnzxLTNk,1153
|
|
126
|
+
agentpool/diagnostics/lsp_proxy_script.py,sha256=JFsi8BAn5lbEZA077lqiC7bBCMlqomiTJqKMCb4u_OU,8324
|
|
127
|
+
agentpool/diagnostics/models.py,sha256=Il_vqBHeehGMo4RQcaRttP1jUdC-2izP75owlrGRN1E,8593
|
|
128
|
+
agentpool/docs/__init__.py,sha256=lMdVgo2V7fdRjF_9AmqW7TosE6NdJE7LbvMcLlBJwDY,155
|
|
129
|
+
agentpool/docs/gen_examples.py,sha256=ER0nKe99lVxGo60BIYf4D2Ejo8BV9fwUozrNYZEP1tA,1374
|
|
130
|
+
agentpool/docs/utils.py,sha256=AQen7CKftuqrOXvvyHGKn2CiQdNskw8W0wWnZXqBytA,11161
|
|
131
|
+
agentpool/functional/__init__.py,sha256=ezWxbd6EMVm4kkT834tt2ySoK6y3ysRkFkB1HIIvDv4,385
|
|
132
|
+
agentpool/functional/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
133
|
+
agentpool/functional/run.py,sha256=qVS52G41xkc_Rwo-_q6V5o2jRZn0KzWpCwIempQ-KZ4,2069
|
|
134
|
+
agentpool/functional/structure.py,sha256=xayRC2CoEw6ulYM5TJ7wAHDBMroSOOMCo649ORV-744,4298
|
|
135
|
+
agentpool/hooks/__init__.py,sha256=dhYV3qP_M41jVsVoLNP0fjSQrIhONSBT9eFIcmwvhQw,513
|
|
136
|
+
agentpool/hooks/agent_hooks.py,sha256=AL1h5k6UzQlQPEyTa_WO25Pv2nUaLKHkJyjPfb19XGs,8214
|
|
137
|
+
agentpool/hooks/base.py,sha256=P8wT33sKf-ngBEG-IAiIdxSOEGDw_Kg9WAiWmhDtvzg,3167
|
|
138
|
+
agentpool/hooks/callable.py,sha256=Hix-QBo1M_wUsfaWD6-9VMAtIZ_lpRowha_gy_Nzm04,4745
|
|
139
|
+
agentpool/hooks/command.py,sha256=WLzadbkkfC5hp2WKVeRfS6dzDLDkfKcE0Itnldnb-og,5513
|
|
140
|
+
agentpool/hooks/prompt.py,sha256=CAwXPJnvW1nmBa5ruk8lOpzrC3NPDsmqcGJpEKilHvU,3799
|
|
141
|
+
agentpool/jinja_filters.py,sha256=NT_fcDE7oBbpzZ04UJu4UHIk_a8B26Hrel05zn4BmS0,3995
|
|
142
|
+
agentpool/log.py,sha256=oKA7P258VYg-Q0EymBny2RdeWhjRfFrBoyFhNb8t9Is,7727
|
|
143
|
+
agentpool/mcp_server/__init__.py,sha256=dU4LaqySQqTKE5SOMG1KuTEunZAGw7p4rwgGZ16K5V0,312
|
|
144
|
+
agentpool/mcp_server/client.py,sha256=SUG5HIT27SPM9grMR5ovzLWkApufU13gh52YzVQOzj0,19651
|
|
145
|
+
agentpool/mcp_server/constants.py,sha256=Z1eNrsGPA3__rPMSC9REUJhIW8y7mGq909iFGTna5P8,693
|
|
146
|
+
agentpool/mcp_server/conversions.py,sha256=fnQ-JFm9ok-yyzP4gXMZVJNSFGCpBuTcjzaenCojdRQ,7909
|
|
147
|
+
agentpool/mcp_server/helpers.py,sha256=QD0qLLOIA5EcwEc9GxjWwLPK_i0SE9C-NOGiCpk67Ek,1243
|
|
148
|
+
agentpool/mcp_server/manager.py,sha256=5q3hPPdJaLygKq2wG2vNpNXbuT_HeO-QDR-14IJuwr4,7923
|
|
149
|
+
agentpool/mcp_server/message_handler.py,sha256=UBrajTlv6XRRvgC3m15uniuJ60dKsqboK-lzzuFTO3g,6670
|
|
150
|
+
agentpool/mcp_server/registries/__init__.py,sha256=ovKQKyrGBbHTMA6eMRbXx7PzFxQJrfOWFoxXo491nxk,28
|
|
151
|
+
agentpool/mcp_server/registries/official_registry_client.py,sha256=jRYTxMaC7R_QKfd6ukj_ll_MBtPvXDKCKXShTQvJc0w,12594
|
|
152
|
+
agentpool/mcp_server/registries/pulsemcp_client.py,sha256=r2raIWX4kiEJOnoRY0IkpS8lUgDsHYytHySMhAh9K0w,2431
|
|
153
|
+
agentpool/mcp_server/tool_bridge.py,sha256=jhxlXA-fi74BDIJvcei_Inx5LfeYu5zH9m_4lqnAkZA,23283
|
|
154
|
+
agentpool/messaging/__init__.py,sha256=rRdF98lCvwBq38sRMB3v-H7qoOEn_WNUFhJo_eoJrQg,1448
|
|
155
|
+
agentpool/messaging/compaction.py,sha256=KXBSY1CkMFtX0EWX5XUF4KxkjlHUY-GAGSHxFY_fDoM,27446
|
|
156
|
+
agentpool/messaging/connection_manager.py,sha256=shrvae1WSFrYNi1vT5p24WMjteQThlggOBuQqsQX5mE,12358
|
|
157
|
+
agentpool/messaging/context.py,sha256=2iaVbnXl_vFK0R9847pf4mc_32ZdbltOWIGbMC46ddA,1937
|
|
158
|
+
agentpool/messaging/event_manager.py,sha256=rtQRM8Hd0EVSP0u-1mUacBv0xARUqiD6ODS8wntuejY,14732
|
|
159
|
+
agentpool/messaging/events.py,sha256=WPfkC70ECeCtGkaLDCuffKs72NKygjo2gL-yW8a-JQ4,1104
|
|
160
|
+
agentpool/messaging/message_container.py,sha256=DEq-YwGgDvdV6JyplG6ugPQ4Qp17UqoWphMm6vyaex4,5814
|
|
161
|
+
agentpool/messaging/message_history.py,sha256=gF-taF2tAtUtVSiIEu_z0AxW6D5jQzvYz5nqKXai3KQ,21122
|
|
162
|
+
agentpool/messaging/messagenode.py,sha256=tLfwFBQshv1-owgfr_95PpvXgDqekD-iCqrJpqddgd4,14942
|
|
163
|
+
agentpool/messaging/messages.py,sha256=e6FwqndW0fEhtRVAwzCz-JX7TYz9VO1334_nrPWrfdw,23419
|
|
164
|
+
agentpool/messaging/processing.py,sha256=-kzg09Qh7qMBBkafEvK_M6i_4ldLNcqDM81qp46kDVU,2143
|
|
165
|
+
agentpool/mime_utils.py,sha256=WrTuZIudFlJH4yXf7s2F9OqeZwKjKF84zjKXCoO300g,2468
|
|
166
|
+
agentpool/models/__init__.py,sha256=2mOXrxRrVGJjmu9JrGLZQ4udDLQT_RDYzZpQpON-ifQ,662
|
|
167
|
+
agentpool/models/acp_agents/__init__.py,sha256=pMlTEmTZ2v-6viVScU12kexB_jPBl2Fg7DM01hrjCls,671
|
|
168
|
+
agentpool/models/acp_agents/base.py,sha256=44kTUpVeSgBVPJT2GuUFe47puP-AI4eVnjncTdbX0VE,10321
|
|
169
|
+
agentpool/models/acp_agents/mcp_capable.py,sha256=NWwj2usFzmzb_lejyTeoNAUejQGFnNYbE3LaiKMKIqo,25034
|
|
170
|
+
agentpool/models/acp_agents/non_mcp.py,sha256=b0d1hKJHxPtNEK095H7JRF5BEdbcM_hfiR2T9W4fh2Y,27937
|
|
171
|
+
agentpool/models/agents.py,sha256=Fs9POZ6_M7xgOyfAMp9fd-mmDzgKeoia3be6ntsoEbY,19038
|
|
172
|
+
agentpool/models/agui_agents.py,sha256=UyBoUuquww1jdUsiO6vkdrrbq2WUy2MtrVMm_UAcMds,2880
|
|
173
|
+
agentpool/models/claude_code_agents.py,sha256=yXdqwEbUhwZGzGaGS21kBHRhX33wWvxPbPsQZC-bUvQ,12003
|
|
174
|
+
agentpool/models/file_agents.py,sha256=ypxzcIqwoMqYFylGPtt7Rb7do5g2QKEGgeOQD8x6JWw,3238
|
|
175
|
+
agentpool/models/file_parsing.py,sha256=8EIHIJX9uVtke8aASq4Z2isjIMG7RGlO0aQ9fPWsdkU,11594
|
|
176
|
+
agentpool/models/manifest.py,sha256=Rjle-F_Co_PStMEhR61i2RJXT5c-QY1LdQTHwHIm0lo,27127
|
|
177
|
+
agentpool/observability/__init__.py,sha256=N5zVOlQH9l9a0K_GY1xdpp8ABbhmcCO2bdJ2DmLLetw,232
|
|
178
|
+
agentpool/observability/observability_registry.py,sha256=40m60j26u-12SWkIdUNW9M74aUkHxzXc2U7E6anrpbo,3152
|
|
179
|
+
agentpool/prompts/__init__.py,sha256=HKBrk8pyr5pQq47YTxNWZEZ5ItJnVGZCMFS1d4QFtag,34
|
|
180
|
+
agentpool/prompts/base.py,sha256=fCFTjHeE3KJ2k9uPS9abpEe34qCVUpiUgTwz9FJ6C1o,716
|
|
181
|
+
agentpool/prompts/builtin_provider.py,sha256=boL6ZmB4ggQK6Stogphf5CRkkWnK0ujTY36kjoYNfl8,2462
|
|
182
|
+
agentpool/prompts/conversion_manager.py,sha256=s-hy-tEyT9FKOgbLApr_tCr8YkGVryy9eN9B33J9lzE,3514
|
|
183
|
+
agentpool/prompts/convert.py,sha256=KEAkm6cqoAqkKdBsxcgyeTYkhPIchgQ8EDjKMJ2n_g4,3796
|
|
184
|
+
agentpool/prompts/manager.py,sha256=scaxT3YFqym3p_t0fg45BVYlcXaByoCT_kiBJkDWBZA,6723
|
|
185
|
+
agentpool/prompts/parts/zed.md,sha256=rbJB1S0l_-GG03JD7iybW6U_F7h6cnphoshfy_rrfyo,1675
|
|
186
|
+
agentpool/prompts/prompts.py,sha256=6727woUf4jiJg3AsxlVh6QFYP_ZfQ0hTV8M-UENY4mw,21264
|
|
187
|
+
agentpool/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
188
|
+
agentpool/queries/tree-sitter-language-pack/README.md,sha256=ivZSEuWqYfUVLZl2AZZGRlm0bQsaG-VTBKBwACyM07k,291
|
|
189
|
+
agentpool/queries/tree-sitter-language-pack/arduino-tags.scm,sha256=HbgdothT9Jjk56COXTtUkVAdZ14rZNnqzLbWVLeRs5U,177
|
|
190
|
+
agentpool/queries/tree-sitter-language-pack/c-tags.scm,sha256=EIz45o5hBh8yEuck5ZR_4IpcGyWSeNrzxFmtkKZGt2k,461
|
|
191
|
+
agentpool/queries/tree-sitter-language-pack/chatito-tags.scm,sha256=ISkmrp5gIVxoYIPnoqxxqBlZj5G9tzhwJMx6b0dEKnQ,338
|
|
192
|
+
agentpool/queries/tree-sitter-language-pack/clojure-tags.scm,sha256=CRvISM9eKamZgNTSkwMAOXTG3yl-92vZvRFFg5mwFy8,194
|
|
193
|
+
agentpool/queries/tree-sitter-language-pack/commonlisp-tags.scm,sha256=GYJlluTPEdrxn4jpYTX5YQAqk171rVBw7IBiCygMgtw,4713
|
|
194
|
+
agentpool/queries/tree-sitter-language-pack/cpp-tags.scm,sha256=2fSqTUcc01ABMHkA0JeG8axEOEXRfEIul8UKc9_tKGI,809
|
|
195
|
+
agentpool/queries/tree-sitter-language-pack/csharp-tags.scm,sha256=KORfK3ehKor6Pf6T5iniuoQr16EcHtUe0q3XIsCjPJs,1162
|
|
196
|
+
agentpool/queries/tree-sitter-language-pack/d-tags.scm,sha256=LDP3orqZ98TTFSkV_PODEs8LspTcCqUMvKcLdZwtgkc,1420
|
|
197
|
+
agentpool/queries/tree-sitter-language-pack/dart-tags.scm,sha256=Pa_leZjxxXQO7mH_zF5o-kZ5lqVxgvbyp8oQb_nZ9KA,2267
|
|
198
|
+
agentpool/queries/tree-sitter-language-pack/elisp-tags.scm,sha256=1r8iOMM_DEpXEvlA1rE7KlhGEzcqa2W6eH4F2d1iu7Y,246
|
|
199
|
+
agentpool/queries/tree-sitter-language-pack/elixir-tags.scm,sha256=fg9TDpbCixLr8UXNcNnfgFlR3Y7d3vtzLRb3LK84UaQ,1682
|
|
200
|
+
agentpool/queries/tree-sitter-language-pack/elm-tags.scm,sha256=Wp1D5wEGzFa_2biBWRaKbghDs57lDGqqsZd7DbPkdn4,953
|
|
201
|
+
agentpool/queries/tree-sitter-language-pack/gleam-tags.scm,sha256=wdFVAkepPAZ10-5sBIVQSl45v95wZP9Foi_iYvM4YII,1416
|
|
202
|
+
agentpool/queries/tree-sitter-language-pack/go-tags.scm,sha256=TE4fQ7PtQvHKPetrhHeDqjMz01KFKFsxFjypnJMv8pI,1339
|
|
203
|
+
agentpool/queries/tree-sitter-language-pack/java-tags.scm,sha256=Xid8cnOPL1v5SOtxfq8dOi98bWrUPL7XeO8_I2qBrfE,624
|
|
204
|
+
agentpool/queries/tree-sitter-language-pack/javascript-tags.scm,sha256=0qlZIwDdsvoEGM0cYD3s2ez27FbYuz8epZAo-cLP1uI,2306
|
|
205
|
+
agentpool/queries/tree-sitter-language-pack/lua-tags.scm,sha256=lqhCVn7KnBVhW8oo_wY9me15nEBTu9BS5YlF1zUTOPs,945
|
|
206
|
+
agentpool/queries/tree-sitter-language-pack/matlab-tags.scm,sha256=GqF7QBytU-xGkcUWkGlMi7iJ7XnmmoMFB_mtMKXaJgw,309
|
|
207
|
+
agentpool/queries/tree-sitter-language-pack/ocaml-tags.scm,sha256=NAcyzmQuQPUjkchrQvcfhsvKqdcqbAt5eFb1chfEhMA,2695
|
|
208
|
+
agentpool/queries/tree-sitter-language-pack/ocaml_interface-tags.scm,sha256=2Vtp9o9EgQ0_kLUkIDXLOAkX9wp5cj_NwdovlwhiidQ,2009
|
|
209
|
+
agentpool/queries/tree-sitter-language-pack/pony-tags.scm,sha256=gGNWmiHzv8Ge0HZo81tev-xIqHIQqjRxPR52G048-zs,2191
|
|
210
|
+
agentpool/queries/tree-sitter-language-pack/properties-tags.scm,sha256=AbcjxhGpG6F6lpCHs83HRXD223b-wrHQYv-i9j09wtc,135
|
|
211
|
+
agentpool/queries/tree-sitter-language-pack/python-tags.scm,sha256=KDCrM7iaUwXZ_hb2wVHrE2_EVCq_ASo3-BmbzsLtFk0,437
|
|
212
|
+
agentpool/queries/tree-sitter-language-pack/r-tags.scm,sha256=3cb2Wt-8Tt1RGBNDPgo4nI9qROf00ONNVqPHv8Th-Mk,461
|
|
213
|
+
agentpool/queries/tree-sitter-language-pack/racket-tags.scm,sha256=iri2aFEabiim-geb-t3ClDVp1Zi8T_rX1H9L0tlpqK8,224
|
|
214
|
+
agentpool/queries/tree-sitter-language-pack/ruby-tags.scm,sha256=vIidsCeE2A0vdFN18yXKqUWmpXMrGXyo4un_0Mxqr6s,1290
|
|
215
|
+
agentpool/queries/tree-sitter-language-pack/rust-tags.scm,sha256=3rz1XqKaOPKPWRUNPTW5OX_TYEDj5tQZfMxBH3EMB6g,1451
|
|
216
|
+
agentpool/queries/tree-sitter-language-pack/solidity-tags.scm,sha256=3uCJsbhwp-dVTiSsrGLt-PQ0uAnjmqUeHFPSEXd2JvM,1395
|
|
217
|
+
agentpool/queries/tree-sitter-language-pack/swift-tags.scm,sha256=ZvJcfjmUDZ9w14AXKSPPxf4gvpdE_qzBxDjfCczYrIQ,1439
|
|
218
|
+
agentpool/queries/tree-sitter-language-pack/udev-tags.scm,sha256=avj3u4prIR7o8hymHezOsqrOqjPSLGYo7C_lOL4Dxlg,417
|
|
219
|
+
agentpool/queries/tree-sitter-languages/README.md,sha256=CvHuhoq0bYOuIfrOQtB-CiE6qhPhEgHMS_jx76CcQZo,2610
|
|
220
|
+
agentpool/queries/tree-sitter-languages/c-tags.scm,sha256=EIz45o5hBh8yEuck5ZR_4IpcGyWSeNrzxFmtkKZGt2k,461
|
|
221
|
+
agentpool/queries/tree-sitter-languages/c_sharp-tags.scm,sha256=wKyFtOFIk-kqIFB2yJBbu1VGRUhdkAnDpxo8sXubkjw,1025
|
|
222
|
+
agentpool/queries/tree-sitter-languages/cpp-tags.scm,sha256=cAFwtQk3ZKsvCVWrp1fmhSwOP8WGTCEDRR5CQuzLlY4,803
|
|
223
|
+
agentpool/queries/tree-sitter-languages/dart-tags.scm,sha256=AjxpyJIXuLjP5u3U89bhWergxus0fbUKk1x1uIHCKPw,2251
|
|
224
|
+
agentpool/queries/tree-sitter-languages/elisp-tags.scm,sha256=wjm1YYD1vgjBbh0E2CzUnmagl82Uq6-LcEojmvhiJkY,332
|
|
225
|
+
agentpool/queries/tree-sitter-languages/elixir-tags.scm,sha256=eO20nPIwI7_vq4Fob6U5RjX1wLKgn6Gglj41ITpE6eg,1605
|
|
226
|
+
agentpool/queries/tree-sitter-languages/elm-tags.scm,sha256=4qTEWJCAd7_BOfwyky0q_NYzAMtGdiq7qwo1GIhXmag,951
|
|
227
|
+
agentpool/queries/tree-sitter-languages/fortran-tags.scm,sha256=BD6M5CVhMpINlLR7U9bL6STRwGLYBrMmvmldOHe1-9U,419
|
|
228
|
+
agentpool/queries/tree-sitter-languages/go-tags.scm,sha256=mHtS5NEuxWJGfVz1rq4YlJRMYVDAl5tf7iYnm6RikVE,848
|
|
229
|
+
agentpool/queries/tree-sitter-languages/haskell-tags.scm,sha256=mopkZ2Py3_Vl3xvpmaryzUVwYWAzl6GaYgmMb9qKD3Q,143
|
|
230
|
+
agentpool/queries/tree-sitter-languages/hcl-tags.scm,sha256=yOVCBeF4C3ZrFG-gg0adWg2QkxylPcI2dbVeEgD7EPE,2137
|
|
231
|
+
agentpool/queries/tree-sitter-languages/java-tags.scm,sha256=7WKb-djGv0Ief6XEWQPYpfLpgJHtMPPukIUi55PegvE,627
|
|
232
|
+
agentpool/queries/tree-sitter-languages/javascript-tags.scm,sha256=svVct6pxbcYP_-xEBwzGy6t1SlN7ajkEUCivUkBZn_Q,2251
|
|
233
|
+
agentpool/queries/tree-sitter-languages/julia-tags.scm,sha256=OdZDoUUljhmY5gnKlRPebbA6lh4OC3RuN4kpJqpKCGs,1719
|
|
234
|
+
agentpool/queries/tree-sitter-languages/kotlin-tags.scm,sha256=ugk8v7Or3PXiBk-_HfZznwLuV-b-s3TYm03Wm3q2h_o,632
|
|
235
|
+
agentpool/queries/tree-sitter-languages/matlab-tags.scm,sha256=GqF7QBytU-xGkcUWkGlMi7iJ7XnmmoMFB_mtMKXaJgw,309
|
|
236
|
+
agentpool/queries/tree-sitter-languages/ocaml-tags.scm,sha256=NAcyzmQuQPUjkchrQvcfhsvKqdcqbAt5eFb1chfEhMA,2695
|
|
237
|
+
agentpool/queries/tree-sitter-languages/ocaml_interface-tags.scm,sha256=2Vtp9o9EgQ0_kLUkIDXLOAkX9wp5cj_NwdovlwhiidQ,2009
|
|
238
|
+
agentpool/queries/tree-sitter-languages/php-tags.scm,sha256=vmE5CH2N46HiQxUpR_FL41ilQqsWsigojiacWXtwTuE,714
|
|
239
|
+
agentpool/queries/tree-sitter-languages/python-tags.scm,sha256=6-npVJM6y6C1q7d6VgcfohN75_iu7QtrLnvwO_L2EmA,325
|
|
240
|
+
agentpool/queries/tree-sitter-languages/ql-tags.scm,sha256=9qVpBGSgFC9fSK4E_5sO2gYe4_jPvN-D18SD6S5lNR8,707
|
|
241
|
+
agentpool/queries/tree-sitter-languages/ruby-tags.scm,sha256=vIidsCeE2A0vdFN18yXKqUWmpXMrGXyo4un_0Mxqr6s,1290
|
|
242
|
+
agentpool/queries/tree-sitter-languages/rust-tags.scm,sha256=9ljM1nzhfPs_ZTRw7cr2P9ToOyhGcKkCoN4_HPXSWi4,1451
|
|
243
|
+
agentpool/queries/tree-sitter-languages/scala-tags.scm,sha256=UxQjz80JIrrJ7Pm56uUnQyThfmQNvwk7aQzPNypB-Ao,1761
|
|
244
|
+
agentpool/queries/tree-sitter-languages/typescript-tags.scm,sha256=OMdCeedPiA24ky82DpgTMKXK_l2ySTuF2zrQ2fJAi9E,1253
|
|
245
|
+
agentpool/queries/tree-sitter-languages/zig-tags.scm,sha256=BPgov_nD_LqpL37sbdwsMYbFmHwjBOuRm76geKo29ds,124
|
|
246
|
+
agentpool/repomap.py,sha256=-UeJF5m7x7qYm65Cp_FngVLDEbMV_is11LQDW4HalUQ,41295
|
|
247
|
+
agentpool/resource_providers/__init__.py,sha256=_4OtDdzjGhyK7ONVsKrKs_YPS4l7qTuRUnNjq9IA5tY,885
|
|
248
|
+
agentpool/resource_providers/aggregating.py,sha256=3n0hIGPIxb_PXCukYqlICuH7-_CBlT0SjffkhDyo8FM,4238
|
|
249
|
+
agentpool/resource_providers/base.py,sha256=eEc2E2u8v7ES6gMdlCvW1qNdctOrSp6wa9A4rNbyM0k,7926
|
|
250
|
+
agentpool/resource_providers/codemode/__init__.py,sha256=Hvu2vtZqcE9XcTX9pb_iPBvj4IgjkkdIuo1A8LZySnM,340
|
|
251
|
+
agentpool/resource_providers/codemode/code_executor.py,sha256=lciUI6g3mTC5pWqmywmVhGLnwWZWg9dqJbGIvr9UqRg,9482
|
|
252
|
+
agentpool/resource_providers/codemode/default_prompt.py,sha256=ZJo42O-WfQeMY8ppiLUcEIbTNhT-6IKrDMQ_j8hh1O8,531
|
|
253
|
+
agentpool/resource_providers/codemode/helpers.py,sha256=Br5rrK2Stxp71opdtsbbK9Es0quBtMPx_Y3le0cOunY,2453
|
|
254
|
+
agentpool/resource_providers/codemode/progress_executor.py,sha256=mPE-26npxQm1ufvuty0cKiEGxsiTt9aX3qKYJcbbEHg,6978
|
|
255
|
+
agentpool/resource_providers/codemode/provider.py,sha256=MvJCsfJzyy7OSgjYbLPhuOZDCtq4hJbVm7o9X9ufrAw,7732
|
|
256
|
+
agentpool/resource_providers/codemode/remote_mcp_execution.py,sha256=5pfexInzZZGPBjFrQIBKgxDqeAGor4h7IQ4_z70l2ZI,4634
|
|
257
|
+
agentpool/resource_providers/codemode/remote_provider.py,sha256=fO8j91z1sWmScAjXKpPvKn5EQoU_ePvvn901b6D_Lao,6015
|
|
258
|
+
agentpool/resource_providers/filtering.py,sha256=5NPl-TjAEZhX9VQDfdqBPwQU5nsFlq9GyY6rz7HImeo,1329
|
|
259
|
+
agentpool/resource_providers/mcp_provider.py,sha256=_60jdT8GdlNeEd05QK5OHnw24LrjlsON2kthlvYp-B4,12620
|
|
260
|
+
agentpool/resource_providers/plan_provider.py,sha256=mHGyZNk0B3PcLFLN9knUhvVrfW0ByjY_W8vb0A-QxFY,13230
|
|
261
|
+
agentpool/resource_providers/pool.py,sha256=5UrEOo7RJY3z7kUAEY5O0g6ngHvkKfslOO6f-tlj9kU,2508
|
|
262
|
+
agentpool/resource_providers/resource_info.py,sha256=GJkvs1PBansFimsmFXyq8nFAR0rIrcQAXYy0Wd-yA7Q,3325
|
|
263
|
+
agentpool/resource_providers/static.py,sha256=VQwNnStbi56lStg7_OjIjxcmS-AQBfMpKyeyJTHISr0,9378
|
|
264
|
+
agentpool/running/__init__.py,sha256=1rg38fpmdcdi_UnAQKCAMegYfTb_k5vy-luquQUnPIk,589
|
|
265
|
+
agentpool/running/decorators.py,sha256=0jXh892V4hSd2iLRScfQ_9aKkUXR2leoCksm6ols4hA,1736
|
|
266
|
+
agentpool/running/discovery.py,sha256=_H068qrENu-6YZVeF2HNkKgnqro9TnYrEr5iTbC1DvA,3033
|
|
267
|
+
agentpool/running/executor.py,sha256=h-E8FonkwrEgRIoIjR9lKz2vc7yKz5gJVhRNs6P4er0,8836
|
|
268
|
+
agentpool/running/injection.py,sha256=QWOf2yNHRV8mASwso0GVLiLp4vfPE4AWqMg1i5Io5WM,3379
|
|
269
|
+
agentpool/running/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
270
|
+
agentpool/running/run_nodes.py,sha256=1R1aWRC-5kh1UuNkpNy6Xs-jtebs-ldNFaL1k_JNOoQ,2574
|
|
271
|
+
agentpool/server.py,sha256=DGsHjPzr1NWmWdGPLCbU_IFMuejzO4yfy3EsyIPceiM,3492
|
|
272
|
+
agentpool/sessions/__init__.py,sha256=1LzPg7ebYcwAfjIH1lw78IX1UlMiWLYHFP3T1_ZRyoE,442
|
|
273
|
+
agentpool/sessions/manager.py,sha256=nGLg0TKjxypchD_aeNaGOrrlgQuc4fPHkpDSkEcvH74,10562
|
|
274
|
+
agentpool/sessions/models.py,sha256=n_F5lJxWSwBw4wNwdU6k05tQGAvJxBWJPaGsCyL4-DE,3954
|
|
275
|
+
agentpool/sessions/protocol.py,sha256=Gl1znwFoeHKLA-s46sBSkfLbpXZjvy5dRx46CQGyMko,772
|
|
276
|
+
agentpool/sessions/session.py,sha256=7iUD3bQ-NgFnzL_UZD5T3_APLnn8TcIVidhsxJDmSV0,6268
|
|
277
|
+
agentpool/sessions/store.py,sha256=yqxSmQAKM7z4pGwYgx56oOaUii7Wv3lxRlefCKnN9X8,4328
|
|
278
|
+
agentpool/skills/__init__.py,sha256=I3nfekg0e6vOzMhK2jR7uHv2DHqdPLBLjAIczD3dzBQ,134
|
|
279
|
+
agentpool/skills/manager.py,sha256=dRZgPoBEWCGXWB2fZpUd7vH_MpGcuKeAaSqwiVqtUvE,4138
|
|
280
|
+
agentpool/skills/registry.py,sha256=3Pg3pqiEalA5FqHvm2SmYXOfhpq42zrmYAYDvzHP3jo,7894
|
|
281
|
+
agentpool/skills/skill.py,sha256=c8OslO4nnH8p6muKTVH_tDvcFz9LfbQ9veAuFZJp_II,1035
|
|
282
|
+
agentpool/storage/__init__.py,sha256=jFxKdECqKXXP_PesXUZawGPBD4ERbX0j2cTN5GjWrQo,358
|
|
283
|
+
agentpool/storage/manager.py,sha256=NR9OXIHmYTZ7gPdGub41R86nzzFvhIqt5Con-4hFgJI,32425
|
|
284
|
+
agentpool/storage/serialization.py,sha256=hVwbSoXAngcdBgBd2ucYKxx5Hn0OB9aFtTkB45Mt6Ms,4651
|
|
285
|
+
agentpool/talk/__init__.py,sha256=8uxRmR90LUXGf8Tm66BGzIwAo3M3fVSsbyuZ74e8Sds,300
|
|
286
|
+
agentpool/talk/registry.py,sha256=ybRFzw95opBfHiYWPEh-_iDrItfiSaR7kC66Is0a-qY,4339
|
|
287
|
+
agentpool/talk/stats.py,sha256=xzeNlj09DBQFvBKgCUveH4Sn-nJ480VpkroKds-VIbc,5336
|
|
288
|
+
agentpool/talk/talk.py,sha256=WPEXQJCF6WHdiEoq1cm4vbyEfBgeDjqRw7q73Hjj_H0,22329
|
|
289
|
+
agentpool/tasks/__init__.py,sha256=HpXy_KrC28IidN5GMYLgV0r4Zu8AfGSIbBfsoz14qVY,375
|
|
290
|
+
agentpool/tasks/exceptions.py,sha256=lXIqJaWVJt0BQGQQHn5wTKFnkpJoRLc0oHNlCqP74pk,513
|
|
291
|
+
agentpool/tasks/registry.py,sha256=yOjL0mxX1YjV1v_gai7f_Oq8sFDVrE1Zx0E46vDgqH8,1024
|
|
292
|
+
agentpool/testing.py,sha256=UHfP5EGjXevaRHNgH7OolTtPrHV6FSF9lUw2j6qYrQM,20382
|
|
293
|
+
agentpool/text_templates/__init__.py,sha256=BrmnvhBFBiErVit8oz0ctYiGMghHRgM5_vZ3QHLcI3I,1026
|
|
294
|
+
agentpool/text_templates/system_prompt.jinja,sha256=nSXXjsXhJmcZ-H1MYpfeXNP3H_Cqwo86LDuT3KtTCIM,841
|
|
295
|
+
agentpool/text_templates/tool_call_default.jinja,sha256=lmZB9AN7issDyRjSC0FgkR5ZDjOZJfw0s1YkD4gsx_k,223
|
|
296
|
+
agentpool/text_templates/tool_call_markdown.jinja,sha256=QyqOGjNCTddolT1YaxC_lUZI_hUMDJo_TQ2oee29Hp0,412
|
|
297
|
+
agentpool/text_templates/tool_call_simple.jinja,sha256=VcUmYWHc6pDYBEu_HbYba7BM2M9xpx0BXkgGuxYQOyc,180
|
|
298
|
+
agentpool/tool_impls/__init__.py,sha256=d2M5s8jxGTooBZPHp4xptqlEQNlSjHwAL1uvIvvwHmE,152
|
|
299
|
+
agentpool/tool_impls/agent_cli/__init__.py,sha256=tCF7GYWVE4xOO1QCJK4S8T5_dME6mdC9EXAiWSwjTLc,1062
|
|
300
|
+
agentpool/tool_impls/agent_cli/tool.py,sha256=_I_ROuqUQqNy5DQGE0uqe_1RRmYvyeiS64aPzxtVpe0,3047
|
|
301
|
+
agentpool/tool_impls/bash/__init__.py,sha256=L2FLpzca8upftOMtHDXxrPALnUfviv2l7NKNvu4XXCo,1777
|
|
302
|
+
agentpool/tool_impls/bash/helpers.py,sha256=qFLWR5ed5Vbr7DBrT7FzNsXG1dCS3rkXcF_s4288o9o,1043
|
|
303
|
+
agentpool/tool_impls/bash/tool.py,sha256=rRU0qTHf_sFTK3a_8sW897FBFmnp6XraBE31-sY0uC4,6844
|
|
304
|
+
agentpool/tool_impls/delete_path/__init__.py,sha256=4L97OZ1JPhgVhJNIUmnZ90Alu9u8ArCcUG_mYm1pw5s,1867
|
|
305
|
+
agentpool/tool_impls/delete_path/tool.py,sha256=H3am1AJogP8iFFAZdTs2UfPQsMc0YoMifTE-rWI5Kxo,5139
|
|
306
|
+
agentpool/tool_impls/download_file/__init__.py,sha256=LeN2mszAh1T1FSLO5LObZ9M0F4YkS21VNoOEfEyKP1A,2186
|
|
307
|
+
agentpool/tool_impls/download_file/tool.py,sha256=64wGM2_sNBVfibvWxHOtGmZAIY3-9PEZ3B8BZd6V_K4,6672
|
|
308
|
+
agentpool/tool_impls/execute_code/__init__.py,sha256=vYVcOpSTaM4m6m8MDa0JSISsjoErkA0GQXe_basRrmA,1473
|
|
309
|
+
agentpool/tool_impls/execute_code/tool.py,sha256=WMHmEdwJFz8lBEst60ISoVvkVhRC1BkfoRIFrMEkdEg,5897
|
|
310
|
+
agentpool/tool_impls/grep/__init__.py,sha256=D0IulUZZD4amoZgWC8OVuTKuP-D-78uhVOKJ6-XDMN4,2246
|
|
311
|
+
agentpool/tool_impls/grep/tool.py,sha256=9pZz03JwI5Hp5GwOULdDdF9gInoKQOUi319veQ78BvA,7406
|
|
312
|
+
agentpool/tool_impls/list_directory/__init__.py,sha256=mAo_IJMnET16vGrNnuKnPcCkxosCjTunm7yyI5O5Sz0,2076
|
|
313
|
+
agentpool/tool_impls/list_directory/tool.py,sha256=rXNLB-2ymHVINU38IhgUNNFYMcyXNW09-PfxNe_HdGk,7770
|
|
314
|
+
agentpool/tool_impls/question/__init__.py,sha256=gRmZVU-gfptIYc6n35yvpdQWwuogT5JzRu3dz1AY8cg,1088
|
|
315
|
+
agentpool/tool_impls/question/tool.py,sha256=yYHpNntURjksPG4N23WuVyUm9imRi82WWrRbir4MRi0,4192
|
|
316
|
+
agentpool/tool_impls/read/__init__.py,sha256=gBch1_MQkGv4Y3d_jz-rTsat26khwQqTBMmIPnabxeU,3441
|
|
317
|
+
agentpool/tool_impls/read/tool.py,sha256=5-OrHnrnBxWeNmMNfgWF1ElbEV7DoMlxdTwrvdqY2nQ,13254
|
|
318
|
+
agentpool/tools/__init__.py,sha256=cXOHnsM1pVOongcQ8g29ecg-Zh7tKWQnZMS3MCYrx_4,442
|
|
319
|
+
agentpool/tools/base.py,sha256=-ti-0MMoKX9JKZ29rb0UruhiK-9gpZvPbIE3YbIxg94,11730
|
|
320
|
+
agentpool/tools/exceptions.py,sha256=oKOrUb60RjitLupYm9n75J_BQVGdidWA-n6pE3QyCCY,190
|
|
321
|
+
agentpool/tools/manager.py,sha256=LHLD9NMS8c054curyCdkZ_T_hoifY6b5g8pFu3S3a_s,11851
|
|
322
|
+
agentpool/tools/tool_call_info.py,sha256=EbNKySnlQ545Q4duOdT7GcUDS27uNwDPZ6SBtnt4OFs,2745
|
|
323
|
+
agentpool/ui/__init__.py,sha256=fwQp1WVM3VyOUR-V1lhaJUeVjmkQGcreflYwWH3-orQ,82
|
|
324
|
+
agentpool/ui/base.py,sha256=Nq5E9y-bWYhP2bO8NUTthszzzPGTw_t1r3tiC58UexA,2696
|
|
325
|
+
agentpool/ui/mock_provider.py,sha256=gxqmz1YHJcC-ryWLq61ZQB3wZ0iruJq-Sh_O3dl3BJs,2615
|
|
326
|
+
agentpool/ui/stdlib_provider.py,sha256=LWEoYA1NDJ5xCoCVDuH0e-HzMfA04cz5CiQKOhXKA8A,5263
|
|
327
|
+
agentpool/utils/__init__.py,sha256=nMhW8kYB7ysI-ABlR6Rdq_HyMI_J_QM2D0vA0ho-JKE,1212
|
|
328
|
+
agentpool/utils/baseregistry.py,sha256=CiI4Ph6UmiOlGj_ZTz6DncLnkdeNNdyO01qq02oqZjY,6059
|
|
329
|
+
agentpool/utils/count_tokens.py,sha256=CwlidDhx_H0CFp_8hi20hbpoFcu2osEB-Sdee9jkAgU,1640
|
|
330
|
+
agentpool/utils/dag.py,sha256=jpaKwKxcJt8y1mJLMTqPLCZ8Uco-ZIfdI70D72RFeCk,5374
|
|
331
|
+
agentpool/utils/file_watcher.py,sha256=ILyveB5byqwZGQOTVUtvMYR-fnIo7Ljs56K0dddzH1I,8439
|
|
332
|
+
agentpool/utils/identifiers.py,sha256=E_hk6hC-SszfUKS57okKcC5unXBATmsFXnHlO1wE8-0,3224
|
|
333
|
+
agentpool/utils/importing.py,sha256=-OtceIZwLXnmHDVF37TGD7Ui-xc_5B9wWnou4feK7Q8,6272
|
|
334
|
+
agentpool/utils/inspection.py,sha256=WkK_TzElgHSGO7douq5Gr5f8gPD-11sKpDld81FM8XI,10207
|
|
335
|
+
agentpool/utils/model_capabilities.py,sha256=DJ1HJTrS0MCwRKDA44_aqjyrgCgvh109J1b_FFtgWvA,623
|
|
336
|
+
agentpool/utils/network.py,sha256=lUOVBMWQaeyxTlxxM0cdvMx6Lt-JfVulKDUvgYlokQY,736
|
|
337
|
+
agentpool/utils/now.py,sha256=b-rUOZWKQJ1sCgm-N0aY2jB2A7wErx8BIWRdltG_ido,493
|
|
338
|
+
agentpool/utils/parse_time.py,sha256=iGZligPt4X-PM87dV9OjV58Ec6ngbl-gY_ufUmAfogE,2423
|
|
339
|
+
agentpool/utils/pydantic_ai_helpers.py,sha256=e86ywboNh_QaTB9IISpas7bRr_ZX9dXuMujFDgXiJKY,1518
|
|
340
|
+
agentpool/utils/result_utils.py,sha256=RhiBzgzghOPCO87KoOslZs9LZQdSBWFi40Yvb-bBw_0,1108
|
|
341
|
+
agentpool/utils/signatures.py,sha256=XzpXPfs1XQb26mD4e8bjUlWXbW1bsswLtifCAuYSELY,11564
|
|
342
|
+
agentpool/utils/streams.py,sha256=2XMDFMsTRmd4bfNTxQVvCX5sq7nd9cywgPD4B7dBbjU,22889
|
|
343
|
+
agentpool/utils/subprocess_utils.py,sha256=_bFrV-kZryaIias185r2mVApCS7WgVnK2PPtWU7O_ZU,4253
|
|
344
|
+
agentpool/utils/tasks.py,sha256=Z1uZi98pFx8BoNBE9ef9P6jr1cgpMNkhT79IFcIuqN8,6581
|
|
345
|
+
agentpool/utils/token_breakdown.py,sha256=MS0JrxoNqI073mWsfI2s7BCvGr4SpgAQQBBaWnxXL8M,15894
|
|
346
|
+
agentpool/vfs_registry.py,sha256=19Oz4GgeDYd9WCLzcvML3bNuVoF23-Up54yTDOG04gw,8236
|
|
347
|
+
agentpool_cli/__init__.py,sha256=fi0loBvgZqzpzcmajCKbrAMxxVFxdaUfCpqLDYxZtDo,903
|
|
348
|
+
agentpool_cli/__main__.py,sha256=CdTq7MHszddv1WoKxLa_HhjywBMsLjqta2ikbmWdok4,2839
|
|
349
|
+
agentpool_cli/agent.py,sha256=_GZpCXjm9QUaSjuT3JloYDWsgQVebg2AXXa69t4bLYM,5367
|
|
350
|
+
agentpool_cli/cli_types.py,sha256=va8hnyRhzHBNLa8ZvrqpZ-yWzyou0sdWUITYLnYBIjQ,532
|
|
351
|
+
agentpool_cli/common.py,sha256=lz89WDTwt9xvmcoS8CcDjFRm7KxKX9jD2tNAIQD7dxA,4822
|
|
352
|
+
agentpool_cli/create.py,sha256=ubKutoIGjgqqJDeFYzoU47LAV7IBgZ7hyzBMAuZnD7M,5949
|
|
353
|
+
agentpool_cli/history.py,sha256=jd846SmfdUn8hIOfF-pYRUwtfnVmnAiXVg1Jn-iYSdQ,7445
|
|
354
|
+
agentpool_cli/log.py,sha256=JEnuiqNWkk7clYmhBFZAN04ZGs6X4JPJtj5Hd4RuGNc,2133
|
|
355
|
+
agentpool_cli/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
356
|
+
agentpool_cli/run.py,sha256=Iwn-ZpKl-Y2piO9GrgiZGZxrZQrodyRHB8cPhzqTeok,2934
|
|
357
|
+
agentpool_cli/serve_acp.py,sha256=eArk7GdivFKLf1nGFD3jm3AUyGiVlbKtLlvUXFKiUBE,9098
|
|
358
|
+
agentpool_cli/serve_agui.py,sha256=nvr0jjGsrtt8d13477NvjCd-JzoKehB1dhZAKMUq3C0,2609
|
|
359
|
+
agentpool_cli/serve_api.py,sha256=0F_nU0HIu6SIK-DwTbNH-6Kr0g8LD_GoqFSVCIA8wYQ,2068
|
|
360
|
+
agentpool_cli/serve_mcp.py,sha256=i_G_zB4KJv6xr5fkqtm8Spzvq6e9HDS7BmDdLbDYQu8,2462
|
|
361
|
+
agentpool_cli/serve_opencode.py,sha256=ZkHwiFYw5c5ILWAwTsGC6X3NdhF0E4r571jBi5_Omok,3705
|
|
362
|
+
agentpool_cli/serve_vercel.py,sha256=vSOqLYoV9tejSarCc7lKVEqRFQzSntiSQlCcjmxr4b4,8147
|
|
363
|
+
agentpool_cli/store.py,sha256=bjd7MCHQZZHSH0Uh2VvKd60QO88BBZnO7ORSlAdXNmY,5410
|
|
364
|
+
agentpool_cli/task.py,sha256=ABKyNlGx3Pr3T8uyGZvajsCBHf1n9xY5Reh9uLI8hsw,2369
|
|
365
|
+
agentpool_cli/ui.py,sha256=cU090UzZdYjS2gxuLz2Jxa0LfnjEPg3MuhkVO-VMn74,18281
|
|
366
|
+
agentpool_cli/utils.py,sha256=Ac6nO4y31oPPSoZ6WraCGqtDjHQI8C1jlrfxbjPmVRE,3179
|
|
367
|
+
agentpool_cli/watch.py,sha256=_8dGPnGWUK24VPAvBzUg4pYED2FE2tvsyrCx-9EfAvs,1679
|
|
368
|
+
agentpool_commands/__init__.py,sha256=FYy_reYMAlVKtFCNlGqGLEHut7P4FT9fVZcQ2PVtUKw,8301
|
|
369
|
+
agentpool_commands/agents.py,sha256=j15t7oTw_akrdU6zf9wYhkKKHA-AxPf9cSCdYViEi0s,8993
|
|
370
|
+
agentpool_commands/base.py,sha256=3SmCor_AnSQxvaUtMZV0QU5QnSbGL9W0LHpMr35RxGQ,1247
|
|
371
|
+
agentpool_commands/commands.py,sha256=sJbyJHFv3WAautmxbWp5x6jEF_y6k5zQb1l3hzGhjeg,1779
|
|
372
|
+
agentpool_commands/completers.py,sha256=MNZBWlgFqCZfzZ7XV22hlk_2fSwTUUN9Qoa8j8HKy2E,3908
|
|
373
|
+
agentpool_commands/connections.py,sha256=WjS87xKl9brBKeOyT0c5VheUgIjBWSIGtHh5vHgEXFU,5407
|
|
374
|
+
agentpool_commands/history.py,sha256=-ovu6TiT74wr_nai6WWF7__LFiMCpNprdM5ajSlN31Q,1893
|
|
375
|
+
agentpool_commands/markdown_utils.py,sha256=iHlIUzIG0SO7iSRrgMrw4VXUDAABiOH6OvX7Husm1QI,809
|
|
376
|
+
agentpool_commands/mcp.py,sha256=qvvCFXGMQ-BYhuHUW0mLeWU8d18S1lqPAZMuWmmaXa4,5615
|
|
377
|
+
agentpool_commands/models.py,sha256=LZG-NHNekVY7XY6l6QgnQVVVmTm2ob7nkBhXVXBIgu8,3394
|
|
378
|
+
agentpool_commands/pool.py,sha256=SfBKl7K2PFqyASqEmvbMwR8d2kRCi-2pzpM2bL6Fjz8,9122
|
|
379
|
+
agentpool_commands/prompts.py,sha256=-rRVTPhbWGZgzK7gJ0OrJgs4pLiJXOdK2dENjWdhCnM,2754
|
|
380
|
+
agentpool_commands/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
381
|
+
agentpool_commands/read.py,sha256=IcMoOSClj8YrYu3Z07ASdR0FBbXohNDL-rx93tQQJk4,2335
|
|
382
|
+
agentpool_commands/resources.py,sha256=oMLOSCKWutzuGTBZgNCG7ATcG4ezoKk7PHf21axogZA,7310
|
|
383
|
+
agentpool_commands/session.py,sha256=lgBCG5MWxZndb33bt-id_uiIixQout4Br1PAAA_b9zI,1290
|
|
384
|
+
agentpool_commands/text_sharing/__init__.py,sha256=msQ7q3tjJgNVhZhS_y3YI-ALgrUPmT-VOuiVF6Viqlc,3016
|
|
385
|
+
agentpool_commands/text_sharing/base.py,sha256=cM4VuQgI5Bb5T_NR_jhwLjjRWeUpyDh-bMb8z0Xkd2Q,3453
|
|
386
|
+
agentpool_commands/text_sharing/github_gist.py,sha256=H_H9BJp6rtlf4l5TPoOFSbsoTqdfTRCfn_EfFXVOCfw,2673
|
|
387
|
+
agentpool_commands/text_sharing/opencode.py,sha256=Gw9YcIhufC5_VxorSGb8y-sJ0SqJ80JG3o5q0fvu74U,16124
|
|
388
|
+
agentpool_commands/text_sharing/paste_rs.py,sha256=m-g8qZbvO1zex2VW93NFxaC8EkcIOhEkYVoKt_M7fjw,1711
|
|
389
|
+
agentpool_commands/text_sharing/pastebin.py,sha256=BUb_UBAsAKJXlfUlPej21Gu6U-CSwQIkBUOWEQl3qYA,3577
|
|
390
|
+
agentpool_commands/text_sharing/shittycodingagent.py,sha256=ys33m_wnhF4ZSlP2uBKSxOF6CWOYb6K5YZGROmnOSug,3527
|
|
391
|
+
agentpool_commands/tools.py,sha256=yYKRjahVSjkXn6rkhLoPoIFQ9grrMP-1VHg5-MIzNz4,9620
|
|
392
|
+
agentpool_commands/utils.py,sha256=wZdzN1GNg3JkCeZDtnaikMZNjNqtV56wTkDzvoPLnxg,7851
|
|
393
|
+
agentpool_commands/workers.py,sha256=pGC-roAqzB9TXFJX_KAlORdpqY_xFxoyjHkvPko2Z3E,5241
|
|
394
|
+
agentpool_config/__init__.py,sha256=Nounjk4KKhOEoGtLUP1vewmCOiMc6CtuP7Lsv4AeySg,2067
|
|
395
|
+
agentpool_config/agentpool_tools.py,sha256=-8N4W5wMJ2JdfgUxUKvhM9a5G9v6vajXMtqUSXwNX1E,14878
|
|
396
|
+
agentpool_config/builtin_tools.py,sha256=XD5rUvdpkpgiah5MZ4ev5V6auWGKsJ2uprvtyyEhHjg,9585
|
|
397
|
+
agentpool_config/commands.py,sha256=ia-VyprYxvgO247M5PhrQTg1tUBPV3mEwe9T9atKzL8,8780
|
|
398
|
+
agentpool_config/compaction.py,sha256=pdblL8ZiPmXgf9615Cl6oFkHJVerYfX5zguWe1m2I0c,7651
|
|
399
|
+
agentpool_config/conditions.py,sha256=LjqtR8gwOYNwmFJKuy_p9i9pJhjHzLjM_7s_kR4r9oE,10077
|
|
400
|
+
agentpool_config/converters.py,sha256=mFXCkpC5awkNjOXqlpkNGmT9PE9frJa2Phri_9dEOjQ,853
|
|
401
|
+
agentpool_config/durable.py,sha256=3LvHDH1Oj98EjQ1xM5WaXPyvfjGY4k-7cHeRBxz7LrE,9385
|
|
402
|
+
agentpool_config/event_handlers.py,sha256=fKbcIzAVDP44-mfx57FqgzaflQNwG9nNg_05VDrqQh8,18679
|
|
403
|
+
agentpool_config/events.py,sha256=_btmLwQZLAqEtJkdH68Vx_rN41P-_wzy6p41VnOnSAE,4452
|
|
404
|
+
agentpool_config/forward_targets.py,sha256=qcMCZM4PihvPCZBwV1hy0gQ-YkF_OZvWecRWmBc0XgU,8344
|
|
405
|
+
agentpool_config/hook_conditions.py,sha256=dxDne0u8OZLngW87XdmNHSa1RCGjGvWYNlrRXVtlS8g,9278
|
|
406
|
+
agentpool_config/hooks.py,sha256=U0LnIPH5IiK7YXJ2ABRsQ4ZK1G64VW9LJ9kFPVCrl50,7171
|
|
407
|
+
agentpool_config/jinja.py,sha256=E2AoPu47zes9busqpwW7cUBCHYvNtfgqdMsCAxj2yd8,6834
|
|
408
|
+
agentpool_config/knowledge.py,sha256=xdrC3mseRs8iH7DN9Jlvbj_pcmw-GlY0pFmWqY9fDTQ,1384
|
|
409
|
+
agentpool_config/loaders.py,sha256=OFwinzF_i6ek8IVf-_IIXJD_gnt37UGSVsD0wjpcygo,11861
|
|
410
|
+
agentpool_config/mcp_server.py,sha256=ZXRxZbE_EgNyTdM8X-F6SEtM-YohcEh2qJpxSK9XhkI,12425
|
|
411
|
+
agentpool_config/nodes.py,sha256=FdJcU6gwOKFIoIU7eCgT3hZ4xLChbNBF0nTdZY0fwMw,6061
|
|
412
|
+
agentpool_config/observability.py,sha256=Nqfhl45TQXePWeB0CUXIDJo0KOqFXjW8DET1fFLWcF4,7887
|
|
413
|
+
agentpool_config/output_types.py,sha256=D3kuSNzXrn3GCoc_Ej2Hu6_kOqJEWiX675nDFj4t-6g,1822
|
|
414
|
+
agentpool_config/pool_server.py,sha256=mOJwgvAl6BiUazqi8wJTYJ5eJZXE-TgaueHiG9lxzAE,7343
|
|
415
|
+
agentpool_config/prompt_hubs.py,sha256=IMCf_kvg7XlrxLQRzUW5x7GmOFpDleXIGfQT6CTryzc,3329
|
|
416
|
+
agentpool_config/prompts.py,sha256=dPdyVd4w38Q4RVGTEbT0tz7GNGQeTmUd2ru6h-8aqXM,6249
|
|
417
|
+
agentpool_config/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
418
|
+
agentpool_config/session.py,sha256=JOVY2FDbPkYKY6CB8deDTNa2ndiEf_Jl15zXJrqIGi4,3603
|
|
419
|
+
agentpool_config/skills.py,sha256=pUesZyxb8WpYUAPkjF_SCAS2XtaacUrG68vScek-Mt8,279
|
|
420
|
+
agentpool_config/storage.py,sha256=YYJOQUP0nCkgRSUyJU3Gku4-zVpSPaLBOv42kbe3rTg,11231
|
|
421
|
+
agentpool_config/system_prompts.py,sha256=nt7GgFCYpDvYK1gon8-AMk1yX99ipOSxFOiBVo1OlUA,5789
|
|
422
|
+
agentpool_config/task.py,sha256=T2I4_Yu4ibb-3tmsPuBpaVKhnnL_dOgUK3IH9o6UL7A,5209
|
|
423
|
+
agentpool_config/teams.py,sha256=i84mTdLNGfyBXTM-MG4AljFZkHEBT-saTITkpsTrGb0,1546
|
|
424
|
+
agentpool_config/tools.py,sha256=_oV6CT9_eY8iH2P2thuEOXglQy5kTDdZlzDBEfQ8Ca0,3235
|
|
425
|
+
agentpool_config/toolsets.py,sha256=8Ft3-fpu4sAUnUnPqxCaxlDhOJxxy6SevjDlIynqWGI,29803
|
|
426
|
+
agentpool_config/workers.py,sha256=bcAaOLyM7su-aQEe5TU7bKbN_kQyS02GgSUsLDyGanM,2599
|
|
427
|
+
agentpool_prompts/__init__.py,sha256=cW6TB3SK5p0_s6dJGXP8kpJq3EnbgA0E0gk3VfiuHS4,23
|
|
428
|
+
agentpool_prompts/braintrust_hub.py,sha256=CekSCI2IkM9v0BY19dZu4yYPuGrutNkNhTSwhSnriJg,8757
|
|
429
|
+
agentpool_prompts/fabric.py,sha256=5CrfytOzQoi7MQ8bG3cg0Bb-zLfada0RRFC9iUIVIpA,2610
|
|
430
|
+
agentpool_prompts/langfuse_hub.py,sha256=T1moJ4g399chsNJV-N0WBtIYn9kfsooPObIRGUnqYTU,2384
|
|
431
|
+
agentpool_prompts/promptlayer_provider.py,sha256=gxMed4ZdEWFqlip3T-lyNEnY4lSk_Pyt4gGHxWKXOqI,1757
|
|
432
|
+
agentpool_prompts/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
433
|
+
agentpool_server/__init__.py,sha256=Fk6w4fmZFHqL5dntxSuCggHB3lguyueMSlumYYdGYFk,394
|
|
434
|
+
agentpool_server/a2a_server/__init__.py,sha256=KLwg9FOjDyc0B0loeIAm4U3ADPzVz73lBorPcWj8fKU,74
|
|
435
|
+
agentpool_server/a2a_server/a2a_types.py,sha256=XL4cGp7rYI1_sLBnlc0hU6vNNqZtMMyr7Z8JfmRTLDU,727
|
|
436
|
+
agentpool_server/a2a_server/agent_worker.py,sha256=vsOCJvmstA_p3vPGLeTaUGTI8gD0IccE1Pwn-17U0m8,12439
|
|
437
|
+
agentpool_server/a2a_server/server.py,sha256=pC-wBtg0KAeu1vPivFIlsNqwAgwWcPzyNu5l97KQmyc,6780
|
|
438
|
+
agentpool_server/a2a_server/storage.py,sha256=vMPRmpNR_40SB4hUUoGomzDR8z_BfQU3hva3Zy4oNQ4,2636
|
|
439
|
+
agentpool_server/acp_server/__init__.py,sha256=E_oL_bnCkn2tiL-QEjuZ1hyiANPmtJiCUMGfozvPTFM,636
|
|
440
|
+
agentpool_server/acp_server/acp_agent.py,sha256=1Skp4gBEGRkiX8U2m7ryGWAN45hAlau5I59KXIQQPxM,34000
|
|
441
|
+
agentpool_server/acp_server/commands/__init__.py,sha256=H1RULVwM52SHbPktV73gSNyjC_whtjMl5DXTLcJutsk,440
|
|
442
|
+
agentpool_server/acp_server/commands/acp_commands.py,sha256=d8HS4B8GC-EjLPRHpme7TY6d8H2N39k9yxRaESfH5wk,23342
|
|
443
|
+
agentpool_server/acp_server/commands/debug_commands.py,sha256=YcHZqmmWTmf8h52rmzVBdnNZO-c9lSCZZ0IFGIxEkQA,12741
|
|
444
|
+
agentpool_server/acp_server/commands/docs_commands/__init__.py,sha256=wGcY0vRrWoc-AHRwileJpk_Ok-cI7dMmgTgpFSUBfHk,1004
|
|
445
|
+
agentpool_server/acp_server/commands/docs_commands/fetch_repo.py,sha256=KMMSk1NBmF4ZelKHeXavRP21SiJU57NOVdvprVPKypc,6377
|
|
446
|
+
agentpool_server/acp_server/commands/docs_commands/get_schema.py,sha256=-r0iSQWiMele2L1EcKcSVVRLBE9fy8hCViIF75aHX5M,6584
|
|
447
|
+
agentpool_server/acp_server/commands/docs_commands/get_source.py,sha256=xKt_-PjLTAwRpCo9jVlgQIKCCOek39oKc4i0l2npTe4,4090
|
|
448
|
+
agentpool_server/acp_server/commands/docs_commands/git_diff.py,sha256=h3f07LU9GdtmwibGU8grGv1K6CxbkmXVwhVeyNY4v80,4109
|
|
449
|
+
agentpool_server/acp_server/commands/docs_commands/helpers.py,sha256=Wd4CGb_M_MAUBQN16gCHtvqhvLWm_YZMRz0aNdKSnls,904
|
|
450
|
+
agentpool_server/acp_server/commands/docs_commands/url_to_markdown.py,sha256=XJX0_kaQ71dS7PLDahYl4cHdgxyNieuTK5lsVkMVxpw,3291
|
|
451
|
+
agentpool_server/acp_server/converters.py,sha256=vVlZOwkm-vP3Ei2BheO7M-6mVE5vhQIxg4dy09Lo-wk,8291
|
|
452
|
+
agentpool_server/acp_server/event_converter.py,sha256=jFPTx1ypJ8jFdO5T1Zl0UJ0itpqo8FmN3-FhOujGtFs,26608
|
|
453
|
+
agentpool_server/acp_server/input_provider.py,sha256=vXnuhtS2qcTyC_bogfYTizhiyALSTolR1uRpTkl3glo,16451
|
|
454
|
+
agentpool_server/acp_server/server.py,sha256=wxNK-RE06gLgHemU9yfb2eAk94-8ljQzkESyYSen_xo,8679
|
|
455
|
+
agentpool_server/acp_server/session.py,sha256=zMHZ0LnBkWnLVTDERF95gQ-khos2lH6KMB3RIAuPtCI,35766
|
|
456
|
+
agentpool_server/acp_server/session_manager.py,sha256=kgL1RHfEmvqGY5dJh-yfafrsz15c0hkY2lSXZZ12lP8,10543
|
|
457
|
+
agentpool_server/acp_server/syntax_detection.py,sha256=CtYVOUu7lt4i5I34inTmFaJ5gF9UkEM0_M25P_R54wo,6360
|
|
458
|
+
agentpool_server/acp_server/zed_tools.md,sha256=5tpE1-ARtKAeYOcGbvitIUehRAi8-JiR5flNuZ87AEg,3589
|
|
459
|
+
agentpool_server/aggregating_server.py,sha256=oNgTJ4gaWhx1PviQOaryOfjYW6ASTSmbhx9qtqEHQME,10517
|
|
460
|
+
agentpool_server/agui_server/__init__.py,sha256=wIwXvEzaJldCR_pXA6X7IgM9L71qDWmTDdJa4LKkCOM,295
|
|
461
|
+
agentpool_server/agui_server/server.py,sha256=jmhxNYKlQI1gYXI-yJh7P1LA2uNZ19HdWphr0tq-Z0M,4687
|
|
462
|
+
agentpool_server/base.py,sha256=FR7pQ5i1RkoeEPLVO73FMRWJZPtjX8cWynId4HziSmI,6635
|
|
463
|
+
agentpool_server/http_server.py,sha256=Ls6C9AdYrpUGHbobQdt6gBZLc75N8ECxbqseIbGK62c,4743
|
|
464
|
+
agentpool_server/mcp_server/__init__.py,sha256=FH39HoB5zw2ApHIpjz1_zrCaiynORXQvwZDU6nuHnSg,140
|
|
465
|
+
agentpool_server/mcp_server/server.py,sha256=S43FMIxojwA9Apkg0G6kSzMtKXGUrOBQG6Edv4KmI8s,12365
|
|
466
|
+
agentpool_server/mcp_server/zed_wrapper.py,sha256=6Vd8im8otxv5qiZU6XaJ5bICmsXxWtLnDxdmtmMnoAA,3435
|
|
467
|
+
agentpool_server/openai_api_server/__init__.py,sha256=YQR67AcmQSPueXzEvTZHzzsJxHqg5zv3aLIfS5-Au7k,118
|
|
468
|
+
agentpool_server/openai_api_server/completions/__init__.py,sha256=bH-MCUwJFJ9dJcHM9TJ7c97_5YJrWGfjOY-QsS95KN4,23
|
|
469
|
+
agentpool_server/openai_api_server/completions/helpers.py,sha256=pWgWiWF7UsLS_2F1co3nEENvZkSNWtBqQ_zVydabkPQ,2784
|
|
470
|
+
agentpool_server/openai_api_server/completions/models.py,sha256=NCgOi1hmde_6SnNxoTKRmdL4yf6sDmdl-YyUlhG5sHM,2101
|
|
471
|
+
agentpool_server/openai_api_server/responses/__init__.py,sha256=4yMHkaCxJEmNODPvTN-TuvNppS82ZJuTRnRH3u8ojW4,21
|
|
472
|
+
agentpool_server/openai_api_server/responses/helpers.py,sha256=uD_12vWBKTMUE8HUqi7EuY6O0LvmqSBI1gHL6fp60U0,2439
|
|
473
|
+
agentpool_server/openai_api_server/responses/models.py,sha256=d_yLcJTT1hsweEc-gfhHxl3a0nzX7IN0SyrAICeq5_w,2550
|
|
474
|
+
agentpool_server/openai_api_server/server.py,sha256=VxfzZkLFNCEXMpl83Rh9EKh2P7EJgmM1kDGeZAGthR0,8845
|
|
475
|
+
agentpool_server/opencode_server/.rules,sha256=_mvVTNkGfWqiBNvGnUqK10SOtqACHZOCU1SiwyE193k,3034
|
|
476
|
+
agentpool_server/opencode_server/ENDPOINTS.md,sha256=0xXWrIuAIRWPGSPdsz2L4zKvxUSp0IMBeVkjYu7IUSg,14465
|
|
477
|
+
agentpool_server/opencode_server/OPENCODE_UI_TOOLS_COMPLETE.md,sha256=7J7iT-01MakYzd30cM6EfcB9mBb14i82rhmcRoMVvoI,5550
|
|
478
|
+
agentpool_server/opencode_server/__init__.py,sha256=qhsPJkoIVl3wF1hPwl9vsYXsjC1V6pvhXvVRVmVd4ew,502
|
|
479
|
+
agentpool_server/opencode_server/command_validation.py,sha256=9y5GU67NtsNA26bHv1djwBIdozzt-huAiXM8XPZMyE8,6063
|
|
480
|
+
agentpool_server/opencode_server/converters.py,sha256=CdLXJA4m8s0ogE_2jeixaM7b3ActcQBkf7xPM-AIRxc,35602
|
|
481
|
+
agentpool_server/opencode_server/dependencies.py,sha256=cSOFYAw9w4JuD57glx9IO0KkDeMFEsFigz3haheGVuQ,617
|
|
482
|
+
agentpool_server/opencode_server/input_provider.py,sha256=MYMGOoKSc_o4UM0I--o9Q0sRx2r0hKfbW0zKdwL_kmg,15549
|
|
483
|
+
agentpool_server/opencode_server/models/__init__.py,sha256=xnNf70agLxL6Bzw7MaUsamKgt3l2bP3HYyZdND4JINM,5518
|
|
484
|
+
agentpool_server/opencode_server/models/agent.py,sha256=idnjhO31eF58B8Lz7A_05vK1H5_Exgyadcq116tGOxk,1544
|
|
485
|
+
agentpool_server/opencode_server/models/app.py,sha256=O_2z9wVhC102gab87CaOW8CJbnME1NtnaF36UpjhiLg,1474
|
|
486
|
+
agentpool_server/opencode_server/models/base.py,sha256=iK0nwwlnNrxXYOgUrpfmqfAQj6f-IhN4l1cTQZg9n60,733
|
|
487
|
+
agentpool_server/opencode_server/models/common.py,sha256=MGyhcWYxsG9VrX89fnUCtynmOcTl9KAY3IVCglOG4Xo,549
|
|
488
|
+
agentpool_server/opencode_server/models/config.py,sha256=yLRPy6dYm2_r5TyQ4tt-2k5b-DLjm4Go53zT1mFltNM,813
|
|
489
|
+
agentpool_server/opencode_server/models/events.py,sha256=GdRfZc4YGP5w-gqmQaRxReuRLrlETuiaj6T1ne094x0,22543
|
|
490
|
+
agentpool_server/opencode_server/models/file.py,sha256=3zIxf3k6AAV8SxiGCPQQcs_JuixkpIruXif3DTapJS4,1891
|
|
491
|
+
agentpool_server/opencode_server/models/mcp.py,sha256=Pmc9uZO2-04Mzm2qSwakQET8mbxrlqpaF068BBQkAJs,1046
|
|
492
|
+
agentpool_server/opencode_server/models/message.py,sha256=pQihBi57x1oIhMIQMmjCMm8qTVU79JIGnZmCdcgTJ2g,4025
|
|
493
|
+
agentpool_server/opencode_server/models/parts.py,sha256=_aaro5Nr76CfHj7gvt6tMu5xmr9OVu29C9eb_Ijr0ho,7315
|
|
494
|
+
agentpool_server/opencode_server/models/provider.py,sha256=jNqx4KkRNxkcjUX21jk90lXP1SiO3JEm1HAXM3XbDcU,1844
|
|
495
|
+
agentpool_server/opencode_server/models/pty.py,sha256=m1U21_ULe9E0-qjk8enjwrrwgMNvazKUocHmyvqxwx0,867
|
|
496
|
+
agentpool_server/opencode_server/models/question.py,sha256=GDCT67HDxiLum69VAv9X0EUagcsWRxUfzsPDd5hni-M,1305
|
|
497
|
+
agentpool_server/opencode_server/models/session.py,sha256=x360sEYAp-MDEvhS7gj9y0A24sOm15QbxfsXWUXnLSU,2909
|
|
498
|
+
agentpool_server/opencode_server/routes/__init__.py,sha256=pqyOHicDtIOS_03IeQytDdYNt2XC6-prhOOyqnLrfpA,1370
|
|
499
|
+
agentpool_server/opencode_server/routes/agent_routes.py,sha256=NqmiduBxncPAIF70Qm8MGFJz9j24zI56h6zkLGimFgo,15361
|
|
500
|
+
agentpool_server/opencode_server/routes/app_routes.py,sha256=26TBJ_UYOW_UeMCt4Pf84uw1hNUMG106O-0jW-ot8vY,5844
|
|
501
|
+
agentpool_server/opencode_server/routes/config_routes.py,sha256=gekSS2T7e0WtuaUlAS0QQjjlOQChln4OMmM94MQKjoQ,9899
|
|
502
|
+
agentpool_server/opencode_server/routes/file_routes.py,sha256=VEaPnoUQAjpon6UPxkt7-aSl90Lxp0e4hdfFAVJmer8,19987
|
|
503
|
+
agentpool_server/opencode_server/routes/global_routes.py,sha256=XWdYwvJOWJD2SjS2AE8sY2cGkBMkT98kY14WIvyOlUA,3061
|
|
504
|
+
agentpool_server/opencode_server/routes/lsp_routes.py,sha256=BhFacTK25UpQwweolzYmJ1Igkg2gXJ4BDreT2U_Sezk,10137
|
|
505
|
+
agentpool_server/opencode_server/routes/message_routes.py,sha256=GswCrR9A8CAwfOdtk2je0eKeu8nWUm76XWYtHMHgjeo,32636
|
|
506
|
+
agentpool_server/opencode_server/routes/permission_routes.py,sha256=BDYmhYVIe9CygJt-c-fvXNTvhT5aZpYK4sY2RXbVbsI,2510
|
|
507
|
+
agentpool_server/opencode_server/routes/pty_routes.py,sha256=-CGI9dbSQ33gP1zO5thJhvIbk68pLmxDjXquTl4fCBo,10192
|
|
508
|
+
agentpool_server/opencode_server/routes/question_routes.py,sha256=i-J34PQfKxTfCURRDnbep1hpKaBeYAabpHfbbluBsYQ,3611
|
|
509
|
+
agentpool_server/opencode_server/routes/session_routes.py,sha256=n2Bf6Ix1EuQQFtsTBmT1fjCk7hy-jt8Y3D4bm5KOQF4,49254
|
|
510
|
+
agentpool_server/opencode_server/routes/tui_routes.py,sha256=Ualp95He-jFWKwZ_seOhffC2uNiBxlUasJN3aGPJktw,4155
|
|
511
|
+
agentpool_server/opencode_server/server.py,sha256=UyMh--Ba2RJQZf6F3wHYshcYSzazKy8NvdOenD55OGA,15962
|
|
512
|
+
agentpool_server/opencode_server/state.py,sha256=Qcjfx0JoTsNrZUshxBNU3vBTttrw9nGdut9JZ9owhrw,5158
|
|
513
|
+
agentpool_server/opencode_server/time_utils.py,sha256=R1HU8altQgjFHKqQS-hrKNyYpmYji8-1wbYfH7oKnPY,196
|
|
514
|
+
agentpool_server/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
515
|
+
agentpool_storage/__init__.py,sha256=0VLgUBxA1_tXlEuUW-oBUKdLybbUNGBV95rMlc7iQ_M,491
|
|
516
|
+
agentpool_storage/base.py,sha256=o-T6RnHL7HovftbrwRwbr9iCX0x0ZP8yj4SBBRCtaK0,15257
|
|
517
|
+
agentpool_storage/claude_provider/ARCHITECTURE.md,sha256=8ufpNyK4honIwL6V7rsJ6krZubwBZD_XV2MCgGIZIA0,12428
|
|
518
|
+
agentpool_storage/claude_provider/__init__.py,sha256=x3Y1BaU6DGwoHDXpvdDid7irCMOyG1QNeHouZ0qPGMw,1012
|
|
519
|
+
agentpool_storage/claude_provider/provider.py,sha256=6lcu2DK3Ni1I6WmDDpAM4TFzYbNP2GYgrEnXSCtAvf0,37056
|
|
520
|
+
agentpool_storage/file_provider.py,sha256=ijdwMYU15o3k2R6jD_R7Unr5XXwpt6woz9JUV6u4UVM,21769
|
|
521
|
+
agentpool_storage/formatters.py,sha256=vpPganIW7fgy9rUilRiV5FXASYnW9E2tTrSw4nVUptw,4142
|
|
522
|
+
agentpool_storage/memory_provider.py,sha256=mXWE-CPqGcUNREHwnwLknWGnfGYRwylhA25lLIbMW3w,20474
|
|
523
|
+
agentpool_storage/models.py,sha256=rb_gEqxaYc5C9Ax56cBIxw8YWRoj6CjxR-Jgjj59aLE,2572
|
|
524
|
+
agentpool_storage/opencode_provider/ARCHITECTURE.md,sha256=YLIbaHo9EOI1N6SmxyGKduuQ1VcISvyp03laGp5I6oo,11401
|
|
525
|
+
agentpool_storage/opencode_provider/__init__.py,sha256=1fXKuXFAJZA_7Z9ZdBmCuIZOIVRszFxHQRNVUl-xPtU,391
|
|
526
|
+
agentpool_storage/opencode_provider/helpers.py,sha256=yjfV7yuoYZ6pNCVO2t8QWAIktg0QSijt8krRH2q2Qsc,14316
|
|
527
|
+
agentpool_storage/opencode_provider/provider.py,sha256=lMshizjM1DXQcpp2-xApv3Zs-41jfZiNhBxWS21fM88,33921
|
|
528
|
+
agentpool_storage/project_store.py,sha256=-GaLTedrtnEomfd6yp3ViBVoEMnn0JN4kPkKSHbxjPg,9803
|
|
529
|
+
agentpool_storage/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
530
|
+
agentpool_storage/session_store.py,sha256=E5mktILQiUrt0ARWxemibDidxH05CDCPTZjIBhZszQc,9107
|
|
531
|
+
agentpool_storage/sql_provider/__init__.py,sha256=hb0Q9muzqYGAEmUVQVClrUarrt6PoJgfyoIz7hDi7aI,453
|
|
532
|
+
agentpool_storage/sql_provider/cli.py,sha256=vvaMa5ns_VXRhGdWLfy84RcEXUxIOZJPgwtpUEQWGUs,4004
|
|
533
|
+
agentpool_storage/sql_provider/models.py,sha256=JPZJKz4H4PHHAjBZsaEmpJJdcHA-71iYGj91K8-c3tM,9356
|
|
534
|
+
agentpool_storage/sql_provider/queries.py,sha256=rQbZMEXClPLi339f8Src3sYvQtvLqiGhVNodQ0rio5Q,391
|
|
535
|
+
agentpool_storage/sql_provider/sql_provider.py,sha256=A6HGDzAkgbSF8zMbGb8Tq5HsG10Ztv2eTjD1RAUNAp8,26184
|
|
536
|
+
agentpool_storage/sql_provider/utils.py,sha256=SomnuXc3RZ1Ru4fjUFQi2F4dYRmaYasLCoqIHRb_2yM,8168
|
|
537
|
+
agentpool_storage/zed_provider/__init__.py,sha256=PvStERCwmClCSUzzA__0YeYsl5X5J6WlnVqaEEXwpQk,458
|
|
538
|
+
agentpool_storage/zed_provider/helpers.py,sha256=3HTzcPAL4mh8iUa0hBz0JoMF5URWkTZpDsYmk0S4zRw,9714
|
|
539
|
+
agentpool_storage/zed_provider/models.py,sha256=NV9ZcJDbhtsqir8d8dvAFjluc2RH67IodDXDpHKOBAg,3486
|
|
540
|
+
agentpool_storage/zed_provider/provider.py,sha256=0EgfKcWby48bpS5ZPsT2ZxhWRO0Cn-hlyH4s5ELCCeE,16307
|
|
541
|
+
agentpool_storage/zed_provider.py,sha256=0jHdt-Tbw58r7OWGbwxzSmNq6Uo62gPN1Q8MLP0vf5U,28295
|
|
542
|
+
agentpool_toolsets/__init__.py,sha256=PcDI4JKhNLc99fo0U031CC5NPiAEPz9DoXZD5V_0fVE,369
|
|
543
|
+
agentpool_toolsets/builtin/__init__.py,sha256=lGiLMKIxMxTIrKnf4kcSkUwnItw33E_F7HmXYql6FpA,656
|
|
544
|
+
agentpool_toolsets/builtin/code.py,sha256=hjPdZG03lO64qVxqlVoSw3hphWs_QqY4Qt0DCoDV4sI,15775
|
|
545
|
+
agentpool_toolsets/builtin/debug.py,sha256=FcwTAQjAlRP5-uJXGaUgDVCtJp4FoOjl-95ob4nr62A,11570
|
|
546
|
+
agentpool_toolsets/builtin/execution_environment.py,sha256=XY8x1TwOCK8vqRiKKV-mw11eA34ais_ocDwHglwvdHg,10511
|
|
547
|
+
agentpool_toolsets/builtin/file_edit/__init__.py,sha256=MDI3hf8bDVMm5JfyrVveemtLTa7Bomue4V_rF6bS1lg,201
|
|
548
|
+
agentpool_toolsets/builtin/file_edit/file_edit.py,sha256=Ogz6LlZf4GIpG7iwotu2bWaqvzrN_H8Xq93uwPDRpmU,28502
|
|
549
|
+
agentpool_toolsets/builtin/file_edit/fuzzy_matcher/__init__.py,sha256=FTQTajleB9XtaBsj6NDDZY1ZuVTLCsGlZxTau_u9cVo,144
|
|
550
|
+
agentpool_toolsets/builtin/file_edit/fuzzy_matcher/example_usage.py,sha256=8sqRETZazUMQ8N5D5ISSq9kd_yMngSiMQlli4cqeyC8,8776
|
|
551
|
+
agentpool_toolsets/builtin/file_edit/fuzzy_matcher/streaming_fuzzy_matcher.py,sha256=hECDvmTtQDvy41crX_gMuKg_xv_K48Qe-nIzdAqISaI,14956
|
|
552
|
+
agentpool_toolsets/builtin/skills.py,sha256=Caq-16VDhDopSlHBbUcnGbrJmnMbZ9ZVn3iapoj-enc,2847
|
|
553
|
+
agentpool_toolsets/builtin/subagent_tools.py,sha256=z76aJi95MhvxENQC1dNnZVf1us_0xJhXysj7WgSDfkg,12080
|
|
554
|
+
agentpool_toolsets/builtin/workers.py,sha256=RD1hMWoI2ctUOxfsT4TjBkF62AztwwEyiROKvcggNk4,4681
|
|
555
|
+
agentpool_toolsets/composio_toolset.py,sha256=EYZrUrslyOmGUf39V9-CBmbWmy8YfD8wlclW0_lLupE,3115
|
|
556
|
+
agentpool_toolsets/config_creation.py,sha256=0P-sZ9-cAN49qJWPQkL6S-lVwRprvzbTqm28m5HjBjg,6698
|
|
557
|
+
agentpool_toolsets/entry_points.py,sha256=saYnA2A0p7MisnEK-qXIKm3tA_zFNT_Fg9ZcIeq7QDo,1404
|
|
558
|
+
agentpool_toolsets/fsspec_toolset/__init__.py,sha256=vypf59YevF02dSsxJ1tKR8_R3KwurVsk_tw5MTpYWrc,478
|
|
559
|
+
agentpool_toolsets/fsspec_toolset/diagnostics.py,sha256=UFgi4_KIq1Eh32Tw-WwcQ5Bw0DX-nguzY6r7P_4z884,29106
|
|
560
|
+
agentpool_toolsets/fsspec_toolset/grep.py,sha256=ucgWLdtUl6B-Es11ZhcQs9h6zQpuSyNRRKIo6IDH_OQ,16832
|
|
561
|
+
agentpool_toolsets/fsspec_toolset/helpers.py,sha256=7Mgo8Qb5dGoIttVsFgOt5dGbZ-kBl9gyLMdWBSm0zco,20715
|
|
562
|
+
agentpool_toolsets/fsspec_toolset/image_utils.py,sha256=nmP0G3eAH4lrtTG0VTg_TyRFGzoy_XHJ3qei5ih7Zvo,5780
|
|
563
|
+
agentpool_toolsets/fsspec_toolset/streaming_diff_parser.py,sha256=i7EzDDqIgRvvx-fCE46FFh6Chxds-s86pOXNgrZXFu0,8744
|
|
564
|
+
agentpool_toolsets/fsspec_toolset/toolset.py,sha256=4SgOSrxAtdR8GWZOEioLB1wJYvFpNwM-iefbEU90xOA,75291
|
|
565
|
+
agentpool_toolsets/mcp_discovery/__init__.py,sha256=sjtLjLkxis0PVZNFMTTQmjmiY-R0lAT68dLizmb4YgY,190
|
|
566
|
+
agentpool_toolsets/mcp_discovery/data/mcp_servers.parquet,sha256=qvcSDIWKKkAiOXR2Wj0eVdOU5dHre8fcmYAVXcjizBY,3525879
|
|
567
|
+
agentpool_toolsets/mcp_discovery/toolset.py,sha256=EZrOQ6gmkw3IbAEUVj1xlQTAjdms3ZT8JWB7CHe7d90,19559
|
|
568
|
+
agentpool_toolsets/mcp_run_toolset.py,sha256=7zFnRmV1EwXUEbvkpMx8PYH-EtFmgXm3onYsv3gH3qI,5037
|
|
569
|
+
agentpool_toolsets/notifications.py,sha256=DRPhzH_dfOkr2zych8Wu7bMplJ9-eoa2Xpbuxky34aI,5076
|
|
570
|
+
agentpool_toolsets/openapi.py,sha256=MRTtOfPe32n7rH64-9-y1c6v6dpNGbLFlWss_2iH-Jo,4126
|
|
571
|
+
agentpool_toolsets/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
572
|
+
agentpool_toolsets/search_toolset.py,sha256=j7vMLRfnt92nfy2zQrPNCGgqWhUqnk829faBuI2HDNI,6072
|
|
573
|
+
agentpool_toolsets/streaming_tools.py,sha256=z7_-E_AtNDCNC9htp7pSQES_19E3tRxQcAIwPETAJn0,8566
|
|
574
|
+
agentpool_toolsets/vfs_toolset.py,sha256=I5TdePKALERXIFPFvug87zGIoNNNVo_V8Va3g8H7CQs,3905
|
|
575
|
+
agentpool-2.5.0.dist-info/licenses/LICENSE,sha256=AteGCH9r177TxxrOFEiOARrastASsf7yW6MQxlAHdwA,1078
|
|
576
|
+
agentpool-2.5.0.dist-info/WHEEL,sha256=XjEbIc5-wIORjWaafhI6vBtlxDBp7S9KiujWF1EM7Ak,79
|
|
577
|
+
agentpool-2.5.0.dist-info/entry_points.txt,sha256=AKoyr6iy8lEBbqlkxRMfXuFGtmigwOeK7JDQ08mc8kk,331
|
|
578
|
+
agentpool-2.5.0.dist-info/METADATA,sha256=CNxhoLdPl8ZGdzRS3Sack9s5wtibsAm3nojSCYJP-3w,12011
|
|
579
|
+
agentpool-2.5.0.dist-info/RECORD,,
|