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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: flowsh-cli
3
- Version: 0.7.1
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 .made/workflows.yml
26
+ uvx flowsh-cli path/to/workflows.yml
27
27
  ```
28
28
 
29
- That reads `.made/workflows.yml` and writes harnesses under `.harness/`.
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 .made/workflows.yml --dry-run
35
- uvx flowsh-cli .made/workflows.yml --workflow wf_example
36
- uvx flowsh-cli .made/workflows.yml --force
37
- uvx flowsh-cli .made/workflows.yml --schema
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 .made/workflows.yml
10
+ uvx flowsh-cli path/to/workflows.yml
11
11
  ```
12
12
 
13
- That reads `.made/workflows.yml` and writes harnesses under `.harness/`.
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 .made/workflows.yml --dry-run
19
- uvx flowsh-cli .made/workflows.yml --workflow wf_example
20
- uvx flowsh-cli .made/workflows.yml --force
21
- uvx flowsh-cli .made/workflows.yml --schema
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
  ```
@@ -4,7 +4,7 @@ build-backend = "uv_build"
4
4
 
5
5
  [project]
6
6
  name = "flowsh-cli"
7
- version = "0.7.1"
7
+ version = "0.7.2"
8
8
  description = "Generate Bash harness scripts from workflow YAML files."
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.11"
@@ -3,7 +3,7 @@
3
3
  from flowsh_cli.models import Workflow, WorkflowParseError, parse_workflows
4
4
  from flowsh_cli.render import harness_path, render_harness
5
5
 
6
- __version__ = "0.7.1"
6
+ __version__ = "0.7.2"
7
7
 
8
8
  __all__ = [
9
9
  "Workflow",
@@ -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 .made/workflows.yml")],
38
+ workflow_yaml: Annotated[Path, typer.Argument(help="Path to workflow YAML")],
39
39
  workflow: Annotated[
40
40
  str | None,
41
41
  typer.Option(