gaia-framework 1.27.63 → 1.27.65
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 +2 -2
- package/gaia-install.sh +23 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# GAIA — Generative Agile Intelligence Architecture
|
|
2
2
|
|
|
3
|
-
[]()
|
|
4
4
|
[]()
|
|
5
5
|
[]()
|
|
6
6
|
[]()
|
|
@@ -448,7 +448,7 @@ The single source of truth is `_gaia/_config/global.yaml`:
|
|
|
448
448
|
|
|
449
449
|
```yaml
|
|
450
450
|
framework_name: "GAIA"
|
|
451
|
-
framework_version: "1.27.
|
|
451
|
+
framework_version: "1.27.65"
|
|
452
452
|
user_name: "your-name"
|
|
453
453
|
project_name: "your-project"
|
|
454
454
|
```
|
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.27.
|
|
9
|
+
readonly VERSION="1.27.65"
|
|
10
10
|
readonly GITHUB_REPO="https://github.com/jlouage/Gaia-framework.git"
|
|
11
11
|
readonly MANIFEST_REL="_gaia/_config/manifest.yaml"
|
|
12
12
|
|
|
@@ -362,7 +362,18 @@ cmd_init() {
|
|
|
362
362
|
fi
|
|
363
363
|
fi
|
|
364
364
|
|
|
365
|
-
# Step 8:
|
|
365
|
+
# Step 8: Create custom skills directory
|
|
366
|
+
step "Creating custom skills directory..."
|
|
367
|
+
if [[ "$OPT_DRY_RUN" == true ]]; then
|
|
368
|
+
detail "[dry-run] Would create: custom/skills/"
|
|
369
|
+
else
|
|
370
|
+
mkdir -p "$TARGET/custom/skills"
|
|
371
|
+
fi
|
|
372
|
+
if [[ -f "$source/custom/skills/README.md" ]]; then
|
|
373
|
+
copy_if_missing "$source/custom/skills/README.md" "$TARGET/custom/skills/README.md"
|
|
374
|
+
fi
|
|
375
|
+
|
|
376
|
+
# Step 9: Append GAIA entries to .gitignore
|
|
366
377
|
step "Updating .gitignore..."
|
|
367
378
|
local gitignore_block
|
|
368
379
|
gitignore_block="$(cat <<'GITIGNORE'
|
|
@@ -487,6 +498,16 @@ cmd_update() {
|
|
|
487
498
|
|
|
488
499
|
detail "Processed $updated file(s) across ${#update_targets[@]} targets"
|
|
489
500
|
|
|
501
|
+
# Ensure custom skills directory exists (user-owned, never overwritten)
|
|
502
|
+
if [[ "$OPT_DRY_RUN" == true ]]; then
|
|
503
|
+
[[ ! -d "$TARGET/custom/skills" ]] && detail "[dry-run] Would create: custom/skills/"
|
|
504
|
+
else
|
|
505
|
+
mkdir -p "$TARGET/custom/skills"
|
|
506
|
+
fi
|
|
507
|
+
if [[ -f "$source/custom/skills/README.md" ]]; then
|
|
508
|
+
copy_if_missing "$source/custom/skills/README.md" "$TARGET/custom/skills/README.md"
|
|
509
|
+
fi
|
|
510
|
+
|
|
490
511
|
# Update slash commands (add new ones, update existing with backup)
|
|
491
512
|
step "Updating slash commands..."
|
|
492
513
|
if [[ -d "$source/.claude/commands" ]]; then
|