@tienne/gestalt 0.5.0 → 0.5.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.
package/README.md CHANGED
@@ -14,6 +14,21 @@
14
14
 
15
15
  ---
16
16
 
17
+ ## Prerequisites
18
+
19
+ - **Node.js >= 20.0.0** (22.x recommended)
20
+
21
+ ```bash
22
+ node --version # v20.x.x 이상이어야 합니다
23
+ ```
24
+
25
+ Node 18 이하에서는 MCP SDK의 ES2024 기능 호환성 문제로 실행이 실패합니다. [nvm](https://github.com/nvm-sh/nvm) 사용 시:
26
+
27
+ ```bash
28
+ nvm install 22
29
+ nvm use 22
30
+ ```
31
+
17
32
  ## Installation
18
33
 
19
34
  ### Claude Plugin (Recommended)
@@ -1,4 +1,12 @@
1
1
  #!/usr/bin/env node
2
+ const major = Number(process.versions.node.split('.')[0]);
3
+ if (major < 20) {
4
+ console.error(`\n gestalt requires Node.js >= 20.0.0 (current: ${process.version})\n\n` +
5
+ ` Upgrade with:\n` +
6
+ ` nvm install 22 && nvm use 22\n` +
7
+ ` or: https://nodejs.org/\n`);
8
+ process.exit(1);
9
+ }
2
10
  import { createCli } from '../src/cli/index.js';
3
11
  const program = createCli();
4
12
  program.parse();
@@ -1 +1 @@
1
- {"version":3,"file":"gestalt.js","sourceRoot":"","sources":["../../bin/gestalt.ts"],"names":[],"mappings":";AACA,OAAO,EAAE,SAAS,EAAE,MAAM,qBAAqB,CAAC;AAEhD,MAAM,OAAO,GAAG,SAAS,EAAE,CAAC;AAC5B,OAAO,CAAC,KAAK,EAAE,CAAC"}
1
+ {"version":3,"file":"gestalt.js","sourceRoot":"","sources":["../../bin/gestalt.ts"],"names":[],"mappings":";AAEA,MAAM,KAAK,GAAG,MAAM,CAAC,OAAO,CAAC,QAAQ,CAAC,IAAI,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AAC1D,IAAI,KAAK,GAAG,EAAE,EAAE,CAAC;IACf,OAAO,CAAC,KAAK,CACX,oDAAoD,OAAO,CAAC,OAAO,OAAO;QAC1E,mBAAmB;QACnB,oCAAoC;QACpC,+BAA+B,CAChC,CAAC;IACF,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;AAClB,CAAC;AAED,OAAO,EAAE,SAAS,EAAE,MAAM,qBAAqB,CAAC;AAEhD,MAAM,OAAO,GAAG,SAAS,EAAE,CAAC;AAC5B,OAAO,CAAC,KAAK,EAAE,CAAC"}
package/dist/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tienne/gestalt",
3
- "version": "0.5.0",
3
+ "version": "0.5.1",
4
4
  "description": "TypeScript AI Development Harness - Gestalt psychology-driven requirement clarification",
5
5
  "type": "module",
6
6
  "main": "./dist/src/index.js",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tienne/gestalt",
3
- "version": "0.5.0",
3
+ "version": "0.5.1",
4
4
  "description": "TypeScript AI Development Harness - Gestalt psychology-driven requirement clarification",
5
5
  "type": "module",
6
6
  "main": "./dist/src/index.js",