Resume work from previously saved context
Loads and displays working context saved from a previous session, verifies current state, and prepares to resume the task.
When to use
Use this when returning to a complex task after a break or session end to avoid losing context and progress.
How to invoke
manual via /futureme
/plugin marketplace add bryonjacob/aug/plugin install aug-core@augResume work from previous session using saved context.
Load working context saved by /notetoself to continue work without conversation compacting overhead.
# Generate filename for current directory
NOTETOSELF_FILE="/tmp/notetoself-$(pwd | sha256sum | cut -d' ' -f1 | head -c 16).md"
# Check if file exists
if [ ! -f "$NOTETOSELF_FILE" ]; then
echo "ā No saved context found for this directory"
echo "Expected: $NOTETOSELF_FILE"
exit 1
fi
cat "$NOTETOSELF_FILE"
Check that context is still valid:
# Optional: Show current git status if in a repo
git status 2>/dev/null || echo "Not in a git repo"
# Optional: List key files mentioned in context
# (based on what was in the note)
After reading the note, provide a brief summary:
š Resuming from previous session:
**Task:** [main task from note]
**Progress:** [key accomplishments]
**Next:** [immediate next steps]
**Current state verified:** [git branch, files exist, etc]
Ready to continue? [Ask user to confirm or provide updates]
Ask user if they want to keep or delete the note:
# After confirming resumption
read -p "Delete saved context? (y/n): " DELETE_NOTE
if [ "$DELETE_NOTE" = "y" ]; then
rm "$NOTETOSELF_FILE"
echo "ā
Cleaned up saved context"
else
echo "š Context preserved at: $NOTETOSELF_FILE"
fi
/tmp/notetoself-*.md files if needed