aidevops 3.29.34 → 3.29.36

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 CHANGED
@@ -58,11 +58,16 @@ The result: an AI operations platform that manages projects across every busines
58
58
  [![Copyright](https://img.shields.io/badge/Copyright-Marcus%20Quinn%202025--2026-blue.svg)](https://github.com/marcusquinn)
59
59
 
60
60
  <!-- Release & Version Info -->
61
- [![Version](https://img.shields.io/badge/Version-3.29.34-blue.svg)](https://github.com/marcusquinn/aidevops/releases)
61
+ [![Version](https://img.shields.io/badge/Version-3.29.36-blue.svg)](https://github.com/marcusquinn/aidevops/releases)
62
62
  [![npm version](https://img.shields.io/npm/v/aidevops)](https://www.npmjs.com/package/aidevops)
63
63
  [![Homebrew](https://img.shields.io/badge/homebrew-marcusquinn%2Ftap-orange)](https://github.com/marcusquinn/homebrew-tap)
64
64
  [![GitHub repository](https://img.shields.io/badge/github-repository-181717.svg?logo=github)](https://github.com/marcusquinn/aidevops)
65
65
 
66
+ <!-- Repository Metrics -->
67
+ [![Lines of code](docs/metrics/badges/loc.svg)](docs/metrics/repo-metrics.md)
68
+ [![Languages by lines of code](docs/metrics/badges/languages.svg)](docs/metrics/repo-metrics.md)
69
+ [![Dependencies](docs/metrics/badges/dependencies.svg)](docs/metrics/repo-metrics.md)
70
+
66
71
  <!-- Framework Specific -->
67
72
  [![Services Supported](https://img.shields.io/badge/Services%20Supported-30+-brightgreen.svg)](#comprehensive-service-coverage)
68
73
  [![AGENTS.md](https://img.shields.io/badge/AGENTS.md-Compliant-blue.svg)](https://agents.md/)
@@ -79,7 +84,7 @@ The result: an AI operations platform that manages projects across every busines
79
84
  - **Recommended runtime/models**: OpenCode + OpenAI GPT-5.5 / GPT-5.4 mini
80
85
  - **Entry**: `aidevops` CLI, `~/.aidevops/agents/AGENTS.md`
81
86
  - **Stack**: Bash scripts, TypeScript (Bun), MCP servers
82
- - **Recent focus**: OpenCode control-plane safety, mobile simulator testing, self-hosted runner operations, and pulse/worker diagnostics
87
+ - **Recent focus**: OpenCode control-plane safety, local repo metrics, mobile simulator testing, self-hosted runner operations, and pulse/worker diagnostics
83
88
 
84
89
  ### Key Commands
85
90
 
@@ -88,6 +93,7 @@ The result: an AI operations platform that manages projects across every busines
88
93
  - `aidevops auto-update` - Automatic update polling (enable/disable/status)
89
94
  - `aidevops secret` - Manage secrets (gopass encrypted, AI-safe)
90
95
  - `aidevops security` - Full security assessment (posture, secrets, supply chain)
96
+ - `aidevops metrics generate` - Generate local LOC, language, and dependency data for README badges or app about pages
91
97
  - `/onboarding` - Interactive setup wizard (in AI assistant)
92
98
  - `/design-artifact` - Route artifact-first UI, deck, email, poster, and mobile mockup work
93
99
  - `/open-design` - Manage the optional Open Design companion studio
package/VERSION CHANGED
@@ -1 +1 @@
1
- 3.29.34
1
+ 3.29.36
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.29.34
8
+ # Version: 3.29.36
9
9
 
10
10
  set -euo pipefail
11
11
 
@@ -1538,14 +1538,15 @@ main() {
1538
1538
  launch-worker | launch_worker) cmd_launch_worker "$@" ;;
1539
1539
  check-workflows | workflows) _dispatch_helper "check-workflows-helper.sh" "check-workflows-helper.sh" "$@" ;;
1540
1540
  sync-workflows) _dispatch_helper "sync-workflows-helper.sh" "sync-workflows-helper.sh" "$@" ;;
1541
+ metrics) _dispatch_helper "repo-metrics-helper.sh" "repo-metrics-helper.sh" "$@" ;;
1541
1542
  badges)
1542
1543
  # Badge management: render | check | sync | install (t2975)
1543
1544
  # Bare 'aidevops badges' with no subcommand shows a usage summary.
1544
1545
  # Subcommands:
1545
1546
  # render <slug> — render canonical badge block for a repo
1546
1547
  # check [--repo SLUG] [--json] [--verbose] — cross-repo drift check
1547
- # sync [--repo SLUG] [--apply] — inject badge block + install workflow
1548
- # install [--repo SLUG] [--apply] — install loc-badge caller workflow only
1548
+ # sync [--repo SLUG] [--apply] — inject badge block + generate metrics + install workflow
1549
+ # install [--repo SLUG] [--apply] — install repo metrics refresh workflow only
1549
1550
  local _badges_sub="${1:-help}"
1550
1551
  local _badges_check_h="badges-check-helper.sh"
1551
1552
  local _badges_sync_h="badges-sync-helper.sh"
@@ -1579,13 +1580,13 @@ main() {
1579
1580
  ;;
1580
1581
  help | --help | -h | "")
1581
1582
  echo ""
1582
- echo "aidevops badges — README badge block and LOC workflow management (t2975)"
1583
+ echo "aidevops badges — README badge block and repo metrics workflow management (t2975)"
1583
1584
  echo ""
1584
1585
  echo "Subcommands:"
1585
1586
  echo " render <slug> Print canonical badge block for a repo"
1586
1587
  echo " check [--repo SLUG] [--json] Detect badge drift across managed repos"
1587
- echo " sync [--repo SLUG] [--apply] Inject badge block + install LOC workflow"
1588
- echo " install [--repo SLUG] [--apply] Install loc-badge caller workflow only"
1588
+ echo " sync [--repo SLUG] [--apply] Inject badge block + generate metrics + install workflow"
1589
+ echo " install [--repo SLUG] [--apply] Install repo metrics refresh workflow only"
1589
1590
  echo ""
1590
1591
  echo "Options (check/sync/install):"
1591
1592
  echo " --repo SLUG Limit to a single repo"
@@ -1599,6 +1600,7 @@ main() {
1599
1600
  echo " aidevops badges render owner/repo # print badge block"
1600
1601
  echo " aidevops badges sync # dry-run sync across all repos"
1601
1602
  echo " aidevops badges sync --repo owner/r --apply # apply to a single repo"
1603
+ echo " aidevops metrics generate [PATH] # generate local docs/metrics artifacts"
1602
1604
  echo ""
1603
1605
  ;;
1604
1606
  *)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "aidevops",
3
- "version": "3.29.34",
3
+ "version": "3.29.36",
4
4
  "description": "AI DevOps Framework - AI-assisted development workflows, code quality, and deployment automation",
5
5
  "type": "module",
6
6
  "workspaces": [
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.29.34
15
+ # Version: 3.29.36
16
16
  #
17
17
  # Quick Install:
18
18
  # npm install -g aidevops && aidevops update (recommended)