sun_summarize
Summarize chat sessions into structured .mdc files using -sun command. Analyze conversations, capture key insights, and save summaries in Chinese (default) or English for efficient review.
Instructions
Summarize current session and save as .mdc file when -sun command is used. Use -sun for Chinese or -sun en for English
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| context | No | Optional: Additional context about the session | |
| functionality | No | Optional: Main functionality or topic of the session | |
| language | No | Language for the summary: zh for Chinese (default), en for English | |
| sessionContent | Yes | The session content to summarize (conversation messages) | 
Input Schema (JSON Schema)
{
  "properties": {
    "context": {
      "description": "Optional: Additional context about the session",
      "type": "string"
    },
    "functionality": {
      "description": "Optional: Main functionality or topic of the session",
      "type": "string"
    },
    "language": {
      "description": "Language for the summary: zh for Chinese (default), en for English",
      "enum": [
        "zh",
        "en"
      ],
      "type": "string"
    },
    "sessionContent": {
      "description": "The session content to summarize (conversation messages)",
      "type": "string"
    }
  },
  "required": [
    "sessionContent"
  ],
  "type": "object"
}