aidevops 2.53.3 → 2.54.1
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 +19 -8
- package/VERSION +1 -1
- package/aidevops.sh +1 -1
- package/package.json +1 -1
- package/setup.sh +1 -1
package/README.md
CHANGED
|
@@ -57,7 +57,7 @@ The result: AI agents that work *with* your development process, not around it.
|
|
|
57
57
|
[](https://github.com/marcusquinn/aidevops/commits/main)
|
|
58
58
|
|
|
59
59
|
<!-- Repository Stats -->
|
|
60
|
-
[](https://github.com/marcusquinn/aidevops/releases)
|
|
61
61
|
[](https://github.com/marcusquinn/aidevops)
|
|
62
62
|
[](https://github.com/marcusquinn/aidevops)
|
|
63
63
|
[](https://github.com/marcusquinn/aidevops)
|
|
@@ -97,6 +97,12 @@ The result: AI agents that work *with* your development process, not around it.
|
|
|
97
97
|
npm install -g aidevops
|
|
98
98
|
```
|
|
99
99
|
|
|
100
|
+
**Bun** (fast alternative):
|
|
101
|
+
|
|
102
|
+
```bash
|
|
103
|
+
bun install -g aidevops
|
|
104
|
+
```
|
|
105
|
+
|
|
100
106
|
**Homebrew** (macOS/Linux):
|
|
101
107
|
|
|
102
108
|
```bash
|
|
@@ -133,13 +139,15 @@ git clone https://github.com/marcusquinn/aidevops.git ~/Git/aidevops
|
|
|
133
139
|
**After installation, use the CLI:**
|
|
134
140
|
|
|
135
141
|
```bash
|
|
136
|
-
aidevops status
|
|
137
|
-
aidevops update
|
|
138
|
-
aidevops init
|
|
139
|
-
aidevops features
|
|
140
|
-
aidevops repos
|
|
141
|
-
aidevops detect
|
|
142
|
-
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
|
|
143
151
|
```
|
|
144
152
|
|
|
145
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.
|
|
@@ -1462,6 +1470,9 @@ bash .agent/scripts/setup-mcp-integrations.sh all
|
|
|
1462
1470
|
# npm (recommended)
|
|
1463
1471
|
npm install -g aidevops
|
|
1464
1472
|
|
|
1473
|
+
# Bun (fast alternative)
|
|
1474
|
+
bun install -g aidevops
|
|
1475
|
+
|
|
1465
1476
|
# Homebrew
|
|
1466
1477
|
brew tap marcusquinn/tap && brew install aidevops
|
|
1467
1478
|
|
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
2.
|
|
1
|
+
2.54.1
|
package/aidevops.sh
CHANGED
package/package.json
CHANGED
package/setup.sh
CHANGED