aui-agent-builder 0.1.87 → 0.1.89

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.
Files changed (2) hide show
  1. package/README.md +74 -0
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -562,6 +562,80 @@ aui chat --rest # REST only, no streaming
562
562
  | `AUI_AGENT_TOOLS_API_KEY` | Agent Settings API key (fallback auth) |
563
563
  | `AUI_API_WORKFLOW_KEY` | API Workflow key |
564
564
 
565
+ ## Local Development
566
+
567
+ To run the CLI from your local source code instead of the published npm package:
568
+
569
+ ```bash
570
+ cd aui-agent-builder
571
+ npm install
572
+ npm run build
573
+ npm link
574
+ ```
575
+
576
+ This creates a global `aui` symlink pointing to your local build. Any changes you make are reflected after running `npm run build` again.
577
+
578
+ To verify you're running the local version:
579
+
580
+ ```bash
581
+ which aui
582
+ # Should show a path inside your project, not a global npm path
583
+ ```
584
+
585
+ To switch back to the published version:
586
+
587
+ ```bash
588
+ npm uninstall -g aui-agent-builder
589
+ npm install -g aui-agent-builder
590
+ ```
591
+
592
+ ## Updating
593
+
594
+ ### Update Notifications
595
+
596
+ The CLI automatically checks for new versions once every 24 hours. When an update is available, a banner appears after command output:
597
+
598
+ ```
599
+ ╭──────────────────────────────────────────────╮
600
+ │ Update available: 0.1.86 → 0.1.87 │
601
+ │ Run: npm install -g aui-agent-builder │
602
+ ╰──────────────────────────────────────────────╯
603
+ ```
604
+
605
+ The check is non-blocking and never affects CLI performance. For Homebrew users, the banner shows `brew upgrade aui` instead.
606
+
607
+ ### Upgrade Command
608
+
609
+ Upgrade directly from the CLI:
610
+
611
+ ```bash
612
+ aui upgrade
613
+ ```
614
+
615
+ This automatically detects whether you installed via npm or Homebrew and runs the appropriate upgrade command.
616
+
617
+ ### Manual Upgrade
618
+
619
+ ```bash
620
+ # npm
621
+ npm install -g aui-agent-builder
622
+
623
+ # Homebrew
624
+ brew upgrade aui
625
+ ```
626
+
627
+ ### Disable Update Notifications
628
+
629
+ ```bash
630
+ # Environment variable
631
+ AUI_NO_UPDATE_CHECK=1 aui status
632
+
633
+ # Or use ecosystem-standard flag
634
+ NO_UPDATE_NOTIFIER=1 aui status
635
+ ```
636
+
637
+ Update notifications are also automatically suppressed in CI environments (`CI=true`) and when using `--quiet`, `--json`, or `--silent` flags.
638
+
565
639
  ## License
566
640
 
567
641
  Proprietary — Copyright (c) 2026 AUI. All rights reserved. See [LICENSE](./LICENSE).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "aui-agent-builder",
3
- "version": "0.1.87",
3
+ "version": "0.1.89",
4
4
  "description": "CLI for building, managing, and deploying AUI AI agent configurations",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",