structurecc 1.0.3 → 1.0.5

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  <h1 align="center">STRUCTURE</h1>
2
2
 
3
3
  <p align="center">
4
- <strong>Landing AI charges $500/month for agentic document extraction.<br>This is free.</strong>
4
+ <strong>Landing AI charges $500/month for agentic document structuring.<br>This is free.</strong>
5
5
  </p>
6
6
 
7
7
  <p align="center">
package/bin/install.js CHANGED
@@ -4,7 +4,7 @@ const fs = require('fs');
4
4
  const path = require('path');
5
5
  const os = require('os');
6
6
 
7
- const VERSION = '1.0.3';
7
+ const VERSION = '1.0.5';
8
8
  const PACKAGE_NAME = 'structurecc';
9
9
 
10
10
  // Colors
@@ -25,33 +25,27 @@ function log(msg, color = '') {
25
25
  }
26
26
 
27
27
  function banner() {
28
- console.log(`
29
- ${colors.cyan}
30
- ╔══════════════════════════════════════════════════════════════════════════════╗
31
- ║ ║
32
- ███████╗████████╗██████╗ ██╗ ██╗ ██████╗████████╗██╗ ██╗██████╗ ███████╗║
33
- ██╔════╝╚══██╔══╝██╔══██╗██║ ██║██╔════╝╚══██╔══╝██║ ██║██╔══██╗██╔════╝║
34
- ███████╗ ██║ ██████╔╝██║ ██║██║ ██║ ██║ ██║██████╔╝█████╗
35
- ╚════██║ ██║ ██╔══██╗██║ ██║██║ ██║ ██║ ██║██╔══██╗██╔══╝ ║
36
- ███████║ ██║ ██║ ██║╚██████╔╝╚██████╗ ██║ ╚██████╔╝██║ ██║███████╗║
37
- ╚══════╝ ╚═╝ ╚═╝ ╚═╝ ╚═════╝ ╚═════╝ ╚═╝ ╚═════╝ ╚═╝ ╚═╝╚══════╝║
38
- ║ ║
39
- ${colors.reset}${colors.bright}Agentic Document Extraction${colors.reset}${colors.cyan} ║
40
- ${colors.reset}${colors.dim}One command. Every figure. Every table.${colors.reset}${colors.cyan} ║
41
- ║ ║
42
- ╠══════════════════════════════════════════════════════════════════════════════╣
43
- ║ ║
44
- ${colors.reset}${colors.yellow}PDF${colors.cyan} ───▶ ${colors.green}[Agent 1]${colors.cyan} ───┐ ║
45
- ║ ${colors.green}[Agent 2]${colors.cyan} ───┤ ║
46
- ║ ${colors.green}[Agent 3]${colors.cyan} ───┼───▶ ${colors.magenta}STRUCTURED.md${colors.cyan} ║
47
- ║ ${colors.green}[Agent N]${colors.cyan} ───┘ ║
48
- ║ ║
49
- ║ ${colors.reset}${colors.white}Unstructured in. Structured out.${colors.reset}${colors.cyan} ║
50
- ║ ║
51
- ╚══════════════════════════════════════════════════════════════════════════════╝
52
- ${colors.reset}
53
- ${colors.bright}structurecc${colors.reset} v${VERSION}
54
- `);
28
+ const c = colors;
29
+ console.log('');
30
+ console.log(c.cyan + ' ┌─────────────────────────────────────────────────────┐' + c.reset);
31
+ console.log(c.cyan + ' │ │' + c.reset);
32
+ console.log(c.cyan + ' │ ' + c.bright + 'S T R U C T U R E' + c.reset + c.cyan + ' │' + c.reset);
33
+ console.log(c.cyan + ' │ │' + c.reset);
34
+ console.log(c.cyan + ' │ ' + c.reset + 'Agentic Document Structuring' + c.cyan + ' │' + c.reset);
35
+ console.log(c.cyan + ' │ ' + c.dim + 'One command. Every figure. Every table.' + c.reset + c.cyan + ' │' + c.reset);
36
+ console.log(c.cyan + ' │ │' + c.reset);
37
+ console.log(c.cyan + ' ├─────────────────────────────────────────────────────┤' + c.reset);
38
+ console.log(c.cyan + ' │ │' + c.reset);
39
+ console.log(c.cyan + ' │ ' + c.yellow + 'PDF' + c.reset + ' ──▶ ' + c.green + '[Agent 1]' + c.reset + ' ──┐ ' + c.cyan + '│' + c.reset);
40
+ console.log(c.cyan + ' │ ' + c.green + '[Agent 2]' + c.reset + ' ──┤ ' + c.cyan + '│' + c.reset);
41
+ console.log(c.cyan + ' │ ' + c.green + '[Agent 3]' + c.reset + ' ──┼──▶ ' + c.magenta + 'STRUCTURED.md' + c.reset + ' ' + c.cyan + '│' + c.reset);
42
+ console.log(c.cyan + ' │ ' + c.green + '[Agent N]' + c.reset + ' ──┘ ' + c.cyan + '│' + c.reset);
43
+ console.log(c.cyan + ' │ │' + c.reset);
44
+ console.log(c.cyan + ' ' + c.white + 'Unstructured in. Structured out.' + c.reset + c.cyan + ' │' + c.reset);
45
+ console.log(c.cyan + ' │ │' + c.reset);
46
+ console.log(c.cyan + ' └─────────────────────────────────────────────────────┘' + c.reset);
47
+ console.log('');
48
+ console.log(c.bright + 'structurecc' + c.reset + ' v' + VERSION);
55
49
  }
56
50
 
57
51
  function getClaudeDir() {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "structurecc",
3
- "version": "1.0.3",
4
- "description": "Agentic document extraction for Claude Code. One command. Every figure. Every table.",
3
+ "version": "1.0.5",
4
+ "description": "Agentic document structuring for Claude Code. One command. Every figure. Every table.",
5
5
  "keywords": [
6
6
  "document-extraction",
7
7
  "pdf",