ワンクリックで
wrap-up
End-of-session automation that creates a journey, evolves skills based on learnings, and updates the journey with evolutions.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
End-of-session automation that creates a journey, evolves skills based on learnings, and updates the journey with evolutions.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Scaffold a new Express API endpoint with controller, route (OpenAPI annotations), response type, and barrel exports.
Low-level Cardano utilities with @meshsdk/core-cst
Cardano transaction building with @meshsdk/transaction
Cardano wallet integration with @meshsdk/wallet
Scaffold a new cron job with in-process guard, env-configurable schedule, SyncStatus DB locking, and job registry wiring.
Scaffold a new Prisma database model with project conventions (snake_case mapping, BigInt for lovelace, timestamps, relations).
| name | wrap-up |
| version | 1.1.0 |
| created | "2026-02-02T00:00:00.000Z" |
| last-evolved | "2026-02-03T00:00:00.000Z" |
| evolution-count | 1 |
| feedback-count | 0 |
| description | End-of-session automation that creates a journey, evolves skills based on learnings, and updates the journey with evolutions. |
| argument-hint | ["title"] |
| user-invocable | true |
| allowed-tools | Read, Edit, Write, Glob, Grep, Bash |
Automated end-of-session workflow that:
/wrap-up {session title}
$0 - Session title describing the main work done (e.g., "Page Margins Feature")IMPORTANT: Before creating the journey, ALWAYS run these git commands to capture ALL changes from the session. In long sessions, relying on memory alone will miss changes.
Run these commands:
# Show all changed files (staged and unstaged)
git status
# Show detailed diff of all changes (staged and unstaged)
git diff HEAD
# If there are new untracked files, list them
git ls-files --others --exclude-standard
From this output, create a comprehensive list of:
DO NOT proceed to Step 2 until you have reviewed the git output. This ensures the journey captures everything, not just what's fresh in conversation context.
Using the file changes from Step 1 AND the conversation context, create a journey file at .claude/journeys/{date}-{slug}.md.
Include:
Use today's date: YYYY-MM-DD
Slug: lowercase, hyphenated version of title
Read all skills from .claude/skills/*/SKILL.md and compare against the journey learnings.
For each skill, check:
Create a list of skills that need updates with specific changes.
For each skill identified in Step 3:
SKILL.md.versions/{version}.mdAdd a new section to the journey documenting the skill evolutions:
## Skills Evolved
Based on learnings from this session, the following skills were updated:
| Skill | Version | Changes |
|-------|---------|---------|
| add-chart | 1.2.0 → 1.3.0 | Added data attributes documentation |
| theming | 1.0.0 → 1.1.0 | Added handle styling patterns |
After running /wrap-up Page Margins Feature:
✓ Gathered file changes from git:
- 12 files modified
- 3 files created
- 1 file deleted
✓ Created journey: .claude/journeys/2026-02-02-page-margins-feature.md
✓ Analyzed 9 skills for evolution opportunities
✓ Evolved 3 skills:
- add-dashboard: 1.0.0 → 2.0.0 (major - full feature parity)
- add-chart: 1.2.0 → 1.3.0 (minor - data attributes)
- theming: 1.0.0 → 1.1.0 (minor - handle styling)
✓ Updated journey with skill evolutions
| Journey Content | Skill Action |
|---|---|
| New component pattern | Add to architecture/patterns section |
| Bug fix with root cause | Add to gotchas/checklist |
| New feature implemented | Update feature documentation |
| Theme styling learned | Update theming patterns |
| New data attribute | Document in relevant skills |
| File | Action |
|---|---|
.claude/journeys/{date}-{slug}.md | Created |
.claude/skills/*/SKILL.md | Modified (evolved skills) |
.claude/skills/*/CHANGELOG.md | Modified |
.claude/skills/*/.versions/{version}.md | Created |