structurecc 1.0.4 → 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/bin/install.js +22 -28
- package/package.json +1 -1
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.
|
|
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
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
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() {
|