From assistant
Restores a previously saved task context by name or lists available ones for selection, displaying mental model, TODO list, related links, git branch, timestamp, and modified files.
npx claudepluginhub kriscard/kriscard-claude-plugins --plugin assistantRestore a previously saved task context to quickly resume work without rebuilding understanding. ## Task Selection If task name provided: If no task name, list available contexts and ask user to choose: Present list: ## Context Loading Read context file: Parse JSON and extract: - Task name - Timestamp (when saved) - Git branch - Mental model (problem, approach, reasoning) - Related links - TODO list - Modified files ## Context Display Present restored context in readable format: ``` Context Restored: purchase-modal-skeleton Saved: 2 hours ago (2026-01-12 10:30 AM) Branch: fea...
/loadRestores session context from .claude/session-cache.json, showing plan progress, TodoWrite tasks, git changes since save, and suggested next actions.
/context-restoreRestores project context semantically from vector storage using search, ranking, and rehydration. Supports full/incremental/diff modes with token budget and relevance threshold.
Share bugs, ideas, or general feedback.
Restore a previously saved task context to quickly resume work without rebuilding understanding.
If task name provided:
Restore: $ARGUMENTS
If no task name, list available contexts and ask user to choose:
ls -1 .claude/assistant/contexts/*.json | sed 's/.*\///' | sed 's/.json$//'
Present list:
Available contexts:
1. purchase-modal-skeleton (saved 2 hours ago)
2. payment-integration (saved yesterday)
3. fix-pagination-bug (saved 3 days ago)
Which context would you like to restore? (Enter number or name)
Read context file:
.claude/assistant/contexts/{task-name}.json
Parse JSON and extract:
Present restored context in readable format:
Context Restored: purchase-modal-skeleton
Saved: 2 hours ago (2026-01-12 10:30 AM)
Branch: feat/purchase-modal
Mental Model:
Problem: Building purchase modal skeleton with responsive design
Approach: Using ModalDrawer component for responsive behavior, separating mobile/desktop layouts
Reasoning: Need 2-step navigation on mobile, 3-column layout on desktop
Related Links:
1. Jira: GROW-2380 - Purchase Modal Skeleton
https://roofrapp.atlassian.net/browse/GROW-2380
2. PR #234: WIP: Purchase Modal Skeleton
https://github.com/org/repo/pull/234
3. Figma: Purchase Flow Design
https://figma.com/...
TODO (5 items remaining):
- [ ] Add mobile navigation state management
- [ ] Implement scroll tracking for step completion
- [ ] Add accessibility labels to navigation
- [ ] Write tests for mobile navigation
- [ ] Update README with component usage
Files Modified:
- src/components/PurchaseModal/PurchaseModal.tsx
- src/components/PurchaseModal/types.ts
- src/components/PurchaseModal/README.md