aidevops 3.32.261 → 3.32.262
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/VERSION +1 -1
- package/aidevops.sh +13 -1
- package/package.json +1 -1
- package/setup.sh +1 -1
package/README.md
CHANGED
|
@@ -60,7 +60,7 @@ The result: an AI operations platform that manages projects across every busines
|
|
|
60
60
|
[](https://github.com/marcusquinn)
|
|
61
61
|
|
|
62
62
|
<!-- Release & Version Info -->
|
|
63
|
-
[](https://github.com/marcusquinn/aidevops/releases)
|
|
64
64
|
[](https://www.npmjs.com/package/aidevops)
|
|
65
65
|
[](https://github.com/marcusquinn/homebrew-tap)
|
|
66
66
|
[](https://github.com/marcusquinn/aidevops)
|
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.32.
|
|
1
|
+
3.32.262
|
package/aidevops.sh
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
# AI DevOps Framework CLI
|
|
6
6
|
# Usage: aidevops <command> [options]
|
|
7
7
|
#
|
|
8
|
-
# Version: 3.32.
|
|
8
|
+
# Version: 3.32.262
|
|
9
9
|
|
|
10
10
|
set -euo pipefail
|
|
11
11
|
|
|
@@ -1205,6 +1205,17 @@ _help_detailed_sections() {
|
|
|
1205
1205
|
echo " aidevops campaign promote <id> [--results|--learnings] # Cross-plane promotion (P6)"
|
|
1206
1206
|
echo " aidevops campaign feedback [<id>] # Surface _feedback/ insights for research (P6)"
|
|
1207
1207
|
echo ""
|
|
1208
|
+
echo "Performance Plane:"
|
|
1209
|
+
echo " aidevops performance init # Provision _performance/marketing/"
|
|
1210
|
+
echo " aidevops performance validate --adapter normalized --input <file>"
|
|
1211
|
+
echo " aidevops performance ingest --adapter normalized --input <file> [--dry-run]"
|
|
1212
|
+
echo " aidevops performance backfill --input <phase1.jsonl> [--dry-run]"
|
|
1213
|
+
echo " aidevops performance list [--source <source>|--subjects|--results]"
|
|
1214
|
+
echo " aidevops performance status [--json] # Coverage, freshness, quarantine"
|
|
1215
|
+
echo " aidevops performance reconcile --input <file> # Append owner decisions"
|
|
1216
|
+
echo " aidevops performance rebuild # Rebuild campaign summaries"
|
|
1217
|
+
echo " aidevops performance export --purpose measurement|audience --output <file>"
|
|
1218
|
+
echo ""
|
|
1208
1219
|
echo "LLM Stats:"
|
|
1209
1220
|
echo " aidevops stats # Show usage summary (last 30 days)"
|
|
1210
1221
|
echo " aidevops stats summary # Overall usage summary"
|
|
@@ -1962,6 +1973,7 @@ main() {
|
|
|
1962
1973
|
;;
|
|
1963
1974
|
esac
|
|
1964
1975
|
;;
|
|
1976
|
+
performance) _dispatch_helper "performance-helper.sh" "performance-helper.sh" "$@" ;;
|
|
1965
1977
|
reach) _dispatch_helper "reach-helper.sh" "reach-helper.sh" "$@" ;;
|
|
1966
1978
|
config | configure) _dispatch_config "$@" ;;
|
|
1967
1979
|
uninstall | remove) cmd_uninstall ;;
|
package/package.json
CHANGED
package/setup.sh
CHANGED
|
@@ -17,7 +17,7 @@ fi
|
|
|
17
17
|
# AI Assistant Server Access Framework Setup Script
|
|
18
18
|
# Helps developers set up the framework for their infrastructure
|
|
19
19
|
#
|
|
20
|
-
# Version: 3.32.
|
|
20
|
+
# Version: 3.32.262
|
|
21
21
|
#
|
|
22
22
|
# Quick Install:
|
|
23
23
|
# npm install -g aidevops && aidevops update (recommended)
|