원클릭으로
summarize-session
Summarize the current session and generate reusable Claude rules, skills, or commands.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Summarize the current session and generate reusable Claude rules, skills, or commands.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
| name | summarize-session |
| description | Summarize the current session and generate reusable Claude rules, skills, or commands. |
At the end of a productive coding session, analyze the conversation to extract reusable patterns and generate Claude Code artifacts (rules, skills, commands) that can accelerate future work.
Review Session Activity
Identify Patterns
Rules Candidates (coding standards, project conventions):
Skills Candidates (multi-step workflows):
Commands Candidates (single-action shortcuts):
Generate Artifacts
For each identified pattern, create the appropriate artifact:
Rules → .claude/rules/<name>/RULE.md
---
name: rule-name
description: Brief description
---
# Rule Name
## When to Apply
...
## Guidelines
...
Skills → .claude/skills/<name>/SKILL.md
---
name: skill-name
description: Brief description
---
# Skill Name
## Instructions
1. Step 1
2. Step 2
...
Commands → .claude/commands/<name>.md
# Command Name
Description of what this command does.
## Steps
1. ...
2. ...
Validate Artifacts
Document Session Summary
## Session Summary
### Accomplished
- [List of completed tasks]
### Generated Artifacts
#### Rules
- `<rule-name>`: <description>
#### Skills
- `<skill-name>`: <description>
#### Commands
- `<command-name>`: <description>
### Next Steps
- [Recommendations for future work]
Identified Pattern: Multi-step process for adding adapters
Generated: Skill new-adapter
Identified Pattern: TypeScript strict mode conventions
Generated: Rule typescript-conventions
Identified Pattern: Test-then-commit workflow
Generated: Command test-and-commit
Add support for a new AI tool with adapters, CLI, completion, and tests.
Update all project documentation after code changes.
Synchronize English README.md with Chinese README_ZH.md, maintaining content parity.
Analyze code changes and update KNOWLEDGE_BASE.md with architectural and feature changes.