@pickled-dev/cli 0.6.0 → 0.8.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 +9 -0
- package/dist/index.js +205 -204
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -57,6 +57,15 @@ Create a starter `pickled.yml` config file.
|
|
|
57
57
|
|
|
58
58
|
Static scan of agent-context files. No LLM calls.
|
|
59
59
|
|
|
60
|
+
| Option | Description |
|
|
61
|
+
| --------------------- | ---------------------------------------------------- |
|
|
62
|
+
| `--format <name>` | `terminal` (default), `markdown`, or `json` |
|
|
63
|
+
| `--json` | Shorthand for `--format json` |
|
|
64
|
+
| `-o, --output <file>` | Save report to file |
|
|
65
|
+
| `--fail-on <level>` | Exit non-zero on `error` (default) or `warning` |
|
|
66
|
+
|
|
67
|
+
Default `terminal` format is plain text suited to CI logs. Use `--format markdown` for GitHub step summaries; `--format json` for machine consumers.
|
|
68
|
+
|
|
60
69
|
### `pickled check [path]`
|
|
61
70
|
|
|
62
71
|
Run agent scenarios against registered sources.
|