Separate filtering from running, and actually invoke interpret to run the scores

This commit is contained in:
tahahawa
2025-04-14 15:50:14 -04:00
committed by taha
parent 0a5d3b531a
commit e845544035
2 changed files with 32 additions and 29 deletions

View File

@@ -14,13 +14,14 @@ This is the harmony CLI, a minimal implementation
The current help text:
```
Usage: example-cli [OPTIONS]
````
Usage: harmony_cli [OPTIONS]
Options:
-r, --run <RUN> Name of score to run
-i, --interactive Run interactive or not
-a, --all Run all or nth
-r, --run Run score(s) or not
-f, --filter <FILTER> Filter query
-i, --interactive Run interactive TUI or not
-a, --all Run all or nth, defaults to all
-n, --number <NUMBER> Run nth matching, zero indexed [default: 0]
-l, --list list scores, will also be affected by run filter
-h, --help Print help
@@ -30,3 +31,4 @@ Options:
## Core architecture
![Harmony Core Architecture](docs/diagrams/Harmony_Core_Architecture.drawio.svg)
````