gaia-framework 1.53.2 → 1.53.3

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,6 +1,6 @@
1
1
  # GAIA — Generative Agile Intelligence Architecture
2
2
 
3
- [![Framework](https://img.shields.io/badge/framework-v1.53.2-blue)]()
3
+ [![Framework](https://img.shields.io/badge/framework-v1.53.3-blue)]()
4
4
  [![License](https://img.shields.io/badge/license-AGPL--3.0-green)]()
5
5
  [![Agents](https://img.shields.io/badge/agents-26-purple)]()
6
6
  [![Workflows](https://img.shields.io/badge/workflows-73-orange)]()
@@ -145,8 +145,15 @@ function main() {
145
145
  // Clone the repo to a temp directory
146
146
  tempDir = mkdtempSync(join(tmpdir(), "gaia-framework-"));
147
147
  // Resolve 8.3 short names to long paths on Windows (e.g., ELIASN~1 → Elias Nasser)
148
+ // Node's realpathSync doesn't expand 8.3 names, so use PowerShell
148
149
  if (IS_WINDOWS) {
149
- try { tempDir = realpathSync(tempDir); } catch {}
150
+ try {
151
+ const longPath = execSync(
152
+ `powershell -NoProfile -Command "(Get-Item -LiteralPath '${tempDir}').FullName"`,
153
+ { encoding: "utf8", stdio: ["pipe", "pipe", "ignore"] }
154
+ ).trim();
155
+ if (longPath && existsSync(longPath)) tempDir = longPath;
156
+ } catch {}
150
157
  }
151
158
 
152
159
  // Register cleanup for all exit scenarios
package/gaia-install.sh CHANGED
@@ -6,7 +6,7 @@ set -euo pipefail
6
6
  # Installs, updates, validates, and reports on GAIA installations.
7
7
  # ─────────────────────────────────────────────────────────────────────────────
8
8
 
9
- readonly VERSION="1.53.2"
9
+ readonly VERSION="1.53.3"
10
10
  readonly GITHUB_REPO="https://github.com/jlouage/Gaia-framework.git"
11
11
  readonly MANIFEST_REL="_gaia/_config/manifest.yaml"
12
12
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gaia-framework",
3
- "version": "1.53.2",
3
+ "version": "1.53.3",
4
4
  "description": "GAIA — Generative Agile Intelligence Architecture installer",
5
5
  "bin": {
6
6
  "gaia-framework": "./bin/gaia-framework.js"