gaia-framework 1.27.2 → 1.27.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 +3 -3
- package/bin/gaia-framework.js +1 -1
- package/gaia-install.sh +2 -2
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# GAIA — Generative Agile Intelligence Architecture
|
|
2
2
|
|
|
3
|
-
[]()
|
|
4
4
|
[]()
|
|
5
5
|
[]()
|
|
6
6
|
[]()
|
|
@@ -90,7 +90,7 @@ npx gaia-framework init --yes ~/my-project
|
|
|
90
90
|
### Using the shell script
|
|
91
91
|
|
|
92
92
|
```bash
|
|
93
|
-
git clone https://github.com/
|
|
93
|
+
git clone https://github.com/jlouage/Gaia-framework.git
|
|
94
94
|
bash Gaia-framework/gaia-install.sh init ~/my-project
|
|
95
95
|
```
|
|
96
96
|
|
|
@@ -429,7 +429,7 @@ The single source of truth is `_gaia/_config/global.yaml`:
|
|
|
429
429
|
|
|
430
430
|
```yaml
|
|
431
431
|
framework_name: "GAIA"
|
|
432
|
-
framework_version: "1.27.
|
|
432
|
+
framework_version: "1.27.3"
|
|
433
433
|
user_name: "your-name"
|
|
434
434
|
project_name: "your-project"
|
|
435
435
|
```
|
package/bin/gaia-framework.js
CHANGED
|
@@ -10,7 +10,7 @@ const { mkdtempSync, rmSync, existsSync } = require("fs");
|
|
|
10
10
|
const { join } = require("path");
|
|
11
11
|
const { tmpdir } = require("os");
|
|
12
12
|
|
|
13
|
-
const REPO_URL = "https://github.com/
|
|
13
|
+
const REPO_URL = "https://github.com/jlouage/Gaia-framework.git";
|
|
14
14
|
const SCRIPT_NAME = "gaia-install.sh";
|
|
15
15
|
|
|
16
16
|
let tempDir = null;
|
package/gaia-install.sh
CHANGED
|
@@ -6,8 +6,8 @@ set -euo pipefail
|
|
|
6
6
|
# Installs, updates, validates, and reports on GAIA installations.
|
|
7
7
|
# ─────────────────────────────────────────────────────────────────────────────
|
|
8
8
|
|
|
9
|
-
readonly VERSION="1.27.
|
|
10
|
-
readonly GITHUB_REPO="https://github.com/
|
|
9
|
+
readonly VERSION="1.27.3"
|
|
10
|
+
readonly GITHUB_REPO="https://github.com/jlouage/Gaia-framework.git"
|
|
11
11
|
readonly MANIFEST_REL="_gaia/_config/manifest.yaml"
|
|
12
12
|
|
|
13
13
|
# Temp dir tracking for cleanup
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "gaia-framework",
|
|
3
|
-
"version": "1.27.
|
|
3
|
+
"version": "1.27.3",
|
|
4
4
|
"description": "GAIA — Generative Agile Intelligence Architecture installer",
|
|
5
5
|
"bin": {
|
|
6
6
|
"gaia-framework": "./bin/gaia-framework.js"
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
],
|
|
17
17
|
"repository": {
|
|
18
18
|
"type": "git",
|
|
19
|
-
"url": "https://github.com/
|
|
19
|
+
"url": "https://github.com/jlouage/Gaia-framework.git"
|
|
20
20
|
},
|
|
21
21
|
"license": "AGPL-3.0",
|
|
22
22
|
"engines": {
|