gaia-framework 1.1.1 → 1.1.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 +1 -1
- package/gaia-install.sh +8 -2
- package/package.json +1 -1
package/README.md
CHANGED
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.1.
|
|
9
|
+
readonly VERSION="1.1.2"
|
|
10
10
|
readonly GITHUB_REPO="https://github.com/J-louage/Gaia-framework.git"
|
|
11
11
|
readonly MANIFEST_REL="_gaia/_config/manifest.yaml"
|
|
12
12
|
|
|
@@ -414,7 +414,7 @@ cmd_update() {
|
|
|
414
414
|
)
|
|
415
415
|
|
|
416
416
|
step "Updating framework files..."
|
|
417
|
-
local updated=0 skipped=0
|
|
417
|
+
local updated=0 skipped=0 changed=0
|
|
418
418
|
|
|
419
419
|
for entry in "${update_targets[@]}"; do
|
|
420
420
|
local src_path="$source/_gaia/$entry"
|
|
@@ -425,6 +425,10 @@ cmd_update() {
|
|
|
425
425
|
continue
|
|
426
426
|
fi
|
|
427
427
|
|
|
428
|
+
# Show progress for each update target
|
|
429
|
+
local entry_label="${entry}"
|
|
430
|
+
[[ "$OPT_VERBOSE" != true ]] && detail "Processing: $entry_label"
|
|
431
|
+
|
|
428
432
|
if [[ -f "$src_path" ]]; then
|
|
429
433
|
# Single file
|
|
430
434
|
copy_with_backup "$src_path" "$dst_path" "$backup_dir"
|
|
@@ -439,6 +443,8 @@ cmd_update() {
|
|
|
439
443
|
fi
|
|
440
444
|
done
|
|
441
445
|
|
|
446
|
+
detail "Processed $updated file(s) across ${#update_targets[@]} targets"
|
|
447
|
+
|
|
442
448
|
# Update slash commands (add new ones, update existing with backup)
|
|
443
449
|
step "Updating slash commands..."
|
|
444
450
|
if [[ -d "$source/.claude/commands" ]]; then
|