aidevops 3.13.4 → 3.13.6
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/VERSION +1 -1
- package/aidevops.sh +12 -2
- package/package.json +1 -1
- package/setup.sh +1 -1
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.13.
|
|
1
|
+
3.13.6
|
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.13.
|
|
8
|
+
# Version: 3.13.6
|
|
9
9
|
|
|
10
10
|
set -euo pipefail
|
|
11
11
|
|
|
@@ -1578,7 +1578,7 @@ _help_commands() {
|
|
|
1578
1578
|
echo " secret <cmd> Manage secrets (set/list/run/init/import/status)"
|
|
1579
1579
|
echo " config <cmd> Feature toggles (list/get/set/reset/path/help)"
|
|
1580
1580
|
echo " knowledge <cmd> Knowledge plane management (init/status/provision)"
|
|
1581
|
-
echo " campaign <cmd> Campaign plane: init/provision/ls (P1) + new/list/status/archive (P2) + launch/promote (P6)"
|
|
1581
|
+
echo " campaign <cmd> Campaign plane: init/provision/ls (P1) + asset (P4) + new/list/status/archive (P2) + draft (P5) + launch/promote (P6)"
|
|
1582
1582
|
echo " stats <cmd> LLM usage analytics (summary/models/projects/costs/trend)"
|
|
1583
1583
|
echo " tabby <cmd> Manage Tabby terminal profiles (sync/status/zshrc/help)"
|
|
1584
1584
|
echo " parent-status <N> Show decomposition state of parent-task issue #N (alias: ps)"
|
|
@@ -1676,6 +1676,11 @@ _help_detailed_sections() {
|
|
|
1676
1676
|
echo " aidevops campaign list # Show all campaigns (P2)"
|
|
1677
1677
|
echo " aidevops campaign status <id> # Detailed dossier for a campaign (P2)"
|
|
1678
1678
|
echo " aidevops campaign archive <id> # Move launched/<id> → archive/ (P2)"
|
|
1679
|
+
echo " aidevops campaign asset add <file> [--target lib-brand|lib-swipe|campaign] # Ingest asset (P4)"
|
|
1680
|
+
echo " aidevops campaign asset list [--type image|video|audio|pdf|all] # List assets (P4)"
|
|
1681
|
+
echo " aidevops campaign asset preview <file> [--size 640] # Generate preview PNG (P4)"
|
|
1682
|
+
echo " aidevops campaign asset manifest <asset-id> # Show asset manifest entry (P4)"
|
|
1683
|
+
echo " aidevops campaign draft <id> --channel <ch> # AI-generated content draft (P5)"
|
|
1679
1684
|
echo " aidevops campaign launch <id> # Move active/<id> → launched/, create templates (P6)"
|
|
1680
1685
|
echo " aidevops campaign promote <id> [--results|--learnings] # Cross-plane promotion (P6)"
|
|
1681
1686
|
echo " aidevops campaign feedback [<id>] # Surface _feedback/ insights for research (P6)"
|
|
@@ -2135,12 +2140,17 @@ main() {
|
|
|
2135
2140
|
knowledge) _dispatch_helper "knowledge-helper.sh" "knowledge-helper.sh" "$@" ;;
|
|
2136
2141
|
campaign | campaigns)
|
|
2137
2142
|
# P1 provisioning: init/provision/ls → campaigns-provision-helper.sh
|
|
2143
|
+
# P4 asset binary: asset → campaign-asset-helper.sh
|
|
2138
2144
|
# P2+P6: all other subcommands → campaign-helper.sh
|
|
2139
2145
|
local _camp_cmd="${1:-help}"
|
|
2140
2146
|
case "$_camp_cmd" in
|
|
2141
2147
|
init | provision | ls)
|
|
2142
2148
|
_dispatch_helper "campaigns-provision-helper.sh" "campaigns-provision-helper.sh" "$@"
|
|
2143
2149
|
;;
|
|
2150
|
+
asset | assets)
|
|
2151
|
+
shift
|
|
2152
|
+
_dispatch_helper "campaign-asset-helper.sh" "campaign-asset-helper.sh" "$@"
|
|
2153
|
+
;;
|
|
2144
2154
|
*)
|
|
2145
2155
|
_dispatch_helper "campaign-helper.sh" "campaign-helper.sh" "$@"
|
|
2146
2156
|
;;
|
package/package.json
CHANGED
package/setup.sh
CHANGED
|
@@ -12,7 +12,7 @@ shopt -s inherit_errexit 2>/dev/null || true
|
|
|
12
12
|
# AI Assistant Server Access Framework Setup Script
|
|
13
13
|
# Helps developers set up the framework for their infrastructure
|
|
14
14
|
#
|
|
15
|
-
# Version: 3.13.
|
|
15
|
+
# Version: 3.13.6
|
|
16
16
|
#
|
|
17
17
|
# Quick Install:
|
|
18
18
|
# npm install -g aidevops && aidevops update (recommended)
|