docs(skill): add session checkpoint guidance#94
Open
vibe-cy wants to merge 1 commit into
Open
Conversation
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 free
to 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.
Problem
Frontend Slides has several human-in-the-loop decision points, such as content discovery, style selection, PPT extraction confirmation, delivery, and share/export choices. These decisions currently live only in the active agent conversation, so a resumed or interrupted task can lose user-approved context and ask repeated questions.
Solution
Add lightweight session checkpoint guidance to the skill workflow using
.frontend-slides/session.json. The checkpoint records compact, factual human decisions and generated artifacts across the main phases, while making clear that the file is only for agent resume and must never appear as slide content.Changes
.frontend-slides/session.jsonas a lightweight resume checkpoint.Testing
cmp -s SKILL.md plugins/frontend-slides/skills/frontend-slides/SKILL.mdbash -n scripts/deploy.sh scripts/export-pdf.shPYTHONPYCACHEPREFIX=/tmp/frontend_slides_pycache python3 -m py_compile scripts/extract-pptx.pyNotes for Reviewer
This is intentionally documentation-only and keeps the current zero-dependency workflow unchanged. The checkpoint is a small skill-level contract for preserving human decisions across interrupted agent runs, not a new runtime state machine.