Help us improve
Share bugs, ideas, or general feedback.
Share bugs, ideas, or general feedback.
Share bugs, ideas, or general feedback.
By ourines
Run large multi-step coding tasks as autonomous background agents using git worktrees and tmux, with commands to launch, monitor, resume, merge, and clean up sessions.
npx claudepluginhub ourines/worktree-task-plugin --plugin worktree-taskClean 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
Share bugs, ideas, or general feedback.
Own this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge.
Sign in to claimOwn this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge.
Sign in to claimBased on adoption, maintenance, documentation, and repository signals. Not a security audit or endorsement.
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
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.
Cross-session Save/Load, and Ultrawork inspired by oh-my-opencode with Ralph Loops
Autonomous session orchestrator for Claude Code - manages multi-phase development workflows
Helps Claude queue a development task from the current conversation using tsk add.
Research 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.
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