@pickled-dev/cli 0.16.0 → 0.16.2

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.
Files changed (3) hide show
  1. package/README.md +4 -2
  2. package/dist/index.js +109 -109
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -76,12 +76,14 @@ Run agent scenarios against registered sources.
76
76
  | `-o, --output <file>` | Save JSON report to file |
77
77
  | `-v, --verbose` | Show progress while scenarios run |
78
78
  | `-t, --threshold <n>` | Minimum score percent needed to pass |
79
- | `--target <name>` | Run only the named target (overrides matrix) |
79
+ | `--target <name>` | Restrict to the named target. Overrides `matrix.target` for non-matrix scenarios; for matrix scenarios, also acts as `--interface` unless that flag is explicitly set. |
80
80
  | `--scenario <name>` | Run only the named scenario (CI-matrix-friendly) |
81
- | `--interface <name>` | Matrix cell filter: run only cells with this interface |
81
+ | `--interface <name>` | Matrix cell filter: run only cells with this interface. Takes precedence over `--target` for matrix cells. |
82
82
  | `--source <name>` | Matrix cell filter: run only cells with this source id |
83
83
  | `--toolset <name>` | Matrix cell filter: run only cells with this toolset name |
84
84
 
85
+ `--target` and `--interface` are related but distinct: `--target` is the legacy flag that narrows the top-level `matrix.target` axis (used before per-scenario `scenario.matrix.interfaces` shipped in v0.16.0). When `--target` is the only flag passed, the CLI also applies it as `--interface` so matrix scenarios narrow consistently. Pass `--interface` explicitly to override.
86
+
85
87
  The cell filters work with `scenario.matrix` declarations. Designed for GitHub Actions matrix usage where each CI job runs one cell:
86
88
 
87
89
  ```yaml