@pickled-dev/cli 0.15.0 → 0.16.0
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.
- package/README.md +31 -7
- package/dist/index.js +154 -154
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -70,13 +70,37 @@ Default `terminal` format is plain text suited to CI logs. Use `--format markdow
|
|
|
70
70
|
|
|
71
71
|
Run agent scenarios against registered sources.
|
|
72
72
|
|
|
73
|
-
| Option | Description
|
|
74
|
-
| --------------------- |
|
|
75
|
-
| `--json` | Output as JSON
|
|
76
|
-
| `-o, --output <file>` | Save JSON report to file
|
|
77
|
-
| `-v, --verbose` | Show progress while scenarios run
|
|
78
|
-
| `-t, --threshold <n>` | Minimum score percent needed to pass
|
|
79
|
-
| `--target <name>` | Run only the named target (overrides matrix)
|
|
73
|
+
| Option | Description |
|
|
74
|
+
| --------------------- | ------------------------------------------------------------------- |
|
|
75
|
+
| `--json` | Output as JSON |
|
|
76
|
+
| `-o, --output <file>` | Save JSON report to file |
|
|
77
|
+
| `-v, --verbose` | Show progress while scenarios run |
|
|
78
|
+
| `-t, --threshold <n>` | Minimum score percent needed to pass |
|
|
79
|
+
| `--target <name>` | Run only the named target (overrides matrix) |
|
|
80
|
+
| `--scenario <name>` | Run only the named scenario (CI-matrix-friendly) |
|
|
81
|
+
| `--interface <name>` | Matrix cell filter: run only cells with this interface |
|
|
82
|
+
| `--source <name>` | Matrix cell filter: run only cells with this source id |
|
|
83
|
+
| `--toolset <name>` | Matrix cell filter: run only cells with this toolset name |
|
|
84
|
+
|
|
85
|
+
The cell filters work with `scenario.matrix` declarations. Designed for GitHub Actions matrix usage where each CI job runs one cell:
|
|
86
|
+
|
|
87
|
+
```yaml
|
|
88
|
+
# .github/workflows/pickled-matrix.yml
|
|
89
|
+
strategy:
|
|
90
|
+
matrix:
|
|
91
|
+
interface: [codex, claude_code]
|
|
92
|
+
source: [docs_site, readme]
|
|
93
|
+
toolset: [none]
|
|
94
|
+
steps:
|
|
95
|
+
- run: |
|
|
96
|
+
pickled check \
|
|
97
|
+
--interface "${{ matrix.interface }}" \
|
|
98
|
+
--source "${{ matrix.source }}" \
|
|
99
|
+
--toolset "${{ matrix.toolset }}" \
|
|
100
|
+
--output "pickled-report-${{ matrix.interface }}-${{ matrix.source }}-${{ matrix.toolset }}.json"
|
|
101
|
+
```
|
|
102
|
+
|
|
103
|
+
Each job uploads one receipt; a later job can merge or compare them. Full-matrix runs without filters work too; they just produce one report covering every declared cell.
|
|
80
104
|
|
|
81
105
|
## Example Output
|
|
82
106
|
|