@ai-dev-methodologies/rlp-desk 0.3.5 → 0.3.6

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ai-dev-methodologies/rlp-desk",
3
- "version": "0.3.5",
3
+ "version": "0.3.6",
4
4
  "description": "Fresh-context iterative loops for Claude Code — autonomous task completion with independent verification",
5
5
  "scripts": {
6
6
  "postinstall": "node scripts/postinstall.js",
@@ -465,9 +465,19 @@ Remove:
465
465
  - `.claude/ralph-desk/memos/<slug>-escalation.md`
466
466
  Note: `logs/<slug>/self-verification-data.json` and `self-verification-report-NNN.md` are intentionally preserved across clean for historical comparison.
467
467
 
468
- If `--kill-session` is passed, also kill any tmux session matching `rlp-desk-<slug>-*`:
468
+ If `--kill-session` is passed, clean up ALL tmux artifacts:
469
469
  ```bash
470
+ # Kill rlp-desk tmux sessions
470
471
  tmux list-sessions -F '#{session_name}' 2>/dev/null | grep "^rlp-desk-<slug>-" | while read s; do tmux kill-session -t "$s"; done
472
+
473
+ # Kill split panes in current window (Worker/Verifier panes from --mode tmux)
474
+ # Find panes running claude/codex for this slug and kill them
475
+ for pane_id in $(tmux list-panes -F '#{pane_id}:#{pane_current_command}' 2>/dev/null | grep -i 'claude\|codex' | cut -d: -f1); do
476
+ tmux kill-pane -t "$pane_id" 2>/dev/null
477
+ done
478
+
479
+ # Kill any remaining claude/codex processes for this campaign
480
+ ps aux | grep -E "claude.*<slug>|codex.*<slug>" | grep -v grep | awk '{print $2}' | xargs kill 2>/dev/null
471
481
  ```
472
482
 
473
483
  ## No args or `help`