aidevops 2.60.0 → 2.60.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 +30 -13
- 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)
|
|
@@ -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
|
-
**
|
|
1147
|
+
**Recommended: [Worktrunk](https://worktrunk.dev)** (`wt`) - Git worktree management with shell integration, CI status, and PR links:
|
|
1148
1148
|
|
|
1149
1149
|
```bash
|
|
1150
|
-
#
|
|
1151
|
-
|
|
1152
|
-
#
|
|
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
|
-
#
|
|
1155
|
-
|
|
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
|
-
|
|
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
|
|
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
|
-
|
|
1195
|
-
|
|
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.
|
|
1
|
+
2.60.1
|
package/aidevops.sh
CHANGED
package/package.json
CHANGED
package/setup.sh
CHANGED