aidevops 3.13.1 → 3.13.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/VERSION +1 -1
- package/aidevops.sh +26 -8
- package/package.json +1 -1
- package/setup.sh +1 -1
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.13.
|
|
1
|
+
3.13.2
|
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.2
|
|
9
9
|
|
|
10
10
|
set -euo pipefail
|
|
11
11
|
|
|
@@ -1577,7 +1577,7 @@ _help_commands() {
|
|
|
1577
1577
|
echo " secret <cmd> Manage secrets (set/list/run/init/import/status)"
|
|
1578
1578
|
echo " config <cmd> Feature toggles (list/get/set/reset/path/help)"
|
|
1579
1579
|
echo " knowledge <cmd> Knowledge plane management (init/status/provision)"
|
|
1580
|
-
echo " campaign <cmd> Campaign plane
|
|
1580
|
+
echo " campaign <cmd> Campaign plane: init/provision/ls (P1) + new/list/status/archive (P2) + launch/promote (P6)"
|
|
1581
1581
|
echo " stats <cmd> LLM usage analytics (summary/models/projects/costs/trend)"
|
|
1582
1582
|
echo " tabby <cmd> Manage Tabby terminal profiles (sync/status/zshrc/help)"
|
|
1583
1583
|
echo " parent-status <N> Show decomposition state of parent-task issue #N (alias: ps)"
|
|
@@ -1667,11 +1667,17 @@ _help_detailed_sections() {
|
|
|
1667
1667
|
echo " aidevops knowledge list [--state s] [--kind k] # List all known sources"
|
|
1668
1668
|
echo " aidevops knowledge search <query> # Search sources (grep fallback)"
|
|
1669
1669
|
echo ""
|
|
1670
|
-
echo "Campaign Plane
|
|
1671
|
-
echo " aidevops campaign
|
|
1672
|
-
echo " aidevops campaign
|
|
1673
|
-
echo " aidevops campaign
|
|
1674
|
-
echo " aidevops campaign
|
|
1670
|
+
echo "Campaign Plane:"
|
|
1671
|
+
echo " aidevops campaign init [<path>] # Provision _campaigns/ directory contract (P1)"
|
|
1672
|
+
echo " aidevops campaign provision [<path>] # Re-provision / repair (idempotent, P1)"
|
|
1673
|
+
echo " aidevops campaign ls [--active|--launched|--all] [<path>] # Directory listing (P1)"
|
|
1674
|
+
echo " aidevops campaign new <name> [--channel <ch>] # Scaffold active/<id>/ (P2)"
|
|
1675
|
+
echo " aidevops campaign list # Show all campaigns (P2)"
|
|
1676
|
+
echo " aidevops campaign status <id> # Detailed dossier for a campaign (P2)"
|
|
1677
|
+
echo " aidevops campaign archive <id> # Move launched/<id> → archive/ (P2)"
|
|
1678
|
+
echo " aidevops campaign launch <id> # Move active/<id> → launched/, create templates (P6)"
|
|
1679
|
+
echo " aidevops campaign promote <id> [--results|--learnings] # Cross-plane promotion (P6)"
|
|
1680
|
+
echo " aidevops campaign feedback [<id>] # Surface _feedback/ insights for research (P6)"
|
|
1675
1681
|
echo ""
|
|
1676
1682
|
echo "LLM Stats:"
|
|
1677
1683
|
echo " aidevops stats # Show usage summary (last 30 days)"
|
|
@@ -2126,7 +2132,19 @@ main() {
|
|
|
2126
2132
|
init-routines) _dispatch_helper "init-routines-helper.sh" "init-routines-helper.sh" "$@" ;;
|
|
2127
2133
|
parent-status | ps) _dispatch_helper "parent-status-helper.sh" "parent-status-helper.sh" "$@" ;;
|
|
2128
2134
|
knowledge) _dispatch_helper "knowledge-helper.sh" "knowledge-helper.sh" "$@" ;;
|
|
2129
|
-
campaign | campaigns)
|
|
2135
|
+
campaign | campaigns)
|
|
2136
|
+
# P1 provisioning: init/provision/ls → campaigns-provision-helper.sh
|
|
2137
|
+
# P2+P6: all other subcommands → campaign-helper.sh
|
|
2138
|
+
local _camp_cmd="${1:-help}"
|
|
2139
|
+
case "$_camp_cmd" in
|
|
2140
|
+
init | provision | ls)
|
|
2141
|
+
_dispatch_helper "campaigns-provision-helper.sh" "campaigns-provision-helper.sh" "$@"
|
|
2142
|
+
;;
|
|
2143
|
+
*)
|
|
2144
|
+
_dispatch_helper "campaign-helper.sh" "campaign-helper.sh" "$@"
|
|
2145
|
+
;;
|
|
2146
|
+
esac
|
|
2147
|
+
;;
|
|
2130
2148
|
config | configure) _dispatch_config "$@" ;;
|
|
2131
2149
|
uninstall | remove) cmd_uninstall ;;
|
|
2132
2150
|
version | v | -v | --version) cmd_version ;;
|
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.2
|
|
16
16
|
#
|
|
17
17
|
# Quick Install:
|
|
18
18
|
# npm install -g aidevops && aidevops update (recommended)
|