aidevops 3.13.5 → 3.13.7

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 CHANGED
@@ -1 +1 @@
1
- 3.13.5
1
+ 3.13.7
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.5
8
+ # Version: 3.13.7
9
9
 
10
10
  set -euo pipefail
11
11
 
@@ -1568,6 +1568,7 @@ _help_commands() {
1568
1568
  echo " client-format Client request format alignment (extract/check/canary/monitor)"
1569
1569
  echo " opencode-sandbox Test OpenCode versions in isolation (install/run/check/clean)"
1570
1570
  echo " approve <cmd> Cryptographic issue/PR approval (setup/issue/pr/verify/status)"
1571
+ echo " circuit-breaker Supervisor circuit breaker (status/reset/check/trip) — alias: cb"
1571
1572
  echo " issue <cmd> Interactive issue ownership (claim/release/status/scan-stale)"
1572
1573
  echo " security [cmd] Full security assessment (posture + hygiene + supply chain)"
1573
1574
  echo " contributions External contributions inbox (bare: status | seed/scan/stop/restart/install/uninstall)"
@@ -1578,7 +1579,7 @@ _help_commands() {
1578
1579
  echo " secret <cmd> Manage secrets (set/list/run/init/import/status)"
1579
1580
  echo " config <cmd> Feature toggles (list/get/set/reset/path/help)"
1580
1581
  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)"
1582
+ echo " campaign <cmd> Campaign plane: init/provision/ls (P1) + asset (P4) + new/list/status/archive (P2) + draft (P5) + launch/promote (P6)"
1582
1583
  echo " stats <cmd> LLM usage analytics (summary/models/projects/costs/trend)"
1583
1584
  echo " tabby <cmd> Manage Tabby terminal profiles (sync/status/zshrc/help)"
1584
1585
  echo " parent-status <N> Show decomposition state of parent-task issue #N (alias: ps)"
@@ -1676,6 +1677,11 @@ _help_detailed_sections() {
1676
1677
  echo " aidevops campaign list # Show all campaigns (P2)"
1677
1678
  echo " aidevops campaign status <id> # Detailed dossier for a campaign (P2)"
1678
1679
  echo " aidevops campaign archive <id> # Move launched/<id> → archive/ (P2)"
1680
+ echo " aidevops campaign asset add <file> [--target lib-brand|lib-swipe|campaign] # Ingest asset (P4)"
1681
+ echo " aidevops campaign asset list [--type image|video|audio|pdf|all] # List assets (P4)"
1682
+ echo " aidevops campaign asset preview <file> [--size 640] # Generate preview PNG (P4)"
1683
+ echo " aidevops campaign asset manifest <asset-id> # Show asset manifest entry (P4)"
1684
+ echo " aidevops campaign draft <id> --channel <ch> # AI-generated content draft (P5)"
1679
1685
  echo " aidevops campaign launch <id> # Move active/<id> → launched/, create templates (P6)"
1680
1686
  echo " aidevops campaign promote <id> [--results|--learnings] # Cross-plane promotion (P6)"
1681
1687
  echo " aidevops campaign feedback [<id>] # Surface _feedback/ insights for research (P6)"
@@ -1690,6 +1696,17 @@ _help_detailed_sections() {
1690
1696
  echo " aidevops stats ingest # Parse new Claude JSONL log entries"
1691
1697
  echo " aidevops stats sync-budget # Sync to budget tracker (t1100)"
1692
1698
  echo ""
1699
+ echo "Supervisor Circuit Breaker (t1331):"
1700
+ echo " aidevops circuit-breaker # Show breaker state (alias: cb)"
1701
+ echo " aidevops circuit-breaker status # Show breaker state"
1702
+ echo " aidevops circuit-breaker reset # Manually reset (resumes worker dispatch)"
1703
+ echo " aidevops circuit-breaker check # Exit 0 if dispatch allowed, 1 if paused"
1704
+ echo " aidevops circuit-breaker trip # Manually trip (testing)"
1705
+ echo " aidevops cb reset # Short alias for reset"
1706
+ echo ""
1707
+ echo " When the breaker trips (auto-filed GH issue), copy/paste:"
1708
+ echo " aidevops circuit-breaker reset"
1709
+ echo ""
1693
1710
  _help_management_sections
1694
1711
  return 0
1695
1712
  }
@@ -2103,6 +2120,12 @@ main() {
2103
2120
  review-gate | review_gate) _dispatch_helper "review-gate-config-helper.sh" "review-gate-config-helper.sh" "$@" ;;
2104
2121
  secret | secrets) _dispatch_helper "secret-helper.sh" "secret-helper.sh" "$@" ;;
2105
2122
  approve) _dispatch_helper "approval-helper.sh" "approval-helper.sh" "$@" ;;
2123
+ circuit-breaker | circuit_breaker | cb)
2124
+ # Supervisor circuit breaker control (t1331). Bare invocation defaults to status.
2125
+ # Subcommands forward verbatim: check | status | record-failure | record-success | reset | trip | help
2126
+ [[ $# -eq 0 ]] && set -- status
2127
+ _dispatch_helper "circuit-breaker-helper.sh" "circuit-breaker-helper.sh" "$@"
2128
+ ;;
2106
2129
  issue) _dispatch_helper "interactive-session-helper.sh" "interactive-session-helper.sh" "$@" ;;
2107
2130
  signing) _dispatch_helper "signing-setup.sh" "signing-setup.sh" "$@" ;;
2108
2131
  contributions | contrib)
@@ -2135,12 +2158,17 @@ main() {
2135
2158
  knowledge) _dispatch_helper "knowledge-helper.sh" "knowledge-helper.sh" "$@" ;;
2136
2159
  campaign | campaigns)
2137
2160
  # P1 provisioning: init/provision/ls → campaigns-provision-helper.sh
2161
+ # P4 asset binary: asset → campaign-asset-helper.sh
2138
2162
  # P2+P6: all other subcommands → campaign-helper.sh
2139
2163
  local _camp_cmd="${1:-help}"
2140
2164
  case "$_camp_cmd" in
2141
2165
  init | provision | ls)
2142
2166
  _dispatch_helper "campaigns-provision-helper.sh" "campaigns-provision-helper.sh" "$@"
2143
2167
  ;;
2168
+ asset | assets)
2169
+ shift
2170
+ _dispatch_helper "campaign-asset-helper.sh" "campaign-asset-helper.sh" "$@"
2171
+ ;;
2144
2172
  *)
2145
2173
  _dispatch_helper "campaign-helper.sh" "campaign-helper.sh" "$@"
2146
2174
  ;;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "aidevops",
3
- "version": "3.13.5",
3
+ "version": "3.13.7",
4
4
  "description": "AI DevOps Framework - AI-assisted development workflows, code quality, and deployment automation",
5
5
  "type": "module",
6
6
  "bin": {
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.5
15
+ # Version: 3.13.7
16
16
  #
17
17
  # Quick Install:
18
18
  # npm install -g aidevops && aidevops update (recommended)