CLI
genart info
Inspect sketch metadata
Display metadata from one or more .genart sketch files, including title, renderer, parameters, colors, canvas size, and algorithm details.
Usage
genart info <files...> [options]Arguments
| Argument | Required | Description |
|---|---|---|
<files...> | Yes | One or more .genart sketch files |
Options
| Flag | Type | Default | Description |
|---|---|---|---|
--json | boolean | Output as JSON | |
--table | boolean | Output as a formatted table |
Examples
Inspect a single sketch:
genart info my-sketch.genartInspect multiple sketches:
genart info sketches/*.genartOutput metadata as JSON for scripting:
genart info my-sketch.genart --jsonDisplay metadata in a table:
genart info my-sketch.genart --tablePipe JSON output to jq:
genart info my-sketch.genart --json | jq '.parameters'