data-vizard 0.1.1 → 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/.claude-plugin/marketplace.json +6 -4
- package/CHANGELOG.md +7 -0
- package/README.md +4 -8
- package/package.json +3 -2
- package/plugins/data-vizard/.claude-plugin/plugin.json +2 -2
- package/plugins/data-vizard/.codex-plugin/plugin.json +5 -4
- package/plugins/data-vizard/README.md +3 -3
- package/plugins/data-vizard/assets/logo-dark.png +0 -0
- package/plugins/data-vizard/assets/logo.png +0 -0
|
@@ -1,19 +1,21 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "data-vizard",
|
|
3
3
|
"owner": {
|
|
4
|
-
"name": "
|
|
4
|
+
"name": "inosaint",
|
|
5
|
+
"url": "https://github.com/inosaint"
|
|
5
6
|
},
|
|
6
7
|
"description": "Data Vizard agent workflow plugins.",
|
|
7
|
-
"version": "0.1.
|
|
8
|
+
"version": "0.1.2",
|
|
8
9
|
"plugins": [
|
|
9
10
|
{
|
|
10
11
|
"name": "data-vizard",
|
|
11
12
|
"source": "./plugins/data-vizard",
|
|
12
13
|
"displayName": "Data Vizard",
|
|
13
14
|
"description": "Guide data visualization projects from dataset intake to analysis, narrative, design, and HTML story output.",
|
|
14
|
-
"version": "0.1.
|
|
15
|
+
"version": "0.1.2",
|
|
15
16
|
"author": {
|
|
16
|
-
"name": "
|
|
17
|
+
"name": "inosaint",
|
|
18
|
+
"url": "https://github.com/inosaint"
|
|
17
19
|
},
|
|
18
20
|
"repository": "https://github.com/inosaint/data-vizard",
|
|
19
21
|
"license": "MIT",
|
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,13 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to Data Vizard will be documented here.
|
|
4
4
|
|
|
5
|
+
## 0.1.2 - 2026-06-30
|
|
6
|
+
|
|
7
|
+
- Pointed all Codex plugin-list image fields at square icon assets so the plugin directory does not render the wide banner in icon slots.
|
|
8
|
+
- Kept `icon.png` and `logo.png` identical, with `logo-dark.png` as the dark-mode square variant.
|
|
9
|
+
- Switched public publisher metadata to the GitHub identity `inosaint`.
|
|
10
|
+
- Removed image embeds from the npm-facing README to avoid broken relative images on npm.
|
|
11
|
+
|
|
5
12
|
## 0.1.1 - 2026-06-30
|
|
6
13
|
|
|
7
14
|
- Added Codex plugin-directory visual assets with a consistent wizard-and-chart logo.
|
package/README.md
CHANGED
|
@@ -2,8 +2,6 @@
|
|
|
2
2
|
|
|
3
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
|
-

|
|
6
|
-
|
|
7
5
|
## Install
|
|
8
6
|
|
|
9
7
|
Install the published package with npm, pnpm, or Bun:
|
|
@@ -34,8 +32,6 @@ $data-vizard:narrator
|
|
|
34
32
|
$data-vizard:designer
|
|
35
33
|
```
|
|
36
34
|
|
|
37
|
-

|
|
38
|
-
|
|
39
35
|
## Compatibility
|
|
40
36
|
|
|
41
37
|
| Host | Status | Install path | Notes |
|
|
@@ -57,15 +53,15 @@ Published-package smoke test:
|
|
|
57
53
|
|
|
58
54
|
```bash
|
|
59
55
|
cd /tmp
|
|
60
|
-
NPM_CONFIG_CACHE=/tmp/data-vizard-npm-cache npx --yes data-vizard@0.1.
|
|
61
|
-
NPM_CONFIG_CACHE=/tmp/data-vizard-npm-cache npx --yes data-vizard@0.1.
|
|
62
|
-
NPM_CONFIG_CACHE=/tmp/data-vizard-npm-cache npx --yes data-vizard@0.1.
|
|
56
|
+
NPM_CONFIG_CACHE=/tmp/data-vizard-npm-cache npx --yes data-vizard@0.1.2 --version
|
|
57
|
+
NPM_CONFIG_CACHE=/tmp/data-vizard-npm-cache npx --yes data-vizard@0.1.2 install --dry-run --root /tmp/data-vizard-published-smoke
|
|
58
|
+
NPM_CONFIG_CACHE=/tmp/data-vizard-npm-cache npx --yes data-vizard@0.1.2 install --root /tmp/data-vizard-published-stage --no-codex --no-claude
|
|
63
59
|
```
|
|
64
60
|
|
|
65
61
|
Full install verification:
|
|
66
62
|
|
|
67
63
|
```bash
|
|
68
|
-
npx --yes data-vizard@0.1.
|
|
64
|
+
npx --yes data-vizard@0.1.2 install
|
|
69
65
|
codex plugin list --available --json
|
|
70
66
|
claude plugin list
|
|
71
67
|
```
|
package/package.json
CHANGED
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "data-vizard",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"description": "Installer for the Data Vizard agent workflow plugin.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": {
|
|
7
|
-
"name": "
|
|
7
|
+
"name": "inosaint",
|
|
8
|
+
"url": "https://github.com/inosaint"
|
|
8
9
|
},
|
|
9
10
|
"homepage": "https://github.com/inosaint/data-vizard#readme",
|
|
10
11
|
"repository": {
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "data-vizard",
|
|
3
3
|
"displayName": "Data Vizard",
|
|
4
|
-
"version": "0.1.
|
|
4
|
+
"version": "0.1.2",
|
|
5
5
|
"description": "Guide data visualization projects from dataset intake to analysis, narrative, design, and HTML story output.",
|
|
6
6
|
"author": {
|
|
7
|
-
"name": "
|
|
7
|
+
"name": "inosaint",
|
|
8
8
|
"url": "https://github.com/inosaint"
|
|
9
9
|
},
|
|
10
10
|
"repository": "https://github.com/inosaint/data-vizard",
|
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "data-vizard",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
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
|
-
"name": "
|
|
6
|
+
"name": "inosaint",
|
|
7
|
+
"url": "https://github.com/inosaint"
|
|
7
8
|
},
|
|
8
9
|
"license": "MIT",
|
|
9
10
|
"keywords": [
|
|
@@ -18,7 +19,7 @@
|
|
|
18
19
|
"displayName": "Data Vizard",
|
|
19
20
|
"shortDescription": "Guide data visualization projects from dataset to HTML story.",
|
|
20
21
|
"longDescription": "Data Vizard bundles five Codex skills for a complete data visualization workflow: orchestration, data curation, exploratory analysis, narrative framing, and HTML visualization design.",
|
|
21
|
-
"developerName": "
|
|
22
|
+
"developerName": "inosaint",
|
|
22
23
|
"category": "Productivity",
|
|
23
24
|
"capabilities": [
|
|
24
25
|
"Interactive",
|
|
@@ -28,7 +29,7 @@
|
|
|
28
29
|
],
|
|
29
30
|
"brandColor": "#5B35D5",
|
|
30
31
|
"composerIcon": "./assets/icon.png",
|
|
31
|
-
"logo": "./assets/
|
|
32
|
+
"logo": "./assets/icon.png",
|
|
32
33
|
"logoDark": "./assets/logo-dark.png",
|
|
33
34
|
"screenshots": [
|
|
34
35
|
"./assets/screenshot-workflow.png",
|
|
@@ -138,9 +138,9 @@ Published-package smoke test:
|
|
|
138
138
|
|
|
139
139
|
```bash
|
|
140
140
|
cd /tmp
|
|
141
|
-
NPM_CONFIG_CACHE=/tmp/data-vizard-npm-cache npx --yes data-vizard@0.1.
|
|
142
|
-
NPM_CONFIG_CACHE=/tmp/data-vizard-npm-cache npx --yes data-vizard@0.1.
|
|
143
|
-
NPM_CONFIG_CACHE=/tmp/data-vizard-npm-cache npx --yes data-vizard@0.1.
|
|
141
|
+
NPM_CONFIG_CACHE=/tmp/data-vizard-npm-cache npx --yes data-vizard@0.1.2 --version
|
|
142
|
+
NPM_CONFIG_CACHE=/tmp/data-vizard-npm-cache npx --yes data-vizard@0.1.2 install --dry-run --root /tmp/data-vizard-published-smoke
|
|
143
|
+
NPM_CONFIG_CACHE=/tmp/data-vizard-npm-cache npx --yes data-vizard@0.1.2 install --root /tmp/data-vizard-published-stage --no-codex --no-claude
|
|
144
144
|
```
|
|
145
145
|
|
|
146
146
|
Claude Code compatibility check:
|
|
Binary file
|
|
Binary file
|