Files
SuperClaude/.claude/commands/shared/checkpoint.yml
NomenAK bce31d52a8 Initial commit: SuperClaude v4.0.0 configuration framework
- 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>
2025-06-22 14:02:49 +02:00

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
```