meshagent-cli 0.7.0__py3-none-any.whl → 0.21.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 +15 -11
- meshagent/cli/api_keys.py +4 -4
- meshagent/cli/async_typer.py +52 -4
- meshagent/cli/call.py +12 -8
- meshagent/cli/chatbot.py +1007 -129
- meshagent/cli/cli.py +21 -20
- 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 +62 -11
- meshagent/cli/helpers.py +66 -9
- meshagent/cli/host.py +37 -0
- meshagent/cli/mailbot.py +1004 -40
- meshagent/cli/mailboxes.py +223 -0
- meshagent/cli/meeting_transcriber.py +10 -4
- meshagent/cli/messaging.py +7 -7
- meshagent/cli/multi.py +402 -0
- meshagent/cli/oauth2.py +44 -21
- meshagent/cli/participant_token.py +5 -3
- meshagent/cli/port.py +70 -0
- meshagent/cli/queue.py +2 -2
- meshagent/cli/room.py +20 -212
- meshagent/cli/rooms.py +214 -0
- meshagent/cli/services.py +32 -23
- meshagent/cli/sessions.py +5 -5
- meshagent/cli/storage.py +5 -5
- meshagent/cli/task_runner.py +770 -0
- meshagent/cli/version.py +1 -1
- meshagent/cli/voicebot.py +502 -76
- meshagent/cli/webhook.py +7 -7
- meshagent/cli/worker.py +1327 -0
- {meshagent_cli-0.7.0.dist-info → meshagent_cli-0.21.0.dist-info}/METADATA +13 -13
- meshagent_cli-0.21.0.dist-info/RECORD +44 -0
- meshagent_cli-0.7.0.dist-info/RECORD +0 -36
- {meshagent_cli-0.7.0.dist-info → meshagent_cli-0.21.0.dist-info}/WHEEL +0 -0
- {meshagent_cli-0.7.0.dist-info → meshagent_cli-0.21.0.dist-info}/entry_points.txt +0 -0
- {meshagent_cli-0.7.0.dist-info → meshagent_cli-0.21.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.21.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,19 @@ 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-mcp~=0.
|
|
24
|
-
Requires-Dist: meshagent-tools~=0.
|
|
25
|
-
Requires-Dist: supabase-auth~=2.
|
|
19
|
+
Requires-Dist: meshagent-agents[all]~=0.21.0; extra == "all"
|
|
20
|
+
Requires-Dist: meshagent-api[all]~=0.21.0; extra == "all"
|
|
21
|
+
Requires-Dist: meshagent-computers~=0.21.0; extra == "all"
|
|
22
|
+
Requires-Dist: meshagent-openai~=0.21.0; extra == "all"
|
|
23
|
+
Requires-Dist: meshagent-mcp~=0.21.0; extra == "all"
|
|
24
|
+
Requires-Dist: meshagent-tools~=0.21.0; extra == "all"
|
|
25
|
+
Requires-Dist: supabase-auth~=2.22.3; extra == "all"
|
|
26
26
|
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.
|
|
27
|
+
Requires-Dist: meshagent-agents[all]~=0.21.0; extra == "mcp-service"
|
|
28
|
+
Requires-Dist: meshagent-api~=0.21.0; extra == "mcp-service"
|
|
29
|
+
Requires-Dist: meshagent-mcp~=0.21.0; extra == "mcp-service"
|
|
30
|
+
Requires-Dist: meshagent-tools~=0.21.0; extra == "mcp-service"
|
|
31
|
+
Requires-Dist: supabase-auth~=2.22.3; extra == "mcp-service"
|
|
32
32
|
|
|
33
33
|
# [Meshagent](https://www.meshagent.com)
|
|
34
34
|
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
meshagent/cli/__init__.py,sha256=X78Z4yEg5XfkNKH0HiIdG4k1q5ktB-ampTuXHLNFrAw,58
|
|
2
|
+
meshagent/cli/agent.py,sha256=iVgCJaMV_1xFyekruBtQuGtGRMcjVO_Jwu3sExQoaWk,9322
|
|
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=ZXvCRixFIfBcwoW6sN9TYjlhyFW4jM6gNqRstzVzSWU,7709
|
|
8
|
+
meshagent/cli/chatbot.py,sha256=yA1IVLML80mGEO-KxO4B0hJPE8k26y43u0WXQlbNxS0,49970
|
|
9
|
+
meshagent/cli/cli.py,sha256=8as_Ft8nTDp3INTQmFzzXcpOWUxp2HUdiYyNsp2J_zs,5501
|
|
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=AAIbd2JB7891JmwW_hOpSL5XbLE4SC9aGPrlxD_JfXA,5621
|
|
18
|
+
meshagent/cli/helpers.py,sha256=oaQwKAFbnip-nx3o_VlhmgJU6yNl-CymbnHvhDbBK6I,7044
|
|
19
|
+
meshagent/cli/host.py,sha256=BTBIdnPeajc-EktJzKZ-yMycrtooOWA7d9F_jg6sMPU,771
|
|
20
|
+
meshagent/cli/mailbot.py,sha256=YiqPyRytBfPKBLjG5YSRs7mht_ZXApR6-uuIIaZK_vI,41396
|
|
21
|
+
meshagent/cli/mailboxes.py,sha256=V2QhRAZDR53fIKHEPwwu8jGlcNg-qZiO3d1K45YWV_Y,6411
|
|
22
|
+
meshagent/cli/meeting_transcriber.py,sha256=qbnzlUymxGPSV_pC49z1nCM3rPnmw_TnPMQsCh9wl5s,3977
|
|
23
|
+
meshagent/cli/messaging.py,sha256=vBI72nJU0O2NjqlrimaMwcAMFnIgTZ5hCXitfyRXzCc,5438
|
|
24
|
+
meshagent/cli/multi.py,sha256=HXLDWjdeExU-8LDHP1KY8hNnsS36SDJahNTpZMbE5xQ,12419
|
|
25
|
+
meshagent/cli/oauth2.py,sha256=C8j2fu0FWz5FXpmoEbRqqKqvTa43znW5FXw2lDS6Npw,6968
|
|
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=tAXzgGtvHGANXKiDEauw5b90Cu1cV8X4iJEhxSgwyrk,1046
|
|
31
|
+
meshagent/cli/rooms.py,sha256=KT90102OlywgFKMzOAPZtMw0aIw2eZILp_enJIpfKLc,6487
|
|
32
|
+
meshagent/cli/services.py,sha256=ttxl7ciq6JkyNVkX5lrsnvSoDAAg6_siugCTETnX554,15427
|
|
33
|
+
meshagent/cli/sessions.py,sha256=iWQKqwCMOT5u6sOwWsVPQrci-0bqytp3mCujL9Nv5PA,971
|
|
34
|
+
meshagent/cli/storage.py,sha256=Rwuh1HcUePuyxsbDQ3RnYKec2vdmvIqNH0AD0zlq36U,32506
|
|
35
|
+
meshagent/cli/task_runner.py,sha256=2ElZs6G7mcj0A3pHBfgLf0VdCbw0RQWK10CBY4jZM4M,26731
|
|
36
|
+
meshagent/cli/version.py,sha256=-reNiXr25nUU7em7_IKJzimCI10W4nA8ouxAiOr4FaQ,23
|
|
37
|
+
meshagent/cli/voicebot.py,sha256=HE6eYdmNYD-YPTf1Shzr6fNxgv1ey-DPS-W2eVNG6MU,19564
|
|
38
|
+
meshagent/cli/webhook.py,sha256=ZxwayUS6XlrFM61YUWkh5QyFKPp4CBVw_E2-3H6VrNQ,3052
|
|
39
|
+
meshagent/cli/worker.py,sha256=HEO079xaVWdEPGKVVPh7rjYq3XikJbnoqFiRSlCbIy0,45108
|
|
40
|
+
meshagent_cli-0.21.0.dist-info/METADATA,sha256=aYU8uehM-9U8Qp7TGG1evbH28b9hlBDRD59rAOPF-AY,1987
|
|
41
|
+
meshagent_cli-0.21.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
42
|
+
meshagent_cli-0.21.0.dist-info/entry_points.txt,sha256=WRcGGN4vMtvC5Pgl3uRFqsJiQXNoHuLLa-TCSY3gAhQ,52
|
|
43
|
+
meshagent_cli-0.21.0.dist-info/top_level.txt,sha256=GlcXnHtRP6m7zlG3Df04M35OsHtNXy_DY09oFwWrH74,10
|
|
44
|
+
meshagent_cli-0.21.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
|
|
File without changes
|