aidevops 2.53.2 → 2.54.0

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.
Files changed (4) hide show
  1. package/README.md +49 -12
  2. package/VERSION +1 -1
  3. package/package.json +1 -1
  4. package/setup.sh +1 -1
package/README.md CHANGED
@@ -51,11 +51,13 @@ The result: AI agents that work *with* your development process, not around it.
51
51
 
52
52
  <!-- Release & Version Info -->
53
53
  [![GitHub release (latest by date)](https://img.shields.io/github/v/release/marcusquinn/aidevops)](https://github.com/marcusquinn/aidevops/releases)
54
+ [![npm version](https://img.shields.io/npm/v/aidevops)](https://www.npmjs.com/package/aidevops)
55
+ [![Homebrew](https://img.shields.io/badge/homebrew-marcusquinn%2Ftap-orange)](https://github.com/marcusquinn/homebrew-tap)
54
56
  [![GitHub Release Date](https://img.shields.io/github/release-date/marcusquinn/aidevops)](https://github.com/marcusquinn/aidevops/releases)
55
57
  [![GitHub commits since latest release](https://img.shields.io/github/commits-since/marcusquinn/aidevops/latest)](https://github.com/marcusquinn/aidevops/commits/main)
56
58
 
57
59
  <!-- Repository Stats -->
58
- [![Version](https://img.shields.io/badge/Version-2.53.0-blue)](https://github.com/marcusquinn/aidevops/releases)
60
+ [![Version](https://img.shields.io/badge/Version-2.54.0-blue)](https://github.com/marcusquinn/aidevops/releases)
59
61
  [![GitHub repo size](https://img.shields.io/github/repo-size/marcusquinn/aidevops?style=flat&color=blue)](https://github.com/marcusquinn/aidevops)
60
62
  [![Lines of code](https://img.shields.io/badge/Lines%20of%20Code-18%2C000%2B-brightgreen)](https://github.com/marcusquinn/aidevops)
61
63
  [![GitHub language count](https://img.shields.io/github/languages/count/marcusquinn/aidevops)](https://github.com/marcusquinn/aidevops)
@@ -87,13 +89,34 @@ The result: AI agents that work *with* your development process, not around it.
87
89
 
88
90
  ## **Quick Start**
89
91
 
90
- **One-liner install** (fresh install or update):
92
+ ### Installation Options
93
+
94
+ **npm** (recommended - [verified provenance](https://docs.npmjs.com/generating-provenance-statements)):
95
+
96
+ ```bash
97
+ npm install -g aidevops
98
+ ```
99
+
100
+ **Bun** (fast alternative):
101
+
102
+ ```bash
103
+ bun install -g aidevops
104
+ ```
105
+
106
+ **Homebrew** (macOS/Linux):
91
107
 
92
108
  ```bash
93
- bash <(curl -fsSL https://raw.githubusercontent.com/marcusquinn/aidevops/main/setup.sh)
109
+ brew tap marcusquinn/tap
110
+ brew install aidevops
94
111
  ```
95
112
 
96
- Or manually:
113
+ **Direct from source** (aidevops.sh):
114
+
115
+ ```bash
116
+ bash <(curl -fsSL https://aidevops.sh/install)
117
+ ```
118
+
119
+ **Manual** (git clone):
97
120
 
98
121
  ```bash
99
122
  git clone https://github.com/marcusquinn/aidevops.git ~/Git/aidevops
@@ -116,13 +139,19 @@ git clone https://github.com/marcusquinn/aidevops.git ~/Git/aidevops
116
139
  **After installation, use the CLI:**
117
140
 
118
141
  ```bash
119
- aidevops status # Check what's installed
120
- aidevops update # Update to latest version
121
- aidevops init # Initialize aidevops in any project
122
- aidevops features # List available features
123
- aidevops uninstall # Remove aidevops
142
+ aidevops status # Check what's installed
143
+ aidevops update # Update framework + check registered projects
144
+ aidevops init # Initialize aidevops in any project
145
+ aidevops features # List available features
146
+ aidevops repos # List/add/remove registered projects
147
+ aidevops detect # Scan for unregistered aidevops projects
148
+ aidevops upgrade-planning # Upgrade TODO.md/PLANS.md to latest templates
149
+ aidevops update-tools # Check and update installed tools
150
+ aidevops uninstall # Remove aidevops
124
151
  ```
125
152
 
153
+ **Project tracking:** When you run `aidevops init`, the project is automatically registered in `~/.config/aidevops/repos.json`. Running `aidevops update` checks all registered projects for version updates.
154
+
126
155
  ### **Use aidevops in Any Project**
127
156
 
128
157
  Initialize **[aidevops](https://aidevops.sh)** features in any git repository:
@@ -1438,9 +1467,17 @@ bash .agent/scripts/setup-mcp-integrations.sh all
1438
1467
  **Get Started:**
1439
1468
 
1440
1469
  ```bash
1441
- bash <(curl -fsSL https://raw.githubusercontent.com/marcusquinn/aidevops/main/setup.sh)
1442
- ```
1470
+ # npm (recommended)
1471
+ npm install -g aidevops
1472
+
1473
+ # Bun (fast alternative)
1474
+ bun install -g aidevops
1443
1475
 
1444
- Or: `git clone https://github.com/marcusquinn/aidevops.git ~/Git/aidevops && ~/Git/aidevops/setup.sh`
1476
+ # Homebrew
1477
+ brew tap marcusquinn/tap && brew install aidevops
1478
+
1479
+ # Direct from source
1480
+ bash <(curl -fsSL https://aidevops.sh/install)
1481
+ ```
1445
1482
 
1446
1483
  **Transform your AI assistant into a powerful infrastructure management tool with seamless access to all your servers and services.**
package/VERSION CHANGED
@@ -1 +1 @@
1
- 2.53.2
1
+ 2.54.0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "aidevops",
3
- "version": "2.53.2",
3
+ "version": "2.54.0",
4
4
  "description": "AI DevOps Framework - AI-assisted development workflows, code quality, and deployment automation",
5
5
  "type": "module",
6
6
  "main": "index.js",
package/setup.sh CHANGED
@@ -3,7 +3,7 @@
3
3
  # AI Assistant Server Access Framework Setup Script
4
4
  # Helps developers set up the framework for their infrastructure
5
5
  #
6
- # Version: 2.53.0
6
+ # Version: 2.54.0
7
7
  #
8
8
  # Quick Install (one-liner):
9
9
  # bash <(curl -fsSL https://aidevops.dev/install)