From clickup-workflow
Attach to a running ClickUp agent's tmux session for real-time interaction.
npx claudepluginhub joshuarweaver/cascade-content-creation-misc-1 --plugin methuz-methuz-claude-marketplaceThis skill uses the workspace's default tool permissions.
Attach to a running ClickUp agent's tmux session for real-time interaction.
Creates isolated Git worktrees for feature branches with prioritized directory selection, gitignore safety checks, auto project setup for Node/Python/Rust/Go, and baseline verification.
Executes implementation plans in current session by dispatching fresh subagents per independent task, with two-stage reviews: spec compliance then code quality.
Dispatches parallel agents to independently tackle 2+ tasks like separate test failures or subsystems without shared state or dependencies.
Attach to a running ClickUp agent's tmux session for real-time interaction.
/clickup:attach <task_id>
task_id (required): The ClickUp task ID (e.g., 86ew43633)When this command is invoked:
When the user runs /clickup:attach, execute the following:
# Get task ID from arguments
TASK_ID="$ARGUMENTS"
if [ -z "$TASK_ID" ]; then
echo "Usage: /clickup:attach <task_id>"
echo ""
echo "Available ClickUp sessions:"
tmux ls 2>/dev/null | grep "clickup-" || echo " No active sessions"
exit 1
fi
SESSION="clickup-${TASK_ID}"
# Check if session exists
if ! tmux has-session -t "$SESSION" 2>/dev/null; then
echo "โ Session not found: $SESSION"
echo ""
echo "Available ClickUp sessions:"
tmux ls 2>/dev/null | grep "clickup-" || echo " No active sessions"
exit 1
fi
# Show session info
echo "๐ Attaching to session: $SESSION"
echo ""
echo "Controls:"
echo " โข Detach: Ctrl+B then D"
echo " โข Scroll: Ctrl+B then [ (q to exit scroll mode)"
echo " โข Kill: /clickup:kill $TASK_ID"
echo ""
# Attach
tmux attach -t "$SESSION"
If the project has the scripts/clickup directory:
cd "$(git rev-parse --show-toplevel 2>/dev/null || pwd)"
./scripts/clickup/tmux-attach.sh "$TASK_ID"
| Key | Action |
|---|---|
Ctrl+B then D | Detach (leave session running) |
Ctrl+B then [ | Enter scroll mode |
q | Exit scroll mode |
Ctrl+B then c | Create new window |
Ctrl+B then n | Next window |
Ctrl+B then p | Previous window |
# Attach to task 86ew43633
/clickup:attach 86ew43633
# List available sessions first
tmux ls | grep clickup-
/clickup:status - View all agent sessions/clickup:kill - Terminate an agent session/clickup:work - Start new agent sessions