gaia-framework 1.56.0 → 1.56.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.
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.56.0-blue)]()
3
+ [![Framework](https://img.shields.io/badge/framework-v1.54.0-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)]()
@@ -460,7 +460,7 @@ The single source of truth is `_gaia/_config/global.yaml`:
460
460
 
461
461
  ```yaml
462
462
  framework_name: "GAIA"
463
- framework_version: "1.56.0"
463
+ framework_version: "1.56.2"
464
464
  user_name: "your-name"
465
465
  project_name: "your-project"
466
466
  ```
@@ -6,7 +6,7 @@
6
6
  // ─────────────────────────────────────────────────────────────────────────────
7
7
 
8
8
  const { execSync, execFileSync } = require("child_process");
9
- const { mkdtempSync, rmSync, existsSync, readFileSync, realpathSync } = require("fs");
9
+ const { mkdtempSync, rmSync, existsSync, readFileSync } = require("fs");
10
10
  const { join } = require("path");
11
11
  const { tmpdir } = require("os");
12
12
 
@@ -35,9 +35,9 @@ function findBash() {
35
35
 
36
36
  // 1. Try Git for Windows FIRST (preferred — simpler path mapping)
37
37
  const gitBashPaths = [
38
- path.join(process.env.ProgramFiles || "C:\\Program Files", "Git", "bin", "bash.exe"),
39
- path.join(process.env["ProgramFiles(x86)"] || "C:\\Program Files (x86)", "Git", "bin", "bash.exe"),
40
- path.join(process.env.LOCALAPPDATA || "", "Programs", "Git", "bin", "bash.exe"),
38
+ join(process.env.ProgramFiles || "C:\\Program Files", "Git", "bin", "bash.exe"),
39
+ join(process.env["ProgramFiles(x86)"] || "C:\\Program Files (x86)", "Git", "bin", "bash.exe"),
40
+ join(process.env.LOCALAPPDATA || "", "Programs", "Git", "bin", "bash.exe"),
41
41
  ];
42
42
 
43
43
  for (const p of gitBashPaths) {
@@ -145,11 +145,8 @@ Examples:
145
145
  function main(deps) {
146
146
  // Dependency injection for testability — defaults to real modules
147
147
  const _exec = deps && deps.execSync || execSync;
148
- const _execFile = deps && deps.execFileSync || execFileSync;
149
- const _mkdtemp = deps && deps.mkdtempSync || mkdtempSync;
150
148
  const _exists = deps && deps.existsSync || existsSync;
151
149
  const _join = deps && deps.join || join;
152
- const _tmpdir = deps && deps.tmpdir || tmpdir;
153
150
 
154
151
  const args = process.argv.slice(2);
155
152
 
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.56.0"
9
+ readonly VERSION="1.56.2"
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.56.0",
3
+ "version": "1.56.2",
4
4
  "description": "GAIA — Generative Agile Intelligence Architecture installer",
5
5
  "bin": {
6
6
  "gaia-framework": "./bin/gaia-framework.js"
@@ -15,7 +15,9 @@
15
15
  "test:shell": "node -e \"if(process.platform==='win32'){console.log('BATS tests skipped on Windows');process.exit(0)}\" && bats test/shell/",
16
16
  "test:all": "vitest run && node -e \"if(process.platform==='win32'){console.log('BATS tests skipped on Windows');process.exit(0)}\" && bats test/shell/",
17
17
  "test:tier2": "vitest run --config vitest.config.tier2.js",
18
- "fixtures:check": "node test/fixtures/sync-check.js"
18
+ "fixtures:check": "node test/fixtures/sync-check.js",
19
+ "lint": "eslint bin/**/*.js test/**/*.js",
20
+ "lint:fix": "eslint --fix bin/**/*.js test/**/*.js"
19
21
  },
20
22
  "keywords": [
21
23
  "gaia",
@@ -39,10 +41,13 @@
39
41
  "gaia-install.sh"
40
42
  ],
41
43
  "devDependencies": {
42
- "vitest": "^3.1.0",
44
+ "@eslint/js": "^9.39.4",
43
45
  "@vitest/coverage-v8": "^3.1.0",
44
- "js-yaml": "^4.1.0",
46
+ "csv-parse": "^5.6.0",
47
+ "eslint": "^9.39.4",
45
48
  "fast-xml-parser": "^5.2.0",
46
- "csv-parse": "^5.6.0"
49
+ "globals": "^17.4.0",
50
+ "js-yaml": "^4.1.0",
51
+ "vitest": "^3.1.0"
47
52
  }
48
53
  }