بنقرة واحدة
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