flowsh-cli 0.7.1__tar.gz → 0.7.2__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.
- {flowsh_cli-0.7.1 → flowsh_cli-0.7.2}/PKG-INFO +9 -7
- {flowsh_cli-0.7.1 → flowsh_cli-0.7.2}/README.md +8 -6
- {flowsh_cli-0.7.1 → flowsh_cli-0.7.2}/pyproject.toml +1 -1
- {flowsh_cli-0.7.1 → flowsh_cli-0.7.2}/src/flowsh_cli/__init__.py +1 -1
- {flowsh_cli-0.7.1 → flowsh_cli-0.7.2}/src/flowsh_cli/cli.py +1 -1
- {flowsh_cli-0.7.1 → flowsh_cli-0.7.2}/src/flowsh_cli/__main__.py +0 -0
- {flowsh_cli-0.7.1 → flowsh_cli-0.7.2}/src/flowsh_cli/examples.py +0 -0
- {flowsh_cli-0.7.1 → flowsh_cli-0.7.2}/src/flowsh_cli/models.py +0 -0
- {flowsh_cli-0.7.1 → flowsh_cli-0.7.2}/src/flowsh_cli/render.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: flowsh-cli
|
|
3
|
-
Version: 0.7.
|
|
3
|
+
Version: 0.7.2
|
|
4
4
|
Summary: Generate Bash harness scripts from workflow YAML files.
|
|
5
5
|
License-Expression: MIT
|
|
6
6
|
Classifier: Programming Language :: Python :: 3.11
|
|
@@ -23,18 +23,20 @@ Use it when you want a small, reproducible way to encode a workflow once and rer
|
|
|
23
23
|
## Quick Start
|
|
24
24
|
|
|
25
25
|
```bash
|
|
26
|
-
uvx flowsh-cli
|
|
26
|
+
uvx flowsh-cli path/to/workflows.yml
|
|
27
27
|
```
|
|
28
28
|
|
|
29
|
-
That reads
|
|
29
|
+
That reads the workflow YAML at the path you provide and writes harnesses under `.harness/`.
|
|
30
|
+
|
|
31
|
+
In this repository, the example workflow file lives at `.made/workflows.yml`.
|
|
30
32
|
|
|
31
33
|
Useful flags:
|
|
32
34
|
|
|
33
35
|
```bash
|
|
34
|
-
uvx flowsh-cli
|
|
35
|
-
uvx flowsh-cli
|
|
36
|
-
uvx flowsh-cli
|
|
37
|
-
uvx flowsh-cli
|
|
36
|
+
uvx flowsh-cli path/to/workflows.yml --dry-run
|
|
37
|
+
uvx flowsh-cli path/to/workflows.yml --workflow wf_example
|
|
38
|
+
uvx flowsh-cli path/to/workflows.yml --force
|
|
39
|
+
uvx flowsh-cli path/to/workflows.yml --schema
|
|
38
40
|
uvx flowsh-cli --examples
|
|
39
41
|
uvx flowsh-cli --example simple
|
|
40
42
|
```
|
|
@@ -7,18 +7,20 @@ Use it when you want a small, reproducible way to encode a workflow once and rer
|
|
|
7
7
|
## Quick Start
|
|
8
8
|
|
|
9
9
|
```bash
|
|
10
|
-
uvx flowsh-cli
|
|
10
|
+
uvx flowsh-cli path/to/workflows.yml
|
|
11
11
|
```
|
|
12
12
|
|
|
13
|
-
That reads
|
|
13
|
+
That reads the workflow YAML at the path you provide and writes harnesses under `.harness/`.
|
|
14
|
+
|
|
15
|
+
In this repository, the example workflow file lives at `.made/workflows.yml`.
|
|
14
16
|
|
|
15
17
|
Useful flags:
|
|
16
18
|
|
|
17
19
|
```bash
|
|
18
|
-
uvx flowsh-cli
|
|
19
|
-
uvx flowsh-cli
|
|
20
|
-
uvx flowsh-cli
|
|
21
|
-
uvx flowsh-cli
|
|
20
|
+
uvx flowsh-cli path/to/workflows.yml --dry-run
|
|
21
|
+
uvx flowsh-cli path/to/workflows.yml --workflow wf_example
|
|
22
|
+
uvx flowsh-cli path/to/workflows.yml --force
|
|
23
|
+
uvx flowsh-cli path/to/workflows.yml --schema
|
|
22
24
|
uvx flowsh-cli --examples
|
|
23
25
|
uvx flowsh-cli --example simple
|
|
24
26
|
```
|
|
@@ -35,7 +35,7 @@ def main(argv: Sequence[str] | None = None) -> int:
|
|
|
35
35
|
|
|
36
36
|
@app.command(help="Generate reproducible OpenCode Bash harness scripts from MADE workflow YAML.")
|
|
37
37
|
def generate(
|
|
38
|
-
workflow_yaml: Annotated[Path, typer.Argument(help="Path to
|
|
38
|
+
workflow_yaml: Annotated[Path, typer.Argument(help="Path to workflow YAML")],
|
|
39
39
|
workflow: Annotated[
|
|
40
40
|
str | None,
|
|
41
41
|
typer.Option(
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|