ワンクリックで
doey-nudge
Cascading nudge — wake stalled Claude instances across all teams. Use when workers seem stuck, idle, or unresponsive.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Cascading nudge — wake stalled Claude instances across all teams. Use when workers seem stuck, idle, or unresponsive.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Plan-first task creation — research, breakdown, risk analysis, then create tasks from approved plan. Usage: /doey-planned-task <goal>
Request a respawn of the current worker pane. Use when you need to "respawn me", "restart myself", "fresh context", or "reset my pane". Writes an atomic respawn request that kills the current Claude process and relaunches with a fresh context.
Discover scaffolding patterns in this project — structural fingerprints, accretion files, and refactoring patterns from git history. Returns candidates worth turning into templates.
Spawn the doey-scaffy MCP server so workers can drive the Scaffy template engine via tool calls. Loaded automatically when a task needs scaffy_run / scaffy_validate / scaffy_list / scaffy_audit / scaffy_discover / scaffy_new / scaffy_fmt or any scaffy:// resource.
Create a new scaffy template from existing files (--from-files) or interactively. Outputs to .doey/scaffy/templates/<name>.scaffy.
Manage persistent project tasks — list, add, transition, show, subtasks, decisions, notes. Tasks stored in .doey/tasks/ (survives reboot). Use when you need to "show tasks", "add a task", "mark a task done", "what are we working on", or "create a task".
| name | doey-nudge |
| description | Cascading nudge — wake stalled Claude instances across all teams. Use when workers seem stuck, idle, or unresponsive. |
cat $(tmux show-environment DOEY_RUNTIME 2>/dev/null | cut -d= -f2-)/session.env 2>/dev/null || trueSend a nudge cascade to Taskmaster, who will propagate it to all team Subtaskmasters and their Workers.
RD=$(tmux show-environment DOEY_RUNTIME 2>/dev/null | cut -d= -f2-)
source "${RD}/session.env"
_TM_PANE=$(grep '^TASKMASTER_PANE=' "${RD}/session.env" 2>/dev/null | cut -d= -f2-)
TASKMASTER_PANE="${SESSION_NAME}:${_TM_PANE:-1.0}"
NUDGE_MSG="Nudge cascade requested. Check all team Subtaskmasters and ensure work is progressing. For each team window W in [${TEAM_WINDOWS}], send-keys to W.0 telling the Subtaskmaster to check worker status files and nudge any stalled workers (BUSY with no status update in >120s). Use copy-mode -q before each send-keys. Fire and forget."
source "$HOME/.local/bin/doey-send.sh" 2>/dev/null || true
doey_send_verified "$TASKMASTER_PANE" "$NUDGE_MSG" && echo "Nudge sent to Taskmaster (${TASKMASTER_PANE})" || echo "Nudge delivery failed"