data-vizard 0.1.0 → 0.1.1

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.
@@ -4,14 +4,14 @@
4
4
  "name": "Trine"
5
5
  },
6
6
  "description": "Data Vizard agent workflow plugins.",
7
- "version": "0.1.0",
7
+ "version": "0.1.1",
8
8
  "plugins": [
9
9
  {
10
10
  "name": "data-vizard",
11
11
  "source": "./plugins/data-vizard",
12
12
  "displayName": "Data Vizard",
13
13
  "description": "Guide data visualization projects from dataset intake to analysis, narrative, design, and HTML story output.",
14
- "version": "0.1.0",
14
+ "version": "0.1.1",
15
15
  "author": {
16
16
  "name": "Trine"
17
17
  },
package/CHANGELOG.md ADDED
@@ -0,0 +1,18 @@
1
+ # Changelog
2
+
3
+ All notable changes to Data Vizard will be documented here.
4
+
5
+ ## 0.1.1 - 2026-06-30
6
+
7
+ - Added Codex plugin-directory visual assets with a consistent wizard-and-chart logo.
8
+ - Wired `composerIcon`, `logo`, `logoDark`, and screenshot metadata into the Codex plugin manifest.
9
+ - Made the npm installer bin executable for cleaner package execution.
10
+ - Expanded the root and plugin READMEs with compatibility, privacy, verification, update, and release guidance.
11
+ - Added a reproducible script for regenerating plugin visual assets.
12
+
13
+ ## 0.1.0 - 2026-06-30
14
+
15
+ - Published the first npm installer for the Data Vizard agent workflow plugin.
16
+ - Bundled Codex and Claude Code marketplace manifests.
17
+ - Included five workflow skills: orchestrator, curator, analyst, narrator, and designer.
18
+ - Added release guidance for npm install testing, Codex marketplace testing, and Claude Code compatibility checks.
package/README.md CHANGED
@@ -1,53 +1,110 @@
1
1
  # Data Vizard
2
2
 
3
- Data Vizard is a WIP agent plugin for building data visualization stories with a staged workflow. The workflow moves from data intake to analysis, narrative framing, visual design, and a final HTML artifact while keeping user decisions explicit.
3
+ Data Vizard is an agent plugin for building data visualization stories with a staged workflow. It guides a project from data intake to curation, exploratory analysis, narrative framing, visual design, and a final HTML artifact while keeping user decisions explicit.
4
4
 
5
- ## Workflow
5
+ ![Data Vizard workflow](plugins/data-vizard/assets/screenshot-workflow.png)
6
6
 
7
- Most projects follow this path:
7
+ ## Install
8
8
 
9
- 1. `data-vizard` coordinates the project and decision gates.
10
- 2. `data-curator` finds, evaluates, cleans, joins, and documents data.
11
- 3. `data-analyst` explores the curated data and proposes evidence-backed story directions.
12
- 4. `narrator` turns the selected analytical direction into a story brief, copy, caveats, and annotation plan.
13
- 5. `designer` chooses the visual form with the user, then builds and verifies the HTML artifact.
9
+ Install the published package with npm, pnpm, or Bun:
14
10
 
15
- Project folders use lowercase hyphen-case slugs, for example `nyc-taxi-weather-jan-2026`.
11
+ ```bash
12
+ npx data-vizard install
13
+ pnpm dlx data-vizard install
14
+ bunx data-vizard install
15
+ ```
16
16
 
17
- ## Skills
17
+ The installer copies the bundled plugin into a stable local marketplace at `~/.data-vizard/marketplace`, writes Codex and Claude Code marketplace files, and attempts to install `data-vizard@data-vizard` when those CLIs are available.
18
18
 
19
- The local skills live in `skills/`.
19
+ ## Quickstart
20
20
 
21
- - `skills/data-vizard/` - Orchestrates the full visualization workflow, routes between role skills, and maintains decision gates.
22
- - `skills/data-curator/` - Handles dataset discovery, data fitness checks, cleaning, reshaping, joins, enrichment, and curator handoff notes.
23
- - `skills/data-analyst/` - Profiles curated datasets, finds patterns and caveats, and proposes possible story directions without choosing the final story silently.
24
- - `skills/narrator/` - Shapes the selected analysis into audience-facing structure: story spine, titles, section copy, annotations, and caveats.
25
- - `skills/designer/` - Designs and produces HTML-based visualization artifacts, including chart choice, layout, interaction, accessibility, visual style, and motion behavior.
21
+ After installing, start a new Codex thread or Claude Code session so the plugin skills are loaded.
26
22
 
27
- Each skill has a `SKILL.md` file with its operating rules. Some skills also include `references/` for playbooks and reusable guidance, or `assets/` for starter files.
23
+ ```text
24
+ Codex: Use $data-vizard:data-vizard to build a visualization from this CSV.
25
+ Claude Code: /data-vizard:data-vizard Build a visualization from this CSV.
26
+ ```
28
27
 
29
- ## Install
28
+ You can also call a role skill directly:
30
29
 
31
- Install the published package with npm, pnpm, or Bun:
30
+ ```text
31
+ $data-vizard:data-curator
32
+ $data-vizard:data-analyst
33
+ $data-vizard:narrator
34
+ $data-vizard:designer
35
+ ```
36
+
37
+ ![Data Vizard output example](plugins/data-vizard/assets/screenshot-output.png)
38
+
39
+ ## Compatibility
40
+
41
+ | Host | Status | Install path | Notes |
42
+ | --- | --- | --- | --- |
43
+ | Codex app and CLI | Supported | `.agents/plugins/marketplace.json` plus `.codex-plugin/plugin.json` | Local and workspace plugins can appear in the Codex plugin directory through marketplaces or workspace sharing. The public OpenAI-curated directory is not a self-serve npm publishing target. |
44
+ | Claude Code | Supported | `.claude-plugin/marketplace.json` plus `.claude-plugin/plugin.json` | Validate with `claude plugin validate` and install with `claude plugin install data-vizard@data-vizard`. |
45
+ | npm | Supported | `bin/data-vizard.js` installer | The package ships the plugin, marketplace files, README, and changelog. |
46
+
47
+ ## Verify
48
+
49
+ Local package checks:
32
50
 
33
51
  ```bash
34
- npx data-vizard install
35
- pnpm dlx data-vizard install
36
- bunx data-vizard install
52
+ NPM_CONFIG_CACHE=/tmp/data-vizard-npm-cache npm pack --dry-run --json
53
+ node bin/data-vizard.js install --dry-run --root /tmp/data-vizard-local-smoke
54
+ ```
55
+
56
+ Published-package smoke test:
57
+
58
+ ```bash
59
+ cd /tmp
60
+ NPM_CONFIG_CACHE=/tmp/data-vizard-npm-cache npx --yes data-vizard@0.1.1 --version
61
+ NPM_CONFIG_CACHE=/tmp/data-vizard-npm-cache npx --yes data-vizard@0.1.1 install --dry-run --root /tmp/data-vizard-published-smoke
62
+ NPM_CONFIG_CACHE=/tmp/data-vizard-npm-cache npx --yes data-vizard@0.1.1 install --root /tmp/data-vizard-published-stage --no-codex --no-claude
37
63
  ```
38
64
 
39
- The installer copies the bundled plugin into a stable local marketplace at `~/.data-vizard/marketplace`, then registers and installs it for Codex and Claude Code when their CLIs are available.
65
+ Full install verification:
66
+
67
+ ```bash
68
+ npx --yes data-vizard@0.1.1 install
69
+ codex plugin list --available --json
70
+ claude plugin list
71
+ ```
40
72
 
41
- After installing, start a new agent session and invoke the orchestrator:
73
+ Claude Code compatibility check:
42
74
 
43
- ```text
44
- Codex: $data-vizard:data-vizard
45
- Claude Code: /data-vizard:data-vizard
75
+ ```bash
76
+ claude plugin validate plugins/data-vizard
77
+ claude plugin marketplace add /tmp/data-vizard-published-stage
78
+ claude plugin install data-vizard@data-vizard --scope local
79
+ claude plugin list
46
80
  ```
47
81
 
48
- ## Manual Plugin Install
82
+ ## Update Or Remove
83
+
84
+ Update from npm:
85
+
86
+ ```bash
87
+ npx data-vizard@latest install
88
+ ```
49
89
 
50
- The plugin source lives in `plugins/data-vizard/`, with repo-local marketplace files for Codex and Claude Code. From a fresh clone, install it manually with:
90
+ Remove installed plugins:
91
+
92
+ ```bash
93
+ codex plugin remove data-vizard@data-vizard
94
+ claude plugin uninstall data-vizard@data-vizard
95
+ ```
96
+
97
+ After updating or removing a plugin, start a new Codex thread or Claude Code session.
98
+
99
+ ## Privacy And Data
100
+
101
+ Data Vizard works on files and datasets you provide in the active workspace. The plugin itself does not add a server, background sync, analytics, or external app connector. Host-level model, tool, network, approval, and file-access settings still apply in Codex and Claude Code.
102
+
103
+ For sensitive datasets, review source rights before importing data, avoid committing private raw files, and keep project caveats close to any published visualization.
104
+
105
+ ## Development Install From Clone
106
+
107
+ Normal installs should use npm. This clone-based path is only for development before a version is published:
51
108
 
52
109
  ```bash
53
110
  codex plugin marketplace add "$(pwd)"
@@ -57,27 +114,19 @@ claude plugin marketplace add "$(pwd)"
57
114
  claude plugin install data-vizard@data-vizard
58
115
  ```
59
116
 
60
- See `plugins/data-vizard/README.md` for full install, usage, update, and troubleshooting notes.
61
-
62
- ## Folder Guide
63
-
64
- - `outcome/` - Final or in-progress public-facing visualization artifacts. Each project gets its own folder, usually with an `index.html` and supporting files such as story briefs, design notes, SVG favicons, or map assets.
65
- - `data/` - Curated data, raw source snapshots, transformation notes, and intermediate datasets used to build a visualization.
66
- - `scripts/` - Reproducible data preparation scripts. For example, `scripts/build_nyc_taxi_weather_hourly.py` builds the NYC taxi/weather dataset.
67
- - `skills/` - Local role skills used by the Data Vizard workflow.
68
- - `project-ledgers/` - Project ledgers that record stage progress, skill handoffs, decisions, caveats, and important files.
69
- - `outcome/<project-name>/PRODUCT.md` - Project-specific product context: audience, purpose, brand personality, anti-references, design principles, and accessibility goals.
70
-
117
+ The plugin source lives in `plugins/data-vizard/`. See `plugins/data-vizard/README.md` for role details, usage notes, update flow, and troubleshooting.
71
118
 
72
- ## Current Projects
119
+ ## Package Contents
73
120
 
74
- - `outcome/nyc-taxi-weather-jan-2026/` - A map-led scrollytelling story about how the January 25, 2026 snow day affected NYC yellow taxi pickups.
75
- - `outcome/india-state-choropleth/` - An India state choropleth visualization workspace.
121
+ - `bin/data-vizard.js` - npm installer CLI.
122
+ - `plugins/data-vizard/` - Packaged plugin source for Codex and Claude Code.
123
+ - `plugins/data-vizard/assets/` - Plugin icon, logo, and screenshots.
124
+ - `CHANGELOG.md` - Release history.
76
125
 
77
- ## Working Notes
126
+ ## Release Checklist
78
127
 
79
- - Keep user-facing visualization outputs under `outcome/<project-name>/`.
80
- - Keep curated data and transformation artifacts under `data/<project-name>/`.
81
- - Keep project progress notes in `project-ledgers/<project-name>.md`.
82
- - When adding new skills, include a clear `SKILL.md` and keep supporting guidance in that skill's `references/` folder.
83
- - For chart and map animations, prefer semantic data transitions: animate heights, bases, segment boundaries, filters, and scales rather than relying on opacity-only color swaps.
128
+ - Keep `package.json`, `plugins/data-vizard/.codex-plugin/plugin.json`, `.claude-plugin/marketplace.json`, and `plugins/data-vizard/.claude-plugin/plugin.json` versions aligned.
129
+ - Regenerate plugin assets with `python3 scripts/generate_plugin_assets.py`; pass `--source /path/to/logo.png` when replacing the canonical logo.
130
+ - Run npm pack and installer dry-run checks before publishing.
131
+ - Run Codex and Claude Code install checks in a fresh terminal or CI job.
132
+ - Update `CHANGELOG.md` for every release.
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "data-vizard",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "Installer for the Data Vizard agent workflow plugin.",
5
5
  "license": "MIT",
6
6
  "author": {
@@ -29,6 +29,7 @@
29
29
  "plugins/data-vizard/",
30
30
  ".agents/plugins/marketplace.json",
31
31
  ".claude-plugin/marketplace.json",
32
+ "CHANGELOG.md",
32
33
  "README.md"
33
34
  ],
34
35
  "engines": {
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "data-vizard",
3
3
  "displayName": "Data Vizard",
4
- "version": "0.1.0",
4
+ "version": "0.1.1",
5
5
  "description": "Guide data visualization projects from dataset intake to analysis, narrative, design, and HTML story output.",
6
6
  "author": {
7
7
  "name": "Trine",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "data-vizard",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "A staged data visualization workshop for moving from dataset intake to analysis, narrative, design, and an HTML artifact.",
5
5
  "author": {
6
6
  "name": "Trine"
@@ -26,7 +26,14 @@
26
26
  "Data Analysis",
27
27
  "Visualization"
28
28
  ],
29
- "brandColor": "#2563EB",
29
+ "brandColor": "#5B35D5",
30
+ "composerIcon": "./assets/icon.png",
31
+ "logo": "./assets/logo.png",
32
+ "logoDark": "./assets/logo-dark.png",
33
+ "screenshots": [
34
+ "./assets/screenshot-workflow.png",
35
+ "./assets/screenshot-output.png"
36
+ ],
30
37
  "defaultPrompt": [
31
38
  "Use Data Vizard to build a visualization from this CSV.",
32
39
  "Guide me from dataset intake to an HTML data story.",
@@ -2,11 +2,13 @@
2
2
 
3
3
  Data Vizard is an agent plugin for staged data visualization work. It bundles skills for dataset intake, curation, exploratory analysis, narrative framing, and HTML visualization design.
4
4
 
5
+ ![Data Vizard workflow](assets/screenshot-workflow.png)
6
+
5
7
  ## What This Plugin Provides
6
8
 
7
9
  - `data-vizard:data-vizard` - Orchestrates the full workflow and keeps user decision gates explicit.
8
- - `data-vizard:data-curator` - Profiles, cleans, reshapes, joins, and documents datasets.
9
- - `data-vizard:data-analyst` - Finds patterns, caveats, and evidence-backed story directions.
10
+ - `data-vizard:data-curator` - Profiles, cleans, reshapes, joins, enriches, and documents datasets.
11
+ - `data-vizard:data-analyst` - Finds patterns, caveats, comparisons, anomalies, and evidence-backed story directions.
10
12
  - `data-vizard:narrator` - Turns analysis into audience-facing structure, copy, titles, annotations, and caveats.
11
13
  - `data-vizard:designer` - Designs and builds HTML visualization artifacts with chart, layout, accessibility, interaction, and motion guidance.
12
14
 
@@ -27,7 +29,17 @@ bunx data-vizard install
27
29
 
28
30
  The installer copies this plugin into `~/.data-vizard/marketplace`, writes Codex and Claude Code marketplace files, and attempts to install `data-vizard@data-vizard` with both CLIs when available.
29
31
 
30
- ## Install From A Fresh Clone
32
+ ## Compatibility
33
+
34
+ | Host | Status | Manifest | Notes |
35
+ | --- | --- | --- | --- |
36
+ | Codex app and CLI | Supported | `.codex-plugin/plugin.json` | Visual plugin metadata, skills, and local marketplace install are supported. Local/workspace plugins can appear through marketplaces or workspace sharing. |
37
+ | Claude Code | Supported | `.claude-plugin/plugin.json` | Uses a separate Claude manifest and marketplace file. Validate with `claude plugin validate`. |
38
+ | npm | Supported | `bin/data-vizard.js` | Ships the plugin, assets, marketplace files, root README, and changelog. |
39
+
40
+ ## Development Install From A Fresh Clone
41
+
42
+ Normal installs should use npm. This clone-based path is only for development before a version is published.
31
43
 
32
44
  Prerequisites:
33
45
 
@@ -53,21 +65,19 @@ claude plugin install data-vizard@data-vizard
53
65
 
54
66
  Why this works:
55
67
 
56
- - The marketplace definition lives at `.agents/plugins/marketplace.json`.
68
+ - The Codex marketplace definition lives at `.agents/plugins/marketplace.json`.
57
69
  - The Claude Code marketplace definition lives at `.claude-plugin/marketplace.json`.
58
70
  - Both marketplaces are named `data-vizard`.
59
- - It points Codex to the plugin source at `./plugins/data-vizard`.
71
+ - Both point to the plugin source at `./plugins/data-vizard`.
60
72
 
61
73
  Verify the install:
62
74
 
63
75
  ```bash
64
76
  codex plugin marketplace list
65
- codex plugin list
77
+ codex plugin list --available --json
66
78
  claude plugin list
67
79
  ```
68
80
 
69
- You should see a `data-vizard` marketplace pointing at this repo and `data-vizard@data-vizard` listed as installed and enabled.
70
-
71
81
  After installing or reinstalling a plugin, start a new Codex thread or Claude Code session so the updated skills are loaded.
72
82
 
73
83
  ## Basic Usage
@@ -93,11 +103,15 @@ Use $data-vizard:narrator to turn this analysis into a story brief.
93
103
  Use $data-vizard:designer to build the HTML visualization.
94
104
  ```
95
105
 
96
- The default workflow stores project artifacts in the repo:
106
+ The orchestrator confirms where project artifacts should live in the active workspace before creating or changing files.
107
+
108
+ ![Data Vizard output example](assets/screenshot-output.png)
97
109
 
98
- - `data/<project-name>/` - Raw snapshots, curated data, data dictionaries, and analysis files.
99
- - `outcome/<project-name>/` - Final or in-progress visualization artifacts, usually including `index.html`.
100
- - `project-ledgers/<project-name>.md` - Stage progress, user decisions, caveats, and handoffs.
110
+ ## Privacy And Data
111
+
112
+ Data Vizard works on files and datasets you provide in the active workspace. The plugin does not add a server, background sync, analytics, or external app connector. Codex and Claude Code host settings still control model access, file permissions, network access, and command approvals.
113
+
114
+ For sensitive datasets, review source rights before importing data, keep private raw files out of commits, and document caveats close to any public-facing claims.
101
115
 
102
116
  ## Updating After Pulling Changes
103
117
 
@@ -111,6 +125,33 @@ claude plugin install data-vizard@data-vizard
111
125
 
112
126
  Then start a new Codex thread or Claude Code session. If Codex or Claude Code still shows an older version, confirm that the plugin manifests under `plugins/data-vizard/` have a new version, then reinstall again.
113
127
 
128
+ ## Release Checks
129
+
130
+ Local package checks:
131
+
132
+ ```bash
133
+ NPM_CONFIG_CACHE=/tmp/data-vizard-npm-cache npm pack --dry-run --json
134
+ node bin/data-vizard.js install --dry-run --root /tmp/data-vizard-local-smoke
135
+ ```
136
+
137
+ Published-package smoke test:
138
+
139
+ ```bash
140
+ cd /tmp
141
+ NPM_CONFIG_CACHE=/tmp/data-vizard-npm-cache npx --yes data-vizard@0.1.1 --version
142
+ NPM_CONFIG_CACHE=/tmp/data-vizard-npm-cache npx --yes data-vizard@0.1.1 install --dry-run --root /tmp/data-vizard-published-smoke
143
+ NPM_CONFIG_CACHE=/tmp/data-vizard-npm-cache npx --yes data-vizard@0.1.1 install --root /tmp/data-vizard-published-stage --no-codex --no-claude
144
+ ```
145
+
146
+ Claude Code compatibility check:
147
+
148
+ ```bash
149
+ claude plugin validate plugins/data-vizard
150
+ claude plugin marketplace add /tmp/data-vizard-published-stage
151
+ claude plugin install data-vizard@data-vizard --scope local
152
+ claude plugin list
153
+ ```
154
+
114
155
  ## Troubleshooting
115
156
 
116
157
  If Codex says: