aidevops 2.53.1 → 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.
- package/README.md +38 -12
- package/VERSION +1 -1
- package/package.json +1 -1
- 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
|
[](https://github.com/marcusquinn/aidevops/releases)
|
|
54
|
+
[](https://www.npmjs.com/package/aidevops)
|
|
55
|
+
[](https://github.com/marcusquinn/homebrew-tap)
|
|
54
56
|
[](https://github.com/marcusquinn/aidevops/releases)
|
|
55
57
|
[](https://github.com/marcusquinn/aidevops/commits/main)
|
|
56
58
|
|
|
57
59
|
<!-- Repository Stats -->
|
|
58
|
-
[](https://github.com/marcusquinn/aidevops/releases)
|
|
59
61
|
[](https://github.com/marcusquinn/aidevops)
|
|
60
62
|
[](https://github.com/marcusquinn/aidevops)
|
|
61
63
|
[](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
|
-
|
|
92
|
+
### Installation Options
|
|
93
|
+
|
|
94
|
+
**npm** (recommended - [verified provenance](https://docs.npmjs.com/generating-provenance-statements)):
|
|
91
95
|
|
|
92
96
|
```bash
|
|
93
|
-
|
|
97
|
+
npm install -g aidevops
|
|
94
98
|
```
|
|
95
99
|
|
|
96
|
-
|
|
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
|
|
120
|
-
aidevops update
|
|
121
|
-
aidevops init
|
|
122
|
-
aidevops features
|
|
123
|
-
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
|
-
|
|
1442
|
-
|
|
1462
|
+
# npm (recommended)
|
|
1463
|
+
npm install -g aidevops
|
|
1464
|
+
|
|
1465
|
+
# Homebrew
|
|
1466
|
+
brew tap marcusquinn/tap && brew install aidevops
|
|
1443
1467
|
|
|
1444
|
-
|
|
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.
|
|
1
|
+
2.53.3
|
package/package.json
CHANGED
package/setup.sh
CHANGED