By ourines
Run large coding tasks like major refactors or new services in the background using git worktrees and tmux sessions with Claude Code agents, then monitor, resume, merge, and clean up autonomously.
Clean up a completed worktree task
Show help for worktree-task plugin
Launch a new background worktree task
Merge a feature branch into current branch
Rebase current branch onto a feature branch
Own this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimOwn this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimBased on adoption, maintenance, documentation, and repository signals. Not a security audit or endorsement.
Manage large coding tasks using git worktrees and background agent sessions. Spawns autonomous Claude Code or Codex instances that run independently, freeing your main session.
claude --dangerously-skip-permissions)--codex: Quick switch to Codex CLI--agent-cmd: Custom agent command# Launch a new task (auto-recovery enabled by default)
/worktree-task:launch "Implement user authentication with OAuth2"
# Launch with Codex instead of Claude
/worktree-task:launch --codex "Refactor database layer"
# Launch without auto-recovery
/worktree-task:launch --no-monitor "Quick fix task"
# Check status of all tasks
/worktree-task:status
# Check specific task
/worktree-task:status my-task
# Resume interrupted task manually
/worktree-task:resume my-task
# Cleanup completed task
/worktree-task:cleanup my-task --keep-worktree
# Merge feature branch (run from target branch)
/worktree-task:merge feature-branch
# Rebase current branch onto feature branch
/worktree-task:rebase feature-branch
# Show help
/worktree-task:help
Claude will automatically use this skill when you mention:
worktree-task/
├── .claude-plugin/
│ └── plugin.json # Plugin manifest
├── skills/
│ └── worktree-task/
│ └── SKILL.md # Skill definition
├── commands/
│ ├── launch.md # /worktree-task:launch
│ ├── status.md # /worktree-task:status
│ ├── resume.md # /worktree-task:resume
│ ├── cleanup.md # /worktree-task:cleanup
│ ├── merge.md # /worktree-task:merge
│ ├── rebase.md # /worktree-task:rebase
│ └── help.md # /worktree-task:help
├── hooks/
│ ├── hooks.json # Hook registrations
│ └── handlers/
│ ├── on-session-start.py # Update checker
│ ├── on-stop.py # Task completion notification
│ └── on-session-end.py # Session end handler
├── scripts/
│ ├── launch.py # Task launcher
│ ├── status.py # Status checker
│ ├── resume.py # Task resumer
│ ├── cleanup.py # Cleanup handler
│ ├── merge.py # Merge with conflict resolution
│ ├── rebase.py # Rebase with conflict resolution
│ └── monitor.py # Auto-recovery background monitor
└── references/
├── task-prompt-template.md
└── merge-rebase-prompt-template.md
/worktree-task:statusosascript on completion/failureTasks are tracked via tmux sessions and git worktrees - no separate database needed.
../worktree-task-<name>).monitor_cron.log in plugin directoryMIT
npx claudepluginhub ourines/worktree-task-plugin --plugin worktree-taskResearch topics and build a persistent knowledge base for Claude Code.
RSS/Atom/GitHub Issues 信息源聚合摘要,支持智能分类、评分筛选、关键词过滤
Batch promote open source projects to tech weeklies and communities. Auto-generate tailored submissions and create issues on multiple weeklies with one command.
Batch promote open source projects to tech weeklies and communities. Auto-generate tailored submissions and create issues on multiple weeklies with one command.
Parallel task orchestration for AI coding agents - dispatch work to Codex or Claude Code workers in isolated git workspaces
Git Worktree management for parallel agent execution - isolated working directories without Git conflicts
Cross-session Save/Load, and Ultrawork inspired by oh-my-opencode with Ralph Loops
Use when user wants to execute long-running tasks that require multiple sessions to complete. This skill manages task decomposition, progress tracking, and autonomous execution using Claude Code headless mode with auto-continuation. Trigger phrases: autonomous, long-running task, multi-session, 自主执行, 长时任务, autonomous skill.
Helps Claude queue a development task from the current conversation using tsk add.
MCP server for spawning and orchestrating multiple Claude Code sessions via iTerm2