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.
- package/README.md +49 -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,34 @@ 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)):
|
|
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
|
-
|
|
109
|
+
brew tap marcusquinn/tap
|
|
110
|
+
brew install aidevops
|
|
94
111
|
```
|
|
95
112
|
|
|
96
|
-
|
|
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
|
|
120
|
-
aidevops update
|
|
121
|
-
aidevops init
|
|
122
|
-
aidevops features
|
|
123
|
-
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
|
-
|
|
1442
|
-
|
|
1470
|
+
# npm (recommended)
|
|
1471
|
+
npm install -g aidevops
|
|
1472
|
+
|
|
1473
|
+
# Bun (fast alternative)
|
|
1474
|
+
bun install -g aidevops
|
|
1443
1475
|
|
|
1444
|
-
|
|
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.
|
|
1
|
+
2.54.0
|
package/package.json
CHANGED
package/setup.sh
CHANGED