mirror of
https://github.com/SuperClaude-Org/SuperClaude_Framework.git
synced 2025-12-29 16:16:08 +00:00
- Core configuration files (CLAUDE.md, RULES.md, PERSONAS.md, MCP.md) - 17 slash commands for specialized workflows - 25 shared YAML resources for advanced configurations - Installation script for global deployment - 9 cognitive personas for specialized thinking modes - MCP integration patterns for intelligent tool usage - Token economy and ultracompressed mode support 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
28 lines
732 B
YAML
28 lines
732 B
YAML
# Checkpoint System
|
|
|
|
```yaml
|
|
Create:
|
|
Tag: git tag checkpoint/<type>-$(date +%Y%m%d-%H%M%S)
|
|
Stash: git stash push -m "checkpoint-<operation>-<timestamp>"
|
|
Manifest: .claude/checkpoints/manifest.yml
|
|
Summary: .claudedocs/summaries/checkpoint-<type>-<timestamp>.md
|
|
|
|
Triggers:
|
|
Auto: Destructive|Refactor|Migration|Permissions|Deploy
|
|
Manual: User request|Risky ops|Experiments
|
|
|
|
Types: feature|fix|refactor|migrate|deploy|manual
|
|
|
|
Rollback:
|
|
Full: git reset --hard <checkpoint>
|
|
Selective: git checkout <checkpoint> -- <files>
|
|
Incremental: git revert <commits>
|
|
Stash: git stash pop
|
|
|
|
Process:
|
|
- Verify checkpoint exists
|
|
- Check working tree
|
|
- Confirm w/ user
|
|
- Create pre-rollback checkpoint
|
|
- Execute & verify
|
|
``` |