aidevops 2.60.0 → 2.60.2

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 CHANGED
@@ -57,7 +57,7 @@ The result: AI agents that work *with* your development process, not around it.
57
57
  [![GitHub commits since latest release](https://img.shields.io/github/commits-since/marcusquinn/aidevops/latest)](https://github.com/marcusquinn/aidevops/commits/main)
58
58
 
59
59
  <!-- Repository Stats -->
60
- [![Version](https://img.shields.io/badge/Version-2.59.0-blue)](https://github.com/marcusquinn/aidevops/releases)
60
+ [![Version](https://img.shields.io/badge/Version-2.60.2-blue)](https://github.com/marcusquinn/aidevops/releases)
61
61
  [![GitHub repo size](https://img.shields.io/github/repo-size/marcusquinn/aidevops?style=flat&color=blue)](https://github.com/marcusquinn/aidevops)
62
62
  [![Lines of code](https://img.shields.io/badge/Lines%20of%20Code-18%2C000%2B-brightgreen)](https://github.com/marcusquinn/aidevops)
63
63
  [![GitHub language count](https://img.shields.io/github/languages/count/marcusquinn/aidevops)](https://github.com/marcusquinn/aidevops)
@@ -1144,17 +1144,32 @@ See `.agent/scripts/commands/full-loop.md` for complete documentation.
1144
1144
 
1145
1145
  Work on multiple branches simultaneously without stashing or switching. Each branch gets its own directory.
1146
1146
 
1147
- **Quick usage:**
1147
+ **Recommended: [Worktrunk](https://worktrunk.dev)** (`wt`) - Git worktree management with shell integration, CI status, and PR links:
1148
1148
 
1149
1149
  ```bash
1150
- # Create worktree for a new branch
1151
- ~/.aidevops/agents/scripts/worktree-helper.sh add feature/my-feature
1152
- # Creates: ~/Git/aidevops-feature-my-feature/
1150
+ # Install (macOS/Linux)
1151
+ brew install max-sixty/worktrunk/wt && wt config shell install
1152
+ # Restart your shell for shell integration to take effect
1153
1153
 
1154
- # List all worktrees
1155
- ~/.aidevops/agents/scripts/worktree-helper.sh list
1154
+ # Create worktree + cd into it
1155
+ wt switch -c feature/my-feature
1156
+
1157
+ # Create worktree + start any AI CLI (-x runs command after switch)
1158
+ wt switch -c -x claude feature/ai-task
1159
+
1160
+ # List worktrees with CI status and PR links
1161
+ wt list
1162
+
1163
+ # Merge + cleanup (squash/rebase options)
1164
+ wt merge
1165
+ ```
1166
+
1167
+ **Fallback** (no dependencies):
1156
1168
 
1157
- # Clean up after merge
1169
+ ```bash
1170
+ ~/.aidevops/agents/scripts/worktree-helper.sh add feature/my-feature
1171
+ # Creates: ~/Git/{repo}-feature-my-feature/ (cd there manually)
1172
+ ~/.aidevops/agents/scripts/worktree-helper.sh list
1158
1173
  ~/.aidevops/agents/scripts/worktree-helper.sh clean
1159
1174
  ```
1160
1175
 
@@ -1162,11 +1177,11 @@ Work on multiple branches simultaneously without stashing or switching. Each bra
1162
1177
  - Run tests on one branch while coding on another
1163
1178
  - Compare implementations side-by-side
1164
1179
  - No context switching or stash management
1165
- - Each OpenCode session can work on a different branch
1180
+ - Each AI session can work on a different branch
1166
1181
 
1167
1182
  **Worktree-first workflow:** The pre-edit check now **enforces** worktrees as the default when creating branches, keeping your main directory on `main`. This prevents uncommitted changes from blocking branch switches and ensures parallel sessions don't inherit wrong branch state.
1168
1183
 
1169
- See `.agent/workflows/worktree.md` for the complete guide.
1184
+ See `.agent/workflows/worktree.md` for the complete guide and `.agent/tools/git/worktrunk.md` for Worktrunk documentation.
1170
1185
 
1171
1186
  ### Session Management - Parallel AI Sessions
1172
1187
 
@@ -1190,9 +1205,11 @@ opencode --non-interactive --prompt "Continue with feature X" &
1190
1205
  # New terminal tab (macOS)
1191
1206
  osascript -e 'tell application "Terminal" to do script "cd ~/Git/project && opencode"'
1192
1207
 
1193
- # Worktree-based (isolated branch)
1194
- ~/.aidevops/agents/scripts/worktree-helper.sh add feature/next-feature
1195
- cd ../project-feature-next-feature && opencode
1208
+ # Worktree-based (isolated branch) - recommended
1209
+ wt switch -c -x opencode feature/next-feature # Worktrunk: create + start AI CLI
1210
+ # Or fallback:
1211
+ # ~/.aidevops/agents/scripts/worktree-helper.sh add feature/next-feature
1212
+ # cd ~/Git/{repo}-feature-next-feature && opencode
1196
1213
  ```
1197
1214
 
1198
1215
  **Session handoff pattern:**
package/VERSION CHANGED
@@ -1 +1 @@
1
- 2.60.0
1
+ 2.60.2
package/aidevops.sh CHANGED
@@ -3,7 +3,7 @@
3
3
  # AI DevOps Framework CLI
4
4
  # Usage: aidevops <command> [options]
5
5
  #
6
- # Version: 2.59.0
6
+ # Version: 2.60.2
7
7
 
8
8
  set -euo pipefail
9
9
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "aidevops",
3
- "version": "2.60.0",
3
+ "version": "2.60.2",
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.59.0
6
+ # Version: 2.60.2
7
7
  #
8
8
  # Quick Install (one-liner):
9
9
  # bash <(curl -fsSL https://aidevops.dev/install)