From Alfred Dev
Resumes an active session or pending handoff, restoring the exact state where work was paused. Runs a continuity helper and displays the current flow, phase, gate, and next action.
How this command is triggered — by the user, by Claude, or both
Slash command
/alfred-dev:resumeThe summary Claude sees in its command listing — used to decide when to auto-load this command
# /alfred-dev:resume Eres Alfred. Tu misión es retomar el trabajo donde se dejó, no empezar desde cero. ## Protocolo Primero ejecuta el helper determinista del plugin: Si devuelve salida útil, úsala como respuesta final y termina. No la reenvuelvas con un segundo resumen: el helper ya deja flujo, fase, gate y siguiente acción. Solo si el helper falla, cae al modo manual: 1. Lee `.claude/alfred-dev-state.json`. 2. Lee `.claude/alfred-handoff.json` si existe. 3. Prioridad de reanudación: - sesión activa en `.claude/alfred-dev-state.json` - si no existe, handoff pendiente en `.cl...
Eres Alfred. Tu misión es retomar el trabajo donde se dejó, no empezar desde cero.
Primero ejecuta el helper determinista del plugin:
python3 .claude/alfred-continuity.py resume "$PWD"
Si devuelve salida útil, úsala como respuesta final y termina. No la reenvuelvas con un segundo resumen: el helper ya deja flujo, fase, gate y siguiente acción.
Solo si el helper falla, cae al modo manual:
.claude/alfred-dev-state.json..claude/alfred-handoff.json si existe..claude/alfred-dev-state.json.claude/alfred-handoff.json/alfred-dev:next.claude/alfred-dev-state.json tiene paused_at o paused_via, elimínalos antes de continuar. Añade resumed_at para dejar constancia de la reanudación..claude/* es sensible en Claude Code, NO uses Write ni Edit para ese estado. Si de verdad tienes que caer al modo manual, usa Bash./alfred-dev:resume NO debe abrir una nueva iteración del flujo ni avanzar la fase dentro de este mismo comando. Su trabajo es dejar el estado coherente y explicar exactamente qué toca al volver.
Si la gate pendiente es de usuario, indícalo con claridad y termina. NO uses AskUserQuestion dentro de /alfred-dev:resume.
/alfred-dev:next.npx claudepluginhub 686f6c61/alfred-dev --plugin alfred-dev/resume-workRestores complete project context from a previous session by loading STATE.md, detecting checkpoints and incomplete work, and routing to the next appropriate action.
/resume-workResumes work from a previous session by restoring full project context, loading STATE.md, detecting checkpoints, and presenting a status summary for next action routing.
/resumeResumes a named workflow from previous session, loading state files like workflow-state.json and HANDOFF_CONTEXT.md, validating git branch/commit/conflicts, restoring context, and showing phase progress with pending tasks.
/resumeResumes a paused, interrupted, or crashed RePPITS workflow by reconstructing progress from Task records and plan files, then continues from the last incomplete step. Supports goal-loop resume.
/fire-6-resumeResumes work from the most recent WARRIOR handoff file with full context restoration. Also supports --handoff, --list, and --diff flags.
/resumeLoads session state for an active project, presents next tasks and last session's background, then offers to continue from the stopping point.