一键导入
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 职业分类
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.
| 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