@miao-vision/cli 0.1.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.
- package/README.md +28 -0
- package/dist/cli.cjs +56863 -0
- package/dist/examples/sales-dashboard.yaml +54 -0
- package/dist/examples/sales-deck.yaml +128 -0
- package/dist/examples/sales.csv +5 -0
- package/dist/types.ts +193 -0
- package/examples/sales-dashboard.yaml +54 -0
- package/examples/sales-deck.yaml +128 -0
- package/examples/sales.csv +5 -0
- package/package.json +38 -0
package/README.md
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
# Miao Vision CLI
|
|
2
|
+
|
|
3
|
+
`miao-viz` is a local data visualization CLI for agent workflows. It reads local CSV, TSV, XLSX, and JSON files, profiles the data, validates a Miao Vision report spec, and renders a self-contained HTML report.
|
|
4
|
+
|
|
5
|
+
## Install
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npm install -g @miao-vision/cli
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## Commands
|
|
12
|
+
|
|
13
|
+
```bash
|
|
14
|
+
miao-viz profile ./examples/sales.csv
|
|
15
|
+
miao-viz catalog
|
|
16
|
+
miao-viz validate --spec ./examples/sales-dashboard.yaml --profile ./profile.json
|
|
17
|
+
miao-viz render --input ./examples/sales.csv --spec ./examples/sales-dashboard.yaml --output /tmp/miao-report.html
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
## Agent Usage
|
|
21
|
+
|
|
22
|
+
Install the CLI, then install the `miao-vision` skill for Codex or Claude. The skill will call `miao-viz` from your `PATH`.
|
|
23
|
+
|
|
24
|
+
## Notes
|
|
25
|
+
|
|
26
|
+
- Default output format is HTML.
|
|
27
|
+
- PNG/PDF are not included in v1.
|
|
28
|
+
- The CLI does not call an LLM or require an API key.
|