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 CHANGED
@@ -553,7 +553,7 @@ The single source of truth for project settings at `_gaia/_config/global.yaml`:
553
553
 
554
554
  ```yaml
555
555
  framework_name: "GAIA"
556
- framework_version: "1.1.1"
556
+ framework_version: "1.1.2"
557
557
 
558
558
  user_name: "your-name"
559
559
  project_name: "your-project"
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.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
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gaia-framework",
3
- "version": "1.1.1",
3
+ "version": "1.1.2",
4
4
  "description": "GAIA — Generative Agile Intelligence Architecture installer",
5
5
  "bin": {
6
6
  "gaia-framework": "./bin/gaia-framework.js"