structurecc 3.3.0 → 3.3.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.
@@ -192,6 +192,9 @@ Output as JSON with this schema:
192
192
 
193
193
  Figures are data, not decorations. Extract the actual values.
194
194
 
195
+ **READ THE GRID:** Estimate values by finding where each data point falls on the x/y axes.
196
+ Example: if a point is halfway between 0.2 and 0.4 on y-axis, record ~0.3.
197
+
195
198
  {
196
199
  "figure_type": "bar_chart|line_graph|scatter_plot|kaplan_meier|forest_plot|other",
197
200
  "description": "Brief description (SECONDARY to actual data)",
@@ -201,16 +204,16 @@ Figures are data, not decorations. Extract the actual values.
201
204
  },
202
205
  "data_series": [ // REQUIRED - the actual data, not optional
203
206
  {
204
- "name": "HSV Group",
207
+ "name": "HSV: Dementia Risk",
205
208
  "color": "purple",
206
209
  "line_type": "step",
207
- "values": [[0, 0], [1000, 0.05], [2000, 0.08], [3000, 0.12], [4000, 0.16], [5000, 0.22], [6000, 0.32], [7000, 0.55]]
210
+ "values": [[0, 0], [1000, 0.02], [2000, 0.05], [3000, 0.08], [4000, 0.12], [5000, 0.18], [6000, 0.22], [6500, 0.32], [7000, 0.35]]
208
211
  },
209
212
  {
210
- "name": "Control Group",
213
+ "name": "Control: Dementia Risk",
211
214
  "color": "blue",
212
215
  "line_type": "step",
213
- "values": [[0, 0], [1000, 0.01], [2000, 0.02], [3000, 0.03], [4000, 0.04], [5000, 0.05], [6000, 0.06], [7000, 0.07]]
216
+ "values": [[0, 0], [3000, 0.02], [4000, 0.04], [5000, 0.06], [6000, 0.07], [7000, 0.08]]
214
217
  }
215
218
  ],
216
219
  "legend": ["HSV Group", "Control Group", "HSV 95% CI", "Control 95% CI"],
package/install.js CHANGED
@@ -7,6 +7,10 @@ const os = require('os');
7
7
  const CLAUDE_DIR = path.join(os.homedir(), '.claude');
8
8
  const COMMANDS_DIR = path.join(CLAUDE_DIR, 'commands');
9
9
 
10
+ // Read version from package.json
11
+ const pkg = require('./package.json');
12
+ const VERSION = pkg.version;
13
+
10
14
  function copyFile(src, dest) {
11
15
  const destDir = path.dirname(dest);
12
16
  if (!fs.existsSync(destDir)) {
@@ -22,7 +26,7 @@ function install() {
22
26
  ║ STRUCTURECC ║
23
27
  ║ Document Structure Extraction ║
24
28
  ║ ║
25
- ║ Claude Code Plugin | v3.1
29
+ ║ Claude Code Plugin | v${VERSION.padEnd(20)}
26
30
  ║ ║
27
31
  ╚═══════════════════════════════════════════════════╝
28
32
  `);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "structurecc",
3
- "version": "3.3.0",
3
+ "version": "3.3.2",
4
4
  "description": "Claude Code plugin for extracting structured data from documents using native vision and parallel Task agents",
5
5
  "author": "UTMB Diagnostic Center",
6
6
  "license": "MIT",