flowmesh-cli 0.1.0__tar.gz
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.
- flowmesh_cli-0.1.0/LICENSE +202 -0
- flowmesh_cli-0.1.0/PKG-INFO +36 -0
- flowmesh_cli-0.1.0/README.md +19 -0
- flowmesh_cli-0.1.0/pyproject.toml +31 -0
- flowmesh_cli-0.1.0/setup.cfg +4 -0
- flowmesh_cli-0.1.0/src/flowmesh_cli/__init__.py +1 -0
- flowmesh_cli-0.1.0/src/flowmesh_cli/cli.py +46 -0
- flowmesh_cli-0.1.0/src/flowmesh_cli/commands/__init__.py +26 -0
- flowmesh_cli-0.1.0/src/flowmesh_cli/commands/base.py +139 -0
- flowmesh_cli-0.1.0/src/flowmesh_cli/commands/node.py +142 -0
- flowmesh_cli-0.1.0/src/flowmesh_cli/commands/result.py +57 -0
- flowmesh_cli-0.1.0/src/flowmesh_cli/commands/ssh.py +422 -0
- flowmesh_cli-0.1.0/src/flowmesh_cli/commands/system.py +22 -0
- flowmesh_cli-0.1.0/src/flowmesh_cli/commands/task.py +251 -0
- flowmesh_cli-0.1.0/src/flowmesh_cli/commands/trace.py +382 -0
- flowmesh_cli-0.1.0/src/flowmesh_cli/commands/worker.py +75 -0
- flowmesh_cli-0.1.0/src/flowmesh_cli/commands/workflow.py +243 -0
- flowmesh_cli-0.1.0/src/flowmesh_cli/core/__init__.py +1 -0
- flowmesh_cli-0.1.0/src/flowmesh_cli/core/assets.py +34 -0
- flowmesh_cli-0.1.0/src/flowmesh_cli/core/logging.py +43 -0
- flowmesh_cli-0.1.0/src/flowmesh_cli/core/paths.py +32 -0
- flowmesh_cli-0.1.0/src/flowmesh_cli/core/query.py +36 -0
- flowmesh_cli-0.1.0/src/flowmesh_cli/core/task.py +30 -0
- flowmesh_cli-0.1.0/src/flowmesh_cli/core/typer.py +12 -0
- flowmesh_cli-0.1.0/src/flowmesh_cli.egg-info/PKG-INFO +36 -0
- flowmesh_cli-0.1.0/src/flowmesh_cli.egg-info/SOURCES.txt +28 -0
- flowmesh_cli-0.1.0/src/flowmesh_cli.egg-info/dependency_links.txt +1 -0
- flowmesh_cli-0.1.0/src/flowmesh_cli.egg-info/entry_points.txt +2 -0
- flowmesh_cli-0.1.0/src/flowmesh_cli.egg-info/requires.txt +8 -0
- flowmesh_cli-0.1.0/src/flowmesh_cli.egg-info/top_level.txt +1 -0
|
@@ -0,0 +1,202 @@
|
|
|
1
|
+
|
|
2
|
+
Apache License
|
|
3
|
+
Version 2.0, January 2004
|
|
4
|
+
http://www.apache.org/licenses/
|
|
5
|
+
|
|
6
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
7
|
+
|
|
8
|
+
1. Definitions.
|
|
9
|
+
|
|
10
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
11
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
12
|
+
|
|
13
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
14
|
+
the copyright owner that is granting the License.
|
|
15
|
+
|
|
16
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
17
|
+
other entities that control, are controlled by, or are under common
|
|
18
|
+
control with that entity. For the purposes of this definition,
|
|
19
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
20
|
+
direction or management of such entity, whether by contract or
|
|
21
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
22
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
23
|
+
|
|
24
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
25
|
+
exercising permissions granted by this License.
|
|
26
|
+
|
|
27
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
28
|
+
including but not limited to software source code, documentation
|
|
29
|
+
source, and configuration files.
|
|
30
|
+
|
|
31
|
+
"Object" form shall mean any form resulting from mechanical
|
|
32
|
+
transformation or translation of a Source form, including but
|
|
33
|
+
not limited to compiled object code, generated documentation,
|
|
34
|
+
and conversions to other media types.
|
|
35
|
+
|
|
36
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
37
|
+
Object form, made available under the License, as indicated by a
|
|
38
|
+
copyright notice that is included in or attached to the work
|
|
39
|
+
(an example is provided in the Appendix below).
|
|
40
|
+
|
|
41
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
42
|
+
form, that is based on (or derived from) the Work and for which the
|
|
43
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
44
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
45
|
+
of this License, Derivative Works shall not include works that remain
|
|
46
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
47
|
+
the Work and Derivative Works thereof.
|
|
48
|
+
|
|
49
|
+
"Contribution" shall mean any work of authorship, including
|
|
50
|
+
the original version of the Work and any modifications or additions
|
|
51
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
52
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
53
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
54
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
55
|
+
means any form of electronic, verbal, or written communication sent
|
|
56
|
+
to the Licensor or its representatives, including but not limited to
|
|
57
|
+
communication on electronic mailing lists, source code control systems,
|
|
58
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
59
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
60
|
+
excluding communication that is conspicuously marked or otherwise
|
|
61
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
62
|
+
|
|
63
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
64
|
+
on behalf of whom a Contribution has been received by Licensor and
|
|
65
|
+
subsequently incorporated within the Work.
|
|
66
|
+
|
|
67
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
68
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
69
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
70
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
71
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
72
|
+
Work and such Derivative Works in Source or Object form.
|
|
73
|
+
|
|
74
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
75
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
76
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
77
|
+
(except as stated in this section) patent license to make, have made,
|
|
78
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
79
|
+
where such license applies only to those patent claims licensable
|
|
80
|
+
by such Contributor that are necessarily infringed by their
|
|
81
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
82
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
83
|
+
institute patent litigation against any entity (including a
|
|
84
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
85
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
86
|
+
or contributory patent infringement, then any patent licenses
|
|
87
|
+
granted to You under this License for that Work shall terminate
|
|
88
|
+
as of the date such litigation is filed.
|
|
89
|
+
|
|
90
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
91
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
92
|
+
modifications, and in Source or Object form, provided that You
|
|
93
|
+
meet the following conditions:
|
|
94
|
+
|
|
95
|
+
(a) You must give any other recipients of the Work or
|
|
96
|
+
Derivative Works a copy of this License; and
|
|
97
|
+
|
|
98
|
+
(b) You must cause any modified files to carry prominent notices
|
|
99
|
+
stating that You changed the files; and
|
|
100
|
+
|
|
101
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
102
|
+
that You distribute, all copyright, patent, trademark, and
|
|
103
|
+
attribution notices from the Source form of the Work,
|
|
104
|
+
excluding those notices that do not pertain to any part of
|
|
105
|
+
the Derivative Works; and
|
|
106
|
+
|
|
107
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
108
|
+
distribution, then any Derivative Works that You distribute must
|
|
109
|
+
include a readable copy of the attribution notices contained
|
|
110
|
+
within such NOTICE file, excluding those notices that do not
|
|
111
|
+
pertain to any part of the Derivative Works, in at least one
|
|
112
|
+
of the following places: within a NOTICE text file distributed
|
|
113
|
+
as part of the Derivative Works; within the Source form or
|
|
114
|
+
documentation, if provided along with the Derivative Works; or,
|
|
115
|
+
within a display generated by the Derivative Works, if and
|
|
116
|
+
wherever such third-party notices normally appear. The contents
|
|
117
|
+
of the NOTICE file are for informational purposes only and
|
|
118
|
+
do not modify the License. You may add Your own attribution
|
|
119
|
+
notices within Derivative Works that You distribute, alongside
|
|
120
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
121
|
+
that such additional attribution notices cannot be construed
|
|
122
|
+
as modifying the License.
|
|
123
|
+
|
|
124
|
+
You may add Your own copyright statement to Your modifications and
|
|
125
|
+
may provide additional or different license terms and conditions
|
|
126
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
127
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
128
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
129
|
+
the conditions stated in this License.
|
|
130
|
+
|
|
131
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
132
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
133
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
134
|
+
this License, without any additional terms or conditions.
|
|
135
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
136
|
+
the terms of any separate license agreement you may have executed
|
|
137
|
+
with Licensor regarding such Contributions.
|
|
138
|
+
|
|
139
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
140
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
141
|
+
except as required for reasonable and customary use in describing the
|
|
142
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
143
|
+
|
|
144
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
145
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
146
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
147
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
148
|
+
implied, including, without limitation, any warranties or conditions
|
|
149
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
150
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
151
|
+
appropriateness of using or redistributing the Work and assume any
|
|
152
|
+
risks associated with Your exercise of permissions under this License.
|
|
153
|
+
|
|
154
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
155
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
156
|
+
unless required by applicable law (such as deliberate and grossly
|
|
157
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
158
|
+
liable to You for damages, including any direct, indirect, special,
|
|
159
|
+
incidental, or consequential damages of any character arising as a
|
|
160
|
+
result of this License or out of the use or inability to use the
|
|
161
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
162
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
163
|
+
other commercial damages or losses), even if such Contributor
|
|
164
|
+
has been advised of the possibility of such damages.
|
|
165
|
+
|
|
166
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
167
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
168
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
169
|
+
or other liability obligations and/or rights consistent with this
|
|
170
|
+
License. However, in accepting such obligations, You may act only
|
|
171
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
172
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
173
|
+
defend, and hold each Contributor harmless for any liability
|
|
174
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
175
|
+
of your accepting any such warranty or additional liability.
|
|
176
|
+
|
|
177
|
+
END OF TERMS AND CONDITIONS
|
|
178
|
+
|
|
179
|
+
APPENDIX: How to apply the Apache License to your work.
|
|
180
|
+
|
|
181
|
+
To apply the Apache License to your work, attach the following
|
|
182
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
|
183
|
+
replaced with your own identifying information. (Don't include
|
|
184
|
+
the brackets!) The text should be enclosed in the appropriate
|
|
185
|
+
comment syntax for the file format. We also recommend that a
|
|
186
|
+
file or class name and description of purpose be included on the
|
|
187
|
+
same "printed page" as the copyright notice for easier
|
|
188
|
+
identification within third-party archives.
|
|
189
|
+
|
|
190
|
+
Copyright 2026 The FlowMesh Authors
|
|
191
|
+
|
|
192
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
193
|
+
you may not use this file except in compliance with the License.
|
|
194
|
+
You may obtain a copy of the License at
|
|
195
|
+
|
|
196
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
197
|
+
|
|
198
|
+
Unless required by applicable law or agreed to in writing, software
|
|
199
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
200
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
201
|
+
See the License for the specific language governing permissions and
|
|
202
|
+
limitations under the License.
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: flowmesh-cli
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: FlowMesh command line interface
|
|
5
|
+
License-Expression: Apache-2.0
|
|
6
|
+
Requires-Python: >=3.12
|
|
7
|
+
Description-Content-Type: text/markdown
|
|
8
|
+
License-File: LICENSE
|
|
9
|
+
Requires-Dist: typer>=0.12.5
|
|
10
|
+
Requires-Dist: pyyaml>=6.0.2
|
|
11
|
+
Requires-Dist: rich>=14.2.0
|
|
12
|
+
Requires-Dist: websockets>=15.0
|
|
13
|
+
Requires-Dist: flowmesh-sdk==0.1.0
|
|
14
|
+
Provides-Extra: stack
|
|
15
|
+
Requires-Dist: flowmesh-cli-stack==0.1.0; extra == "stack"
|
|
16
|
+
Dynamic: license-file
|
|
17
|
+
|
|
18
|
+
# FlowMesh CLI
|
|
19
|
+
|
|
20
|
+
Standalone FlowMesh CLI package (`flowmesh-cli`).
|
|
21
|
+
|
|
22
|
+
## Packages
|
|
23
|
+
|
|
24
|
+
- `flowmesh-cli` (base): core commands — workflow, task, worker, node, ssh,
|
|
25
|
+
result, system, plus basic `info` / `health` helpers.
|
|
26
|
+
- `flowmesh-cli-stack` (`cli/stack/`): stack deployment commands — build, up,
|
|
27
|
+
down, worker management, bundle, env helpers, doctor.
|
|
28
|
+
|
|
29
|
+
Install with the `stack` extra to get both:
|
|
30
|
+
|
|
31
|
+
```bash
|
|
32
|
+
pip install "flowmesh[cli]"
|
|
33
|
+
```
|
|
34
|
+
|
|
35
|
+
The CLI entrypoint is `flowmesh`. Stack assets (compose, bake, env example) are
|
|
36
|
+
bundled under `flowmesh_cli_stack/assets/`.
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
# FlowMesh CLI
|
|
2
|
+
|
|
3
|
+
Standalone FlowMesh CLI package (`flowmesh-cli`).
|
|
4
|
+
|
|
5
|
+
## Packages
|
|
6
|
+
|
|
7
|
+
- `flowmesh-cli` (base): core commands — workflow, task, worker, node, ssh,
|
|
8
|
+
result, system, plus basic `info` / `health` helpers.
|
|
9
|
+
- `flowmesh-cli-stack` (`cli/stack/`): stack deployment commands — build, up,
|
|
10
|
+
down, worker management, bundle, env helpers, doctor.
|
|
11
|
+
|
|
12
|
+
Install with the `stack` extra to get both:
|
|
13
|
+
|
|
14
|
+
```bash
|
|
15
|
+
pip install "flowmesh[cli]"
|
|
16
|
+
```
|
|
17
|
+
|
|
18
|
+
The CLI entrypoint is `flowmesh`. Stack assets (compose, bake, env example) are
|
|
19
|
+
bundled under `flowmesh_cli_stack/assets/`.
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=77", "wheel"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "flowmesh-cli"
|
|
7
|
+
version = "0.1.0"
|
|
8
|
+
description = "FlowMesh command line interface"
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.12"
|
|
11
|
+
license = "Apache-2.0"
|
|
12
|
+
license-files = ["LICENSE"]
|
|
13
|
+
dependencies = [
|
|
14
|
+
"typer>=0.12.5",
|
|
15
|
+
"pyyaml>=6.0.2",
|
|
16
|
+
"rich>=14.2.0",
|
|
17
|
+
"websockets>=15.0",
|
|
18
|
+
"flowmesh-sdk==0.1.0",
|
|
19
|
+
]
|
|
20
|
+
|
|
21
|
+
[project.optional-dependencies]
|
|
22
|
+
stack = ["flowmesh-cli-stack==0.1.0"]
|
|
23
|
+
|
|
24
|
+
[project.scripts]
|
|
25
|
+
flowmesh = "flowmesh_cli.cli:main"
|
|
26
|
+
|
|
27
|
+
[tool.setuptools]
|
|
28
|
+
package-dir = {"" = "src"}
|
|
29
|
+
|
|
30
|
+
[tool.setuptools.packages.find]
|
|
31
|
+
where = ["src"]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"""FlowMesh CLI package."""
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
"""FlowMesh CLI entrypoint."""
|
|
2
|
+
|
|
3
|
+
from importlib import import_module
|
|
4
|
+
from importlib.util import find_spec
|
|
5
|
+
|
|
6
|
+
import typer
|
|
7
|
+
|
|
8
|
+
from .core.typer import get_typer
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
def _register_optional(
|
|
12
|
+
module_name: str, app: typer.Typer, register_func: str = "register"
|
|
13
|
+
) -> bool:
|
|
14
|
+
"""Import and register a command module if it is installed.
|
|
15
|
+
|
|
16
|
+
Extras gate availability by deciding which modules are packaged. If a module
|
|
17
|
+
is missing, we silently skip it; unexpected import errors still bubble up.
|
|
18
|
+
"""
|
|
19
|
+
package = __package__ if module_name.startswith(".") else None
|
|
20
|
+
spec = find_spec(module_name, package=package)
|
|
21
|
+
if spec is None:
|
|
22
|
+
return False
|
|
23
|
+
module = import_module(module_name, package=package)
|
|
24
|
+
register = getattr(module, register_func, None)
|
|
25
|
+
if register is None:
|
|
26
|
+
return False
|
|
27
|
+
register(app)
|
|
28
|
+
return True
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
def build_cli_app() -> typer.Typer:
|
|
32
|
+
"""Construct the CLI app by attaching available command groups."""
|
|
33
|
+
app = get_typer(help="FlowMesh command line interface.")
|
|
34
|
+
|
|
35
|
+
_register_optional(".commands", app)
|
|
36
|
+
_register_optional("flowmesh_cli_stack", app)
|
|
37
|
+
|
|
38
|
+
return app
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
def main() -> None:
|
|
42
|
+
build_cli_app()()
|
|
43
|
+
|
|
44
|
+
|
|
45
|
+
if __name__ == "__main__":
|
|
46
|
+
main()
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
"""Command modules for the FlowMesh CLI."""
|
|
2
|
+
|
|
3
|
+
import typer
|
|
4
|
+
|
|
5
|
+
from .base import app as base_app
|
|
6
|
+
from .node import app as node_app
|
|
7
|
+
from .result import app as results_app
|
|
8
|
+
from .ssh import app as ssh_app
|
|
9
|
+
from .system import app as system_app
|
|
10
|
+
from .task import app as task_app
|
|
11
|
+
from .trace import app as trace_app
|
|
12
|
+
from .worker import app as worker_app
|
|
13
|
+
from .workflow import app as workflow_app
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
def register(app: typer.Typer) -> None:
|
|
17
|
+
"""Register command groups on the root app."""
|
|
18
|
+
app.add_typer(base_app)
|
|
19
|
+
app.add_typer(task_app, name="task")
|
|
20
|
+
app.add_typer(results_app, name="result")
|
|
21
|
+
app.add_typer(workflow_app, name="workflow")
|
|
22
|
+
app.add_typer(system_app, name="system")
|
|
23
|
+
app.add_typer(node_app, name="node")
|
|
24
|
+
app.add_typer(worker_app, name="worker")
|
|
25
|
+
app.add_typer(ssh_app, name="ssh")
|
|
26
|
+
app.add_typer(trace_app, name="trace")
|
|
@@ -0,0 +1,139 @@
|
|
|
1
|
+
import json
|
|
2
|
+
from pathlib import Path
|
|
3
|
+
|
|
4
|
+
import typer
|
|
5
|
+
from flowmesh.client import FlowMesh, resolve_config
|
|
6
|
+
from flowmesh.config import DEFAULT_CONFIG_PATH, FlowMeshConfig
|
|
7
|
+
from flowmesh.exceptions import FlowMeshError
|
|
8
|
+
|
|
9
|
+
from ..core import logging
|
|
10
|
+
from ..core.typer import get_typer
|
|
11
|
+
|
|
12
|
+
app = get_typer()
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
def _redact_api_key(
|
|
16
|
+
api_key: str | None, prefix: int | None = None, suffix: int | None = None
|
|
17
|
+
) -> str | None:
|
|
18
|
+
if api_key is None:
|
|
19
|
+
return None
|
|
20
|
+
|
|
21
|
+
length = len(api_key)
|
|
22
|
+
if prefix is None and suffix is None:
|
|
23
|
+
prefix = suffix = 4
|
|
24
|
+
if length <= prefix + suffix:
|
|
25
|
+
return "*" * length # If the key is too short, redact the entire key
|
|
26
|
+
elif prefix is None or suffix is None:
|
|
27
|
+
raise ValueError("Both prefix and suffix must be provided together")
|
|
28
|
+
elif length <= prefix + suffix:
|
|
29
|
+
raise ValueError(
|
|
30
|
+
"API key is too short to redact with the given prefix/suffix lengths"
|
|
31
|
+
)
|
|
32
|
+
|
|
33
|
+
masked_middle = "*" * (length - prefix - suffix)
|
|
34
|
+
return f"{api_key[:prefix]}{masked_middle}{api_key[-suffix:]}"
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
@app.command()
|
|
38
|
+
def init(
|
|
39
|
+
url: str = typer.Argument(
|
|
40
|
+
"http://localhost:8000",
|
|
41
|
+
help="FlowMesh server API URL (e.g., http://localhost:8000)",
|
|
42
|
+
),
|
|
43
|
+
api_key: str | None = typer.Option(
|
|
44
|
+
None, "--api-key", help="Optional API key for authentication"
|
|
45
|
+
),
|
|
46
|
+
config_path: Path = typer.Option(
|
|
47
|
+
DEFAULT_CONFIG_PATH, "--config", help="Path to save configuration file"
|
|
48
|
+
),
|
|
49
|
+
force: bool = typer.Option(
|
|
50
|
+
False,
|
|
51
|
+
"--force",
|
|
52
|
+
"-f",
|
|
53
|
+
help="Overwrite existing config file without confirmation",
|
|
54
|
+
show_default=False,
|
|
55
|
+
),
|
|
56
|
+
) -> None:
|
|
57
|
+
"""Initialize configuration for FlowMesh CLI."""
|
|
58
|
+
if config_path.exists():
|
|
59
|
+
if force:
|
|
60
|
+
logging.warning(f"Overwriting existing config at {config_path}")
|
|
61
|
+
else:
|
|
62
|
+
if not typer.confirm(
|
|
63
|
+
f"Config file {config_path} already exists. "
|
|
64
|
+
"Do you want to overwrite it?"
|
|
65
|
+
):
|
|
66
|
+
raise typer.Exit()
|
|
67
|
+
config = FlowMeshConfig(url, api_key)
|
|
68
|
+
config.save(config_path)
|
|
69
|
+
logging.success(f"Config saved to {config_path}")
|
|
70
|
+
|
|
71
|
+
|
|
72
|
+
@app.command()
|
|
73
|
+
def deinit(config_path: Path = typer.Option(DEFAULT_CONFIG_PATH, "--config")) -> None:
|
|
74
|
+
"""Delete saved configuration file."""
|
|
75
|
+
if config_path.exists():
|
|
76
|
+
config_path.unlink()
|
|
77
|
+
logging.success(f"Deleted config file {config_path}")
|
|
78
|
+
else:
|
|
79
|
+
logging.warning(f"No config file found at {config_path}")
|
|
80
|
+
|
|
81
|
+
|
|
82
|
+
@app.command()
|
|
83
|
+
def config(
|
|
84
|
+
config_path: Path = typer.Option(DEFAULT_CONFIG_PATH, "--config"),
|
|
85
|
+
source: str = typer.Option(
|
|
86
|
+
"auto", "--source", help="Configuration source: auto, file, or env"
|
|
87
|
+
),
|
|
88
|
+
show_api_key: bool = typer.Option(
|
|
89
|
+
False, "--show-api-key", help="Show API key in plain text"
|
|
90
|
+
),
|
|
91
|
+
) -> None:
|
|
92
|
+
"""Display current configuration."""
|
|
93
|
+
source = source.strip().lower()
|
|
94
|
+
|
|
95
|
+
match source:
|
|
96
|
+
case "file":
|
|
97
|
+
try:
|
|
98
|
+
cfg = FlowMeshConfig.from_file(config_path)
|
|
99
|
+
except Exception as exc:
|
|
100
|
+
logging.error(f"Error loading config from file: {exc}")
|
|
101
|
+
raise typer.Exit(code=1)
|
|
102
|
+
case "env":
|
|
103
|
+
try:
|
|
104
|
+
cfg = FlowMeshConfig.from_env()
|
|
105
|
+
except Exception as exc:
|
|
106
|
+
logging.error(f"Error loading config from environment: {exc}")
|
|
107
|
+
raise typer.Exit(code=1)
|
|
108
|
+
case "auto":
|
|
109
|
+
try:
|
|
110
|
+
cfg = resolve_config(
|
|
111
|
+
base_url=None, api_key=None, config_path=config_path
|
|
112
|
+
)
|
|
113
|
+
except Exception as exc:
|
|
114
|
+
logging.error(f"Error resolving config: {exc}")
|
|
115
|
+
raise typer.Exit(code=1)
|
|
116
|
+
case _:
|
|
117
|
+
logging.error("Invalid --source value. Expected one of: auto, file, env")
|
|
118
|
+
raise typer.Exit(code=2)
|
|
119
|
+
|
|
120
|
+
cfg.api_key = cfg.api_key if show_api_key else _redact_api_key(cfg.api_key)
|
|
121
|
+
logging.log(json.dumps(cfg.to_mapping(), indent=2))
|
|
122
|
+
|
|
123
|
+
|
|
124
|
+
@app.command()
|
|
125
|
+
def info() -> None:
|
|
126
|
+
"""Query server health status and basic system information."""
|
|
127
|
+
client = FlowMesh()
|
|
128
|
+
try:
|
|
129
|
+
resp = client.system.health()
|
|
130
|
+
except FlowMeshError as exc:
|
|
131
|
+
logging.error(str(exc))
|
|
132
|
+
raise typer.Exit(code=1)
|
|
133
|
+
logging.log(resp.model_dump_json(indent=2))
|
|
134
|
+
|
|
135
|
+
|
|
136
|
+
@app.command()
|
|
137
|
+
def health() -> None:
|
|
138
|
+
"""Check if the FlowMesh server is reachable and healthy."""
|
|
139
|
+
info()
|
|
@@ -0,0 +1,142 @@
|
|
|
1
|
+
import json
|
|
2
|
+
|
|
3
|
+
import typer
|
|
4
|
+
from flowmesh import FlowMesh
|
|
5
|
+
from flowmesh.exceptions import FlowMeshError
|
|
6
|
+
from flowmesh.params import append_param, extend_params
|
|
7
|
+
|
|
8
|
+
from ..core import logging
|
|
9
|
+
from ..core.query import parse_query_filters
|
|
10
|
+
from ..core.typer import get_typer
|
|
11
|
+
|
|
12
|
+
app = get_typer(help="Manage nodes registered with FlowMesh.")
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
@app.command()
|
|
16
|
+
def info(node_id: str = typer.Argument(..., help="Node identifier")) -> None:
|
|
17
|
+
"""Retrieve information for a specific node."""
|
|
18
|
+
client = FlowMesh()
|
|
19
|
+
try:
|
|
20
|
+
node = client.nodes.retrieve(node_id)
|
|
21
|
+
except FlowMeshError as exc:
|
|
22
|
+
logging.error(str(exc))
|
|
23
|
+
raise typer.Exit(code=1)
|
|
24
|
+
logging.log(node.model_dump_json(indent=2))
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
@app.command("list")
|
|
28
|
+
def list_nodes(
|
|
29
|
+
node_id: str | None = typer.Option(None, "--id", help="Filter by node id"),
|
|
30
|
+
namespace: str | None = typer.Option(
|
|
31
|
+
None, "--namespace", help="Filter by node namespace"
|
|
32
|
+
),
|
|
33
|
+
cluster: str | None = typer.Option(
|
|
34
|
+
None, "--cluster", help="Filter by node cluster"
|
|
35
|
+
),
|
|
36
|
+
alias: str | None = typer.Option(None, "--alias", help="Filter by node alias"),
|
|
37
|
+
tag: list[str] | None = typer.Option(
|
|
38
|
+
None, "--tag", help="Filter by tag (repeatable)"
|
|
39
|
+
),
|
|
40
|
+
query: list[str] | None = typer.Option(
|
|
41
|
+
None, "--query", "-q", help="Filter nodes by key=value pairs"
|
|
42
|
+
),
|
|
43
|
+
) -> None:
|
|
44
|
+
"""List all nodes registered with FlowMesh."""
|
|
45
|
+
client = FlowMesh()
|
|
46
|
+
query_params = parse_query_filters(query)
|
|
47
|
+
try:
|
|
48
|
+
nodes = client.nodes.list(
|
|
49
|
+
node_id=node_id,
|
|
50
|
+
namespace=namespace,
|
|
51
|
+
cluster=cluster,
|
|
52
|
+
alias=alias,
|
|
53
|
+
tags=tag or None,
|
|
54
|
+
query_params=query_params,
|
|
55
|
+
)
|
|
56
|
+
except FlowMeshError as exc:
|
|
57
|
+
logging.error(str(exc))
|
|
58
|
+
raise typer.Exit(code=1)
|
|
59
|
+
logging.log(json.dumps([s.model_dump(mode="json") for s in nodes], indent=2))
|
|
60
|
+
|
|
61
|
+
|
|
62
|
+
worker_app = get_typer(help="Manage workers on nodes.")
|
|
63
|
+
app.add_typer(worker_app, name="worker")
|
|
64
|
+
|
|
65
|
+
|
|
66
|
+
@worker_app.command("list")
|
|
67
|
+
def list_workers(
|
|
68
|
+
node_id: str | None = typer.Argument(None, help="Node identifier"),
|
|
69
|
+
worker_id: str | None = typer.Option(None, "--id", help="Filter by worker id"),
|
|
70
|
+
name: str | None = typer.Option(None, "--name", help="Filter by worker name"),
|
|
71
|
+
namespace: str | None = typer.Option(
|
|
72
|
+
None, "--namespace", help="Filter by worker namespace"
|
|
73
|
+
),
|
|
74
|
+
cluster: str | None = typer.Option(
|
|
75
|
+
None, "--cluster", help="Filter by worker cluster"
|
|
76
|
+
),
|
|
77
|
+
provider: str | None = typer.Option(
|
|
78
|
+
None, "--provider", help="Filter by worker provider"
|
|
79
|
+
),
|
|
80
|
+
status: list[str] | None = typer.Option(
|
|
81
|
+
None, "--status", "-s", help="Filter by status (repeatable)"
|
|
82
|
+
),
|
|
83
|
+
node_id_filter: str | None = typer.Option(
|
|
84
|
+
None, "--node-id", help="Filter by associated node id"
|
|
85
|
+
),
|
|
86
|
+
node_alias: str | None = typer.Option(
|
|
87
|
+
None, "--node-alias", help="Filter by associated node alias"
|
|
88
|
+
),
|
|
89
|
+
query: list[str] | None = typer.Option(
|
|
90
|
+
None, "--query", "-q", help="Filter workers by key=value pairs"
|
|
91
|
+
),
|
|
92
|
+
) -> None:
|
|
93
|
+
"""List workers on a specific node or all nodes."""
|
|
94
|
+
client = FlowMesh()
|
|
95
|
+
query_params = parse_query_filters(query)
|
|
96
|
+
append_param(query_params, "id", worker_id)
|
|
97
|
+
append_param(query_params, "name", name)
|
|
98
|
+
append_param(query_params, "namespace", namespace)
|
|
99
|
+
append_param(query_params, "cluster", cluster)
|
|
100
|
+
append_param(query_params, "provider", provider)
|
|
101
|
+
extend_params(query_params, "status", status)
|
|
102
|
+
append_param(query_params, "node_id", node_id_filter)
|
|
103
|
+
append_param(query_params, "node_alias", node_alias)
|
|
104
|
+
try:
|
|
105
|
+
if node_id is None:
|
|
106
|
+
workers = client.nodes.list_all_workers(query_params=query_params)
|
|
107
|
+
else:
|
|
108
|
+
workers = client.nodes.list_workers(node_id, query_params=query_params)
|
|
109
|
+
except FlowMeshError as exc:
|
|
110
|
+
logging.error(str(exc))
|
|
111
|
+
raise typer.Exit(code=1)
|
|
112
|
+
logging.log(json.dumps([w.model_dump(mode="json") for w in workers], indent=2))
|
|
113
|
+
|
|
114
|
+
|
|
115
|
+
@worker_app.command("start")
|
|
116
|
+
def start_worker(
|
|
117
|
+
node_id: str = typer.Argument(..., help="Node identifier"),
|
|
118
|
+
worker_name: str = typer.Argument(..., help="Worker name"),
|
|
119
|
+
) -> None:
|
|
120
|
+
"""Start a worker on a specific node."""
|
|
121
|
+
client = FlowMesh()
|
|
122
|
+
try:
|
|
123
|
+
client.nodes.start_worker(node_id, worker_name)
|
|
124
|
+
except FlowMeshError as exc:
|
|
125
|
+
logging.error(str(exc))
|
|
126
|
+
raise typer.Exit(code=1)
|
|
127
|
+
logging.success(f"Worker '{worker_name}' started on node '{node_id}'")
|
|
128
|
+
|
|
129
|
+
|
|
130
|
+
@worker_app.command("stop")
|
|
131
|
+
def stop_worker(
|
|
132
|
+
node_id: str = typer.Argument(..., help="Node identifier"),
|
|
133
|
+
worker_name: str = typer.Argument(..., help="Worker name"),
|
|
134
|
+
) -> None:
|
|
135
|
+
"""Stop a worker on a specific node."""
|
|
136
|
+
client = FlowMesh()
|
|
137
|
+
try:
|
|
138
|
+
client.nodes.stop_worker(node_id, worker_name)
|
|
139
|
+
except FlowMeshError as exc:
|
|
140
|
+
logging.error(str(exc))
|
|
141
|
+
raise typer.Exit(code=1)
|
|
142
|
+
logging.success(f"Worker '{worker_name}' stopped on node '{node_id}'")
|