meshagent-cli 0.7.0__py3-none-any.whl → 0.23.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.
- meshagent/cli/agent.py +23 -13
- meshagent/cli/api_keys.py +4 -4
- meshagent/cli/async_typer.py +52 -4
- meshagent/cli/call.py +27 -36
- meshagent/cli/chatbot.py +1559 -177
- meshagent/cli/cli.py +23 -22
- meshagent/cli/cli_mcp.py +92 -28
- meshagent/cli/cli_secrets.py +10 -10
- meshagent/cli/common_options.py +19 -4
- meshagent/cli/containers.py +164 -16
- meshagent/cli/database.py +997 -0
- meshagent/cli/developer.py +3 -3
- meshagent/cli/exec.py +22 -6
- meshagent/cli/helper.py +101 -12
- meshagent/cli/helpers.py +65 -11
- meshagent/cli/host.py +41 -0
- meshagent/cli/mailbot.py +1104 -79
- meshagent/cli/mailboxes.py +223 -0
- meshagent/cli/meeting_transcriber.py +29 -15
- meshagent/cli/messaging.py +7 -10
- meshagent/cli/multi.py +357 -0
- meshagent/cli/oauth2.py +192 -40
- meshagent/cli/participant_token.py +5 -3
- meshagent/cli/port.py +70 -0
- meshagent/cli/queue.py +2 -2
- meshagent/cli/room.py +24 -212
- meshagent/cli/rooms.py +214 -0
- meshagent/cli/services.py +269 -37
- meshagent/cli/sessions.py +5 -5
- meshagent/cli/storage.py +5 -5
- meshagent/cli/sync.py +434 -0
- meshagent/cli/task_runner.py +1317 -0
- meshagent/cli/version.py +1 -1
- meshagent/cli/voicebot.py +544 -98
- meshagent/cli/webhook.py +7 -7
- meshagent/cli/worker.py +1403 -0
- {meshagent_cli-0.7.0.dist-info → meshagent_cli-0.23.0.dist-info}/METADATA +15 -13
- meshagent_cli-0.23.0.dist-info/RECORD +45 -0
- {meshagent_cli-0.7.0.dist-info → meshagent_cli-0.23.0.dist-info}/WHEEL +1 -1
- meshagent_cli-0.7.0.dist-info/RECORD +0 -36
- {meshagent_cli-0.7.0.dist-info → meshagent_cli-0.23.0.dist-info}/entry_points.txt +0 -0
- {meshagent_cli-0.7.0.dist-info → meshagent_cli-0.23.0.dist-info}/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: meshagent-cli
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.23.0
|
|
4
4
|
Summary: CLI for Meshagent
|
|
5
5
|
License-Expression: Apache-2.0
|
|
6
6
|
Project-URL: Documentation, https://docs.meshagent.com
|
|
@@ -16,19 +16,21 @@ Requires-Dist: art~=6.5
|
|
|
16
16
|
Requires-Dist: pydantic-yaml~=1.5
|
|
17
17
|
Requires-Dist: pathspec~=0.12.1
|
|
18
18
|
Provides-Extra: all
|
|
19
|
-
Requires-Dist: meshagent-agents[all]~=0.
|
|
20
|
-
Requires-Dist: meshagent-api[all]~=0.
|
|
21
|
-
Requires-Dist: meshagent-computers~=0.
|
|
22
|
-
Requires-Dist: meshagent-openai~=0.
|
|
23
|
-
Requires-Dist: meshagent-
|
|
24
|
-
Requires-Dist: meshagent-
|
|
25
|
-
Requires-Dist:
|
|
19
|
+
Requires-Dist: meshagent-agents[all]~=0.23.0; extra == "all"
|
|
20
|
+
Requires-Dist: meshagent-api[all]~=0.23.0; extra == "all"
|
|
21
|
+
Requires-Dist: meshagent-computers~=0.23.0; extra == "all"
|
|
22
|
+
Requires-Dist: meshagent-openai~=0.23.0; extra == "all"
|
|
23
|
+
Requires-Dist: meshagent-anthropic~=0.23.0; extra == "all"
|
|
24
|
+
Requires-Dist: meshagent-mcp~=0.23.0; extra == "all"
|
|
25
|
+
Requires-Dist: meshagent-tools~=0.23.0; extra == "all"
|
|
26
|
+
Requires-Dist: supabase-auth~=2.22.3; extra == "all"
|
|
27
|
+
Requires-Dist: prompt-toolkit~=3.0.52; extra == "all"
|
|
26
28
|
Provides-Extra: mcp-service
|
|
27
|
-
Requires-Dist: meshagent-agents[all]~=0.
|
|
28
|
-
Requires-Dist: meshagent-api~=0.
|
|
29
|
-
Requires-Dist: meshagent-mcp~=0.
|
|
30
|
-
Requires-Dist: meshagent-tools~=0.
|
|
31
|
-
Requires-Dist: supabase-auth~=2.
|
|
29
|
+
Requires-Dist: meshagent-agents[all]~=0.23.0; extra == "mcp-service"
|
|
30
|
+
Requires-Dist: meshagent-api~=0.23.0; extra == "mcp-service"
|
|
31
|
+
Requires-Dist: meshagent-mcp~=0.23.0; extra == "mcp-service"
|
|
32
|
+
Requires-Dist: meshagent-tools~=0.23.0; extra == "mcp-service"
|
|
33
|
+
Requires-Dist: supabase-auth~=2.22.3; extra == "mcp-service"
|
|
32
34
|
|
|
33
35
|
# [Meshagent](https://www.meshagent.com)
|
|
34
36
|
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
meshagent/cli/__init__.py,sha256=X78Z4yEg5XfkNKH0HiIdG4k1q5ktB-ampTuXHLNFrAw,58
|
|
2
|
+
meshagent/cli/agent.py,sha256=z0KHcTTn04XshbwXO79g0NBT1PG8TospofBtw-Ggsv4,9478
|
|
3
|
+
meshagent/cli/api_keys.py,sha256=5H5bWRqunCZ66EpQjxf4raW3KJXvAzqQZubaZ3O289A,3164
|
|
4
|
+
meshagent/cli/async_typer.py,sha256=r5oi1m_CuloQ6gAJNZ3RvBuKdGNR3uzrYMAEh602JDI,2290
|
|
5
|
+
meshagent/cli/auth.py,sha256=wpGTomrFH0uvbwv262sTqK0DgB4ltAuurEmI9tYedIs,815
|
|
6
|
+
meshagent/cli/auth_async.py,sha256=Ce0h_V3tNlZBvplQuhy2uRP9PJvhi6k_vUGh3GMNL-E,9277
|
|
7
|
+
meshagent/cli/call.py,sha256=vn6sDWfSIwNohbvzbxDlXUckvTI31f_XOdsIQh1yH8I,7094
|
|
8
|
+
meshagent/cli/chatbot.py,sha256=ARiMZ9qlaJqAcR-_GLSbXhWRdVCBrkv8W0SX3BkFJKg,66513
|
|
9
|
+
meshagent/cli/cli.py,sha256=0r2IZr1Z_I8u_NxU6KKOx1PO2i2eReb1dLU9BrxGhbc,5500
|
|
10
|
+
meshagent/cli/cli_mcp.py,sha256=yQYTUoF78Wp393Cdb9Xl4RO41bANNGSfgm4WvDBLFS0,13235
|
|
11
|
+
meshagent/cli/cli_secrets.py,sha256=xRbt-vvfSce5khCkJQrq33lgiJrgZ6CWatUwTAOBxf4,13643
|
|
12
|
+
meshagent/cli/common_options.py,sha256=eJaSYDJnwlr34VsFS9UgnGV0VUIpQow8U7niMnkQ3sw,1054
|
|
13
|
+
meshagent/cli/containers.py,sha256=KTILHaL08hzrNe97HUY2x_l5gwqKEXyfqwUn62_OCGQ,21973
|
|
14
|
+
meshagent/cli/database.py,sha256=OZOm56Q2d9PJUqwg3XXFAV-a8o3J-tbi35UreCOI6KM,33226
|
|
15
|
+
meshagent/cli/developer.py,sha256=cF9LYnD43-_BCirPp9r_C7Sp7AWLUVNfEnxK8Gpuqs8,2323
|
|
16
|
+
meshagent/cli/exec.py,sha256=j_GYVvScC-RXUwVF3PLqjjdB6YINi4lFvXLqBFcLdZ0,16161
|
|
17
|
+
meshagent/cli/helper.py,sha256=qpvRAoW6x5r0QuTq11SJNYkgYSwq3rxpUxyNu4HGtYk,6829
|
|
18
|
+
meshagent/cli/helpers.py,sha256=RfsWUa1Z_k9DHjHloOyNnR5vHuu9jjHV7CpqONDxfwU,6912
|
|
19
|
+
meshagent/cli/host.py,sha256=8MXCuK-59HFwwUSMJoSo7L3AbaB0CL4xJkckUjHnIAI,845
|
|
20
|
+
meshagent/cli/mailbot.py,sha256=wlYcrAj757cPn7YqwUAtOoHBgMhaG35xuXfQ6QN5u4w,43397
|
|
21
|
+
meshagent/cli/mailboxes.py,sha256=V2QhRAZDR53fIKHEPwwu8jGlcNg-qZiO3d1K45YWV_Y,6411
|
|
22
|
+
meshagent/cli/meeting_transcriber.py,sha256=5tQzkw-IfLYcqybKOpeXc0ZxqA7uC6krhKLVHTPch8Y,4290
|
|
23
|
+
meshagent/cli/messaging.py,sha256=6gaKunkqM4DNr4lsIYHovfpV-taEvm6mRB1aeSIsy44,5296
|
|
24
|
+
meshagent/cli/multi.py,sha256=yDRkwhIVQG_SmWP8aXLkUa--Uz6syqmudVLVvsPytP8,11021
|
|
25
|
+
meshagent/cli/oauth2.py,sha256=Kvp2vcVKzT9Ueu51EGswWbPRIjO206J4W__hkCLWcYY,10479
|
|
26
|
+
meshagent/cli/participant_token.py,sha256=jzZdtN6v3RB3QVEGdYZG7ZP2egxb3vlLwtC0KkUVMqE,1938
|
|
27
|
+
meshagent/cli/port.py,sha256=uF_4pY8TSHSVYr00rMW97s-OIehNVUwNGv8fgMT8uLc,1646
|
|
28
|
+
meshagent/cli/projects.py,sha256=-s5xIfd2pCW8HsuqRsNoKZr5hsF6xYxfEjyYI6Nm4YI,3511
|
|
29
|
+
meshagent/cli/queue.py,sha256=KEc5w7uJnkjsTWEuEDctj51R-IY7BdFQrl5WeHQSgPk,2923
|
|
30
|
+
meshagent/cli/room.py,sha256=_xLn0jAXzflfavcjxcrH1swMc9GUbMGEatEzcu7ESVc,1107
|
|
31
|
+
meshagent/cli/rooms.py,sha256=KT90102OlywgFKMzOAPZtMw0aIw2eZILp_enJIpfKLc,6487
|
|
32
|
+
meshagent/cli/services.py,sha256=b4DhrKEo8RKvxm3q6b9G7G9OY1RkZnFzBgb76ped3TQ,22661
|
|
33
|
+
meshagent/cli/sessions.py,sha256=iWQKqwCMOT5u6sOwWsVPQrci-0bqytp3mCujL9Nv5PA,971
|
|
34
|
+
meshagent/cli/storage.py,sha256=Rwuh1HcUePuyxsbDQ3RnYKec2vdmvIqNH0AD0zlq36U,32506
|
|
35
|
+
meshagent/cli/sync.py,sha256=9KV-FrXAclpgcDpGLVSSXPiNJ0o2OAmaNh0KV3JokEA,15667
|
|
36
|
+
meshagent/cli/task_runner.py,sha256=T_TJUZHWmHSG4mHED06XefATXFyyfHdEh7B2GT5KRuE,46436
|
|
37
|
+
meshagent/cli/version.py,sha256=6bYcjtcATvc99ZNMjTUfPlrJP3-1WenVEc656roVn_I,23
|
|
38
|
+
meshagent/cli/voicebot.py,sha256=PwdZXolEgXoR2NEcFFQGEi5DgB9wnh4eVjvXEidPBAc,20239
|
|
39
|
+
meshagent/cli/webhook.py,sha256=ZxwayUS6XlrFM61YUWkh5QyFKPp4CBVw_E2-3H6VrNQ,3052
|
|
40
|
+
meshagent/cli/worker.py,sha256=0wBmh_qE5Sy-dYAlrosk13CsXft3i-oEYf5WENebAFM,47635
|
|
41
|
+
meshagent_cli-0.23.0.dist-info/METADATA,sha256=sRj8oav9TVSy-d2u1NhUMQXDyXnGpssPFrt8xJ1s-yQ,2100
|
|
42
|
+
meshagent_cli-0.23.0.dist-info/WHEEL,sha256=qELbo2s1Yzl39ZmrAibXA2jjPLUYfnVhUNTlyF1rq0Y,92
|
|
43
|
+
meshagent_cli-0.23.0.dist-info/entry_points.txt,sha256=WRcGGN4vMtvC5Pgl3uRFqsJiQXNoHuLLa-TCSY3gAhQ,52
|
|
44
|
+
meshagent_cli-0.23.0.dist-info/top_level.txt,sha256=GlcXnHtRP6m7zlG3Df04M35OsHtNXy_DY09oFwWrH74,10
|
|
45
|
+
meshagent_cli-0.23.0.dist-info/RECORD,,
|
|
@@ -1,36 +0,0 @@
|
|
|
1
|
-
meshagent/cli/__init__.py,sha256=X78Z4yEg5XfkNKH0HiIdG4k1q5ktB-ampTuXHLNFrAw,58
|
|
2
|
-
meshagent/cli/agent.py,sha256=CKH8XkRJ4oeu2hbG-FL8tWXtDn2tYDvTSCxSvQ0sCIY,8976
|
|
3
|
-
meshagent/cli/api_keys.py,sha256=2_-TB0a1vca4uG-RG4zc0_c9QTJ8EHt3qomy2wfKlXE,3192
|
|
4
|
-
meshagent/cli/async_typer.py,sha256=GCeSefBDbpd-V4V8LrvHGUTBMth3HspVMfFa-HUZ0cg,898
|
|
5
|
-
meshagent/cli/auth.py,sha256=wpGTomrFH0uvbwv262sTqK0DgB4ltAuurEmI9tYedIs,815
|
|
6
|
-
meshagent/cli/auth_async.py,sha256=Ce0h_V3tNlZBvplQuhy2uRP9PJvhi6k_vUGh3GMNL-E,9277
|
|
7
|
-
meshagent/cli/call.py,sha256=ydxEnX7uPZ9B2-ND1LvBt4Leb2K8whhmdogRIsCydnw,7315
|
|
8
|
-
meshagent/cli/chatbot.py,sha256=sui_h2XtBhjOUglQkyM9e2il8v5YGiN-jVFOuoQEq7w,20437
|
|
9
|
-
meshagent/cli/cli.py,sha256=XGfLfCp0vQatVY2tavrh9uZfoXJIdINXRSTd2rhN3EE,5581
|
|
10
|
-
meshagent/cli/cli_mcp.py,sha256=d3N37rZ-CMFouk9jxJRe8CIUprv_nExiata8Ni8OKsQ,11259
|
|
11
|
-
meshagent/cli/cli_secrets.py,sha256=_hxEe93YJaJczWZXbMxS-qiedMpwGLC3ez-YUnjqudM,13713
|
|
12
|
-
meshagent/cli/common_options.py,sha256=79OnCgiBLhExf-_l18R3dkLidoND5BPJD2NY7gAtl00,573
|
|
13
|
-
meshagent/cli/containers.py,sha256=s9xuxjT_jLLmML3cuxBeLi8HE2w0lI3wRgVk8COOM3w,17573
|
|
14
|
-
meshagent/cli/developer.py,sha256=2nWCX9lqtTd__i6qDJOOJtI0kB4X185s_3Ktfx5MaRQ,2251
|
|
15
|
-
meshagent/cli/exec.py,sha256=fZpRvvTJC5bUBpaUCOFFJuaZDuyIPz5r42-bxtwDWhM,15647
|
|
16
|
-
meshagent/cli/helper.py,sha256=RLUJxNJ1aDx4fij61ps_s0NGXwYVcp_Ek6n1ChHM3HM,3961
|
|
17
|
-
meshagent/cli/helpers.py,sha256=9JSZiWOnVkh0qfM3DKcvz4u83EJ34DBdukx2Ple9V94,4783
|
|
18
|
-
meshagent/cli/mailbot.py,sha256=CSkRY6fX2t6Izbz5uJN6GQhMPDGcPJxtGkX4VQwn4MI,8529
|
|
19
|
-
meshagent/cli/meeting_transcriber.py,sha256=Eo4itFxwQvMoz-IBN4hMA7PMVsU81uUsYSnmCyZK9QA,3834
|
|
20
|
-
meshagent/cli/messaging.py,sha256=guzaFxtmApLJ0p6RCqiHstk-md2NGW3FLTu-Pzwdo5Q,5278
|
|
21
|
-
meshagent/cli/oauth2.py,sha256=-ArxgO7KAjowanp8KcHlSEnVpemzm49fSov6wrKOe0o,6193
|
|
22
|
-
meshagent/cli/participant_token.py,sha256=zdNDviXfChhvbVyWukJt4CNvi7nVIl5nJChST_qCjaI,1778
|
|
23
|
-
meshagent/cli/projects.py,sha256=-s5xIfd2pCW8HsuqRsNoKZr5hsF6xYxfEjyYI6Nm4YI,3511
|
|
24
|
-
meshagent/cli/queue.py,sha256=DauqjVul7v6dLHQ_t3C-Pqmrgvjg093FHCRsD5Yf3bg,2937
|
|
25
|
-
meshagent/cli/room.py,sha256=TddjQn_cg0JSDou-x-dmbavHfUO28m48XFtbh3w3VGM,6472
|
|
26
|
-
meshagent/cli/services.py,sha256=GZA40INO9bOZMoKAw0u_qTtD2inGEJAX4aqXqUuSt3Y,14908
|
|
27
|
-
meshagent/cli/sessions.py,sha256=bUwrPkzeEWE8gTqD4E-tfr2ChBns3Fvv9MsSV4RRNTQ,881
|
|
28
|
-
meshagent/cli/storage.py,sha256=0pSrviBM53-2xFlD1ZW4rDthJ-CwUD5tQC43FcaU5sU,32541
|
|
29
|
-
meshagent/cli/version.py,sha256=RaANGbRu5e-vehwXI1-Qe2ggPPfs1TQaZj072JdbLk4,22
|
|
30
|
-
meshagent/cli/voicebot.py,sha256=t8sqygbXPbasfCf6cDDTGxZWHD3KeuBZhYDkV0k-wQI,6003
|
|
31
|
-
meshagent/cli/webhook.py,sha256=g2vqt3fKQ5HQ2miXZbekjyZ_NODsyRTYIgWEni5bDP0,2971
|
|
32
|
-
meshagent_cli-0.7.0.dist-info/METADATA,sha256=b6iXHJhspTKa5uX26-8j3YRRiNIxnVBvKUYl3Cb_8Mc,1976
|
|
33
|
-
meshagent_cli-0.7.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
34
|
-
meshagent_cli-0.7.0.dist-info/entry_points.txt,sha256=WRcGGN4vMtvC5Pgl3uRFqsJiQXNoHuLLa-TCSY3gAhQ,52
|
|
35
|
-
meshagent_cli-0.7.0.dist-info/top_level.txt,sha256=GlcXnHtRP6m7zlG3Df04M35OsHtNXy_DY09oFwWrH74,10
|
|
36
|
-
meshagent_cli-0.7.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|