aidevops 2.53.2 → 2.53.3

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 +38 -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.53.3-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,28 @@ 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)):
91
95
 
92
96
  ```bash
93
- bash <(curl -fsSL https://raw.githubusercontent.com/marcusquinn/aidevops/main/setup.sh)
97
+ npm install -g aidevops
94
98
  ```
95
99
 
96
- Or manually:
100
+ **Homebrew** (macOS/Linux):
101
+
102
+ ```bash
103
+ brew tap marcusquinn/tap
104
+ brew install aidevops
105
+ ```
106
+
107
+ **Direct from source** (aidevops.sh):
108
+
109
+ ```bash
110
+ bash <(curl -fsSL https://aidevops.sh/install)
111
+ ```
112
+
113
+ **Manual** (git clone):
97
114
 
98
115
  ```bash
99
116
  git clone https://github.com/marcusquinn/aidevops.git ~/Git/aidevops
@@ -116,13 +133,17 @@ git clone https://github.com/marcusquinn/aidevops.git ~/Git/aidevops
116
133
  **After installation, use the CLI:**
117
134
 
118
135
  ```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
136
+ aidevops status # Check what's installed
137
+ aidevops update # Update framework + check registered projects
138
+ aidevops init # Initialize aidevops in any project
139
+ aidevops features # List available features
140
+ aidevops repos # List/add/remove registered projects
141
+ aidevops detect # Scan for unregistered aidevops projects
142
+ aidevops uninstall # Remove aidevops
124
143
  ```
125
144
 
145
+ **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.
146
+
126
147
  ### **Use aidevops in Any Project**
127
148
 
128
149
  Initialize **[aidevops](https://aidevops.sh)** features in any git repository:
@@ -1438,9 +1459,14 @@ bash .agent/scripts/setup-mcp-integrations.sh all
1438
1459
  **Get Started:**
1439
1460
 
1440
1461
  ```bash
1441
- bash <(curl -fsSL https://raw.githubusercontent.com/marcusquinn/aidevops/main/setup.sh)
1442
- ```
1462
+ # npm (recommended)
1463
+ npm install -g aidevops
1464
+
1465
+ # Homebrew
1466
+ brew tap marcusquinn/tap && brew install aidevops
1443
1467
 
1444
- Or: `git clone https://github.com/marcusquinn/aidevops.git ~/Git/aidevops && ~/Git/aidevops/setup.sh`
1468
+ # Direct from source
1469
+ bash <(curl -fsSL https://aidevops.sh/install)
1470
+ ```
1445
1471
 
1446
1472
  **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.53.3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "aidevops",
3
- "version": "2.53.2",
3
+ "version": "2.53.3",
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.53.3
7
7
  #
8
8
  # Quick Install (one-liner):
9
9
  # bash <(curl -fsSL https://aidevops.dev/install)