mirror of
https://github.com/SuperClaude-Org/SuperClaude_Framework.git
synced 2025-12-29 16:16:08 +00:00
Restored 26 additional commands from commitd4a17fc, bringing total from 5 to 30 commands. ## New Commands Added (26): - /analyze - Code and architecture analysis - /brainstorm - Structured brainstorming sessions - /build - Build and compilation workflows - /business-panel - Multi-expert business analysis - /cleanup - Code cleanup and refactoring - /design - System design and architecture - /document - Documentation generation - /estimate - Effort and time estimation - /explain - Code explanation - /git - Git operations and workflows - /help - Command help and usage - /implement - Implementation workflows - /improve - Code improvement suggestions - /index - Project indexing (alias for index-repo) - /load - Load saved sessions - /pm - Project management workflows - /reflect - Reflection and retrospectives - /save - Save current session - /select-tool - Tool selection guidance - /spawn - Spawn parallel tasks - /spec-panel - Multi-expert specification analysis - /task - Task management - /test - Testing workflows - /troubleshoot - Debugging and troubleshooting - /workflow - Custom workflow automation ## Documentation Updates: - Created docs/reference/commands-list.md with categorized command reference - Updated README.md with expandable 30-command list - Updated README-zh.md with Chinese translations - Updated README-ja.md with Japanese translations - Updated README-kr.md with Korean translations - Changed statistics: "3 plugins" → "30 commands" - Added command categories: Planning & Design, Development, Testing & Quality, Documentation, Version Control, Project Management, Research & Analysis, Utilities ## Files Changed: - 60 files changed, 7930 insertions(+), 267 deletions(-) - Added 26 commands to plugins/superclaude/commands/ - Added 26 commands to src/superclaude/commands/ - Created comprehensive command documentation Commands restored from:d4a17fc(superclaude/commands/) Total: 30 commands now available 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
93 lines
3.6 KiB
Markdown
93 lines
3.6 KiB
Markdown
---
|
|
name: save
|
|
description: "Session lifecycle management with Serena MCP integration for session context persistence"
|
|
category: session
|
|
complexity: standard
|
|
mcp-servers: [serena]
|
|
personas: []
|
|
---
|
|
|
|
# /sc:save - Session Context Persistence
|
|
|
|
## Triggers
|
|
- Session completion and project context persistence needs
|
|
- Cross-session memory management and checkpoint creation requests
|
|
- Project understanding preservation and discovery archival scenarios
|
|
- Session lifecycle management and progress tracking requirements
|
|
|
|
## Usage
|
|
```
|
|
/sc:save [--type session|learnings|context|all] [--summarize] [--checkpoint]
|
|
```
|
|
|
|
## Behavioral Flow
|
|
1. **Analyze**: Examine session progress and identify discoveries worth preserving
|
|
2. **Persist**: Save session context and learnings using Serena MCP memory management
|
|
3. **Checkpoint**: Create recovery points for complex sessions and progress tracking
|
|
4. **Validate**: Ensure session data integrity and cross-session compatibility
|
|
5. **Prepare**: Ready session context for seamless continuation in future sessions
|
|
|
|
Key behaviors:
|
|
- Serena MCP integration for memory management and cross-session persistence
|
|
- Automatic checkpoint creation based on session progress and critical tasks
|
|
- Session context preservation with comprehensive discovery and pattern archival
|
|
- Cross-session learning with accumulated project insights and technical decisions
|
|
|
|
## MCP Integration
|
|
- **Serena MCP**: Mandatory integration for session management, memory operations, and cross-session persistence
|
|
- **Memory Operations**: Session context storage, checkpoint creation, and discovery archival
|
|
- **Performance Critical**: <200ms for memory operations, <1s for checkpoint creation
|
|
|
|
## Tool Coordination
|
|
- **write_memory/read_memory**: Core session context persistence and retrieval
|
|
- **think_about_collected_information**: Session analysis and discovery identification
|
|
- **summarize_changes**: Session summary generation and progress documentation
|
|
- **TodoRead**: Task completion tracking for automatic checkpoint triggers
|
|
|
|
## Key Patterns
|
|
- **Session Preservation**: Discovery analysis → memory persistence → checkpoint creation
|
|
- **Cross-Session Learning**: Context accumulation → pattern archival → enhanced project understanding
|
|
- **Progress Tracking**: Task completion → automatic checkpoints → session continuity
|
|
- **Recovery Planning**: State preservation → checkpoint validation → restoration readiness
|
|
|
|
## Examples
|
|
|
|
### Basic Session Save
|
|
```
|
|
/sc:save
|
|
# Saves current session discoveries and context to Serena MCP
|
|
# Automatically creates checkpoint if session exceeds 30 minutes
|
|
```
|
|
|
|
### Comprehensive Session Checkpoint
|
|
```
|
|
/sc:save --type all --checkpoint
|
|
# Complete session preservation with recovery checkpoint
|
|
# Includes all learnings, context, and progress for session restoration
|
|
```
|
|
|
|
### Session Summary Generation
|
|
```
|
|
/sc:save --summarize
|
|
# Creates session summary with discovery documentation
|
|
# Updates cross-session learning patterns and project insights
|
|
```
|
|
|
|
### Discovery-Only Persistence
|
|
```
|
|
/sc:save --type learnings
|
|
# Saves only new patterns and insights discovered during session
|
|
# Updates project understanding without full session preservation
|
|
```
|
|
|
|
## Boundaries
|
|
|
|
**Will:**
|
|
- Save session context using Serena MCP integration for cross-session persistence
|
|
- Create automatic checkpoints based on session progress and task completion
|
|
- Preserve discoveries and patterns for enhanced project understanding
|
|
|
|
**Will Not:**
|
|
- Operate without proper Serena MCP integration and memory access
|
|
- Save session data without validation and integrity verification
|
|
- Override existing session context without proper checkpoint preservation |