Uh oh!
There was an error while loading. Please reload this page.
Add Resume button to plan inspection page - #232
Merged
Conversation
neoneyeforce-pushed
the
feature/resume-button-frontend
branch
2 times, most recently
from
March 10, 2026 01:28
379780a to
f8fbe7cCompareThe plan_resume MCP tool (PR #217) supports resuming failed plans without discarding completed intermediary files. This adds a Resume button next to Retry in the multi-user frontend so users can access this functionality from the UI. Frontend endpoint (/plan/resume): - Validates owner/admin auth, rejects non-failed state - Checks pipeline_version compatibility; redirects with error banner on mismatch instead of showing raw JSON - Preserves all artifacts (key difference from retry) - Sets resume=True, increments resume_count, archives billing entries - Does NOT stamp pipeline_version — leaves that to the worker after successful artifact validation - Adds EventItem audit trail Template (plan_iframe.html): - Shared form with formaction for Retry and Resume buttons - Resume only enabled in failed state (not stop_requested) - Tooltips explain the difference between the two actions - Inline error banner when resume is rejected due to version mismatch Worker fix (worker_plan_database/app.py): - Truncate progress_message to fit varchar(128) column, fixing a StringDataRightTruncation crash on pipeline version mismatch - Clear pipeline_version from parameters on mismatch rejection so subsequent frontend resume attempts are correctly blocked Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
neoneyeforce-pushed
the
feature/resume-button-frontend
branch
from
March 10, 2026 01:35
f8fbe7c to
41c1dcdCompareUh oh!
There was an error while loading. Please reload this page.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for freeto join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
plan_resumefunctionality (PR Add plan_resume MCP tool for mid-pipeline recovery #217) from the multi-user frontend/plan/resumePOST endpoint validates failed state, checks pipeline version compatibility, and creates an audit trail viaEventItem<form>withformaction, using one model_profile dropdown; Resume is only enabled when state isfailed(notstop_requested)Test plan
docker compose upand create a planfailedstate → verify both Retry and Resume are active🤖 Generated with Claude Code