meshagent-cli 0.22.2__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.
Potentially problematic release.
This version of meshagent-cli might be problematic. Click here for more details.
- meshagent/cli/__init__.py +3 -0
- meshagent/cli/agent.py +273 -0
- meshagent/cli/api_keys.py +102 -0
- meshagent/cli/async_typer.py +79 -0
- meshagent/cli/auth.py +30 -0
- meshagent/cli/auth_async.py +295 -0
- meshagent/cli/call.py +215 -0
- meshagent/cli/chatbot.py +1983 -0
- meshagent/cli/cli.py +187 -0
- meshagent/cli/cli_mcp.py +408 -0
- meshagent/cli/cli_secrets.py +414 -0
- meshagent/cli/common_options.py +47 -0
- meshagent/cli/containers.py +725 -0
- meshagent/cli/database.py +997 -0
- meshagent/cli/developer.py +70 -0
- meshagent/cli/exec.py +397 -0
- meshagent/cli/helper.py +236 -0
- meshagent/cli/helpers.py +185 -0
- meshagent/cli/host.py +41 -0
- meshagent/cli/mailbot.py +1295 -0
- meshagent/cli/mailboxes.py +223 -0
- meshagent/cli/meeting_transcriber.py +138 -0
- meshagent/cli/messaging.py +157 -0
- meshagent/cli/multi.py +357 -0
- meshagent/cli/oauth2.py +341 -0
- meshagent/cli/participant_token.py +63 -0
- meshagent/cli/port.py +70 -0
- meshagent/cli/projects.py +105 -0
- meshagent/cli/queue.py +91 -0
- meshagent/cli/room.py +26 -0
- meshagent/cli/rooms.py +214 -0
- meshagent/cli/services.py +722 -0
- meshagent/cli/sessions.py +26 -0
- meshagent/cli/storage.py +813 -0
- meshagent/cli/sync.py +434 -0
- meshagent/cli/task_runner.py +1317 -0
- meshagent/cli/version.py +1 -0
- meshagent/cli/voicebot.py +624 -0
- meshagent/cli/webhook.py +100 -0
- meshagent/cli/worker.py +1403 -0
- meshagent_cli-0.22.2.dist-info/METADATA +49 -0
- meshagent_cli-0.22.2.dist-info/RECORD +45 -0
- meshagent_cli-0.22.2.dist-info/WHEEL +5 -0
- meshagent_cli-0.22.2.dist-info/entry_points.txt +2 -0
- meshagent_cli-0.22.2.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: meshagent-cli
|
|
3
|
+
Version: 0.22.2
|
|
4
|
+
Summary: CLI for Meshagent
|
|
5
|
+
License-Expression: Apache-2.0
|
|
6
|
+
Project-URL: Documentation, https://docs.meshagent.com
|
|
7
|
+
Project-URL: Website, https://www.meshagent.com
|
|
8
|
+
Project-URL: Source, https://www.meshagent.com
|
|
9
|
+
Requires-Python: >=3.13
|
|
10
|
+
Description-Content-Type: text/markdown
|
|
11
|
+
Requires-Dist: typer~=0.15
|
|
12
|
+
Requires-Dist: fastmcp~=2.8
|
|
13
|
+
Requires-Dist: opentelemetry-distro~=0.54b1
|
|
14
|
+
Requires-Dist: opentelemetry-exporter-otlp-proto-http~=1.33
|
|
15
|
+
Requires-Dist: art~=6.5
|
|
16
|
+
Requires-Dist: pydantic-yaml~=1.5
|
|
17
|
+
Requires-Dist: pathspec~=0.12.1
|
|
18
|
+
Provides-Extra: all
|
|
19
|
+
Requires-Dist: meshagent-agents[all]~=0.22.2; extra == "all"
|
|
20
|
+
Requires-Dist: meshagent-api[all]~=0.22.2; extra == "all"
|
|
21
|
+
Requires-Dist: meshagent-computers~=0.22.2; extra == "all"
|
|
22
|
+
Requires-Dist: meshagent-openai~=0.22.2; extra == "all"
|
|
23
|
+
Requires-Dist: meshagent-anthropic~=0.22.2; extra == "all"
|
|
24
|
+
Requires-Dist: meshagent-mcp~=0.22.2; extra == "all"
|
|
25
|
+
Requires-Dist: meshagent-tools~=0.22.2; extra == "all"
|
|
26
|
+
Requires-Dist: supabase-auth~=2.22.3; extra == "all"
|
|
27
|
+
Requires-Dist: prompt-toolkit~=3.0.52; extra == "all"
|
|
28
|
+
Provides-Extra: mcp-service
|
|
29
|
+
Requires-Dist: meshagent-agents[all]~=0.22.2; extra == "mcp-service"
|
|
30
|
+
Requires-Dist: meshagent-api~=0.22.2; extra == "mcp-service"
|
|
31
|
+
Requires-Dist: meshagent-mcp~=0.22.2; extra == "mcp-service"
|
|
32
|
+
Requires-Dist: meshagent-tools~=0.22.2; extra == "mcp-service"
|
|
33
|
+
Requires-Dist: supabase-auth~=2.22.3; extra == "mcp-service"
|
|
34
|
+
|
|
35
|
+
# [Meshagent](https://www.meshagent.com)
|
|
36
|
+
|
|
37
|
+
## MeshAgent CLI
|
|
38
|
+
|
|
39
|
+
The ``meshagent.cli`` package installs everything you need to streamline room and agent management from your terminal. The CLI assembles submodules for authentication, projects, API keys, participant tokens, messaging, storage, agents, webhooks, and more.
|
|
40
|
+
Check out the [CLI Quickstart](https://docs.meshagent.com/cli/getting_started) for more details.
|
|
41
|
+
|
|
42
|
+
---
|
|
43
|
+
### Learn more about MeshAgent on our website or check out the docs for additional examples!
|
|
44
|
+
|
|
45
|
+
**Website**: [www.meshagent.com](https://www.meshagent.com/)
|
|
46
|
+
|
|
47
|
+
**Documentation**: [docs.meshagent.com](https://docs.meshagent.com/)
|
|
48
|
+
|
|
49
|
+
---
|
|
@@ -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=J0X8DF8SRJgbiN7AmpwD-y_NYsk8G2MxyncVTJuF2Dc,22735
|
|
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=Bh5Z0gPzleot68P4r2qTs7W0HNi5DFO8t_uKNyCoA94,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.22.2.dist-info/METADATA,sha256=AVGpO-MsMs__gp-m_VB3K9JFRc9lZ7y81TTAxPQ8Opk,2100
|
|
42
|
+
meshagent_cli-0.22.2.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
43
|
+
meshagent_cli-0.22.2.dist-info/entry_points.txt,sha256=WRcGGN4vMtvC5Pgl3uRFqsJiQXNoHuLLa-TCSY3gAhQ,52
|
|
44
|
+
meshagent_cli-0.22.2.dist-info/top_level.txt,sha256=GlcXnHtRP6m7zlG3Df04M35OsHtNXy_DY09oFwWrH74,10
|
|
45
|
+
meshagent_cli-0.22.2.dist-info/RECORD,,
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
meshagent
|