@@ -11,6 +11,7 @@ Manage large coding tasks using git worktrees and background Claude Code session
1111- ** Merge** : Merge completed feature branches with automatic conflict resolution
1212- ** Rebase** : Rebase branches with automatic conflict resolution
1313- ** Alert** : macOS notifications when tasks complete or fail
14+ - ** Auto-Update Check** : Notifies you when plugin updates are available via ` /plugin ` commands
1415
1516## Usage
1617
@@ -30,10 +31,10 @@ Manage large coding tasks using git worktrees and background Claude Code session
3031/worktree-task:cleanup my-task --keep-worktree
3132
3233# Merge completed feature branch (run from target branch like dev/main)
33- /worktree-task:merge featureA
34+ /worktree-task:merge feature-branch
3435
3536# Rebase current branch onto feature branch
36- /worktree-task:rebase featureA
37+ /worktree-task:rebase feature-branch
3738```
3839
3940### Via Skill (automatic)
@@ -63,8 +64,9 @@ worktree-task/
6364├── hooks/
6465│ ├── hooks.json # Hook registrations
6566│ └── handlers/
66- │ ├── on-stop.py # Task completion notification
67- │ └── on-session-end.py
67+ │ ├── on-session-start.py # Update checker
68+ │ ├── on-stop.py # Task completion notification
69+ │ └── on-session-end.py # Session end handler
6870├── scripts/
6971│ ├── launch.py # Task launcher
7072│ ├── status.py # Status checker
@@ -102,3 +104,14 @@ Logs are stored in `~/.claude/worktree-tasks/logs/`.
102104- tmux
103105- git
104106- Python 3.8+
107+
108+ ## Support & Community
109+
110+ - ⭐ ** Star this repo** if you find it useful!
111+ - 🐛 [ Report issues] ( https://github.com/ourines/worktree-task-plugin/issues )
112+ - 💡 [ Request features] ( https://github.com/ourines/worktree-task-plugin/issues/new )
113+ - 🐦 Follow [ @user_name] ( https://x.com/ourines_ ) for updates
114+
115+ ## License
116+
117+ MIT
0 commit comments