ワンクリックで
journey
Create session learning logs that persist institutional memory across Claude Code sessions.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Create session learning logs that persist institutional memory across Claude Code sessions.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
| name | journey |
| updated | "2026-02-20T00:00:00.000Z" |
| description | Create session learning logs that persist institutional memory across Claude Code sessions. |
| user-invocable | true |
| allowed-tools | Read, Write, Glob, Bash |
Create or read session learning logs that persist institutional memory across Claude Code sessions.
Use /journey when:
/journey {title}
Creates a new journey file with a summary of the current session.
/journey --list
Shows all existing journeys.
/journey --read {filename}
Reads a specific journey file.
/journey --recent
Shows the 5 most recent journeys.
Journeys are saved to .claude/journeys/ with naming: YYYY-MM-DD-{slug}.md
# Journey: {Title}
**Date:** YYYY-MM-DD
**Tags:** #tag1 #tag2 #tag3
## Summary
1-3 sentences describing what was accomplished and why it matters.
## What Was Done
1. **First major item**
- Details
- More details
2. **Second major item**
- Details
## Key Learnings
- **Learning 1**: Explanation with context
- **Learning 2**: Explanation with context
## Files Changed
| File | Change |
|------|--------|
| `path/to/file.ts` | Brief description |
## Patterns Discovered
### Pattern Name
\`\`\`code
// Example code showing the pattern
\`\`\`
## Decisions Made
| Decision | Rationale |
|----------|-----------|
| Choice made | Why it was made |
## Connected To
- Related skills, files, or future work
Common tags:
#bugfix - Bug fixes#feature - New features#refactor - Code restructuring#tooling - Build/dev tooling#performance - Performance work#meta - Claude Code/skills work#architecture - Architectural decisions#security - Security-related workJourneys create institutional memory that:
Unlike git commits (which track what changed), journeys track why and what was learned.
Run the build and intelligently fix errors with guardrails. Stops if fixes introduce more errors or the same error persists after 3 attempts.
Security and quality review of uncommitted changes. Checks for vulnerabilities, code smells, and best practice violations. Use before committing.
Context window conservation rules. Invoke when approaching context limits or before large tasks.
Deep reflection on the skill learning system itself. Analyzes what's working, what's stale, and proposes structural improvements. The meta-skill.
Deep security audit for web applications. Checks secrets, input validation, XSS, API security, and dependency vulnerabilities.
Pre-PR verification loop. Runs build, type check, lint, security audit, and debug statement scan. Use before creating PRs or merging.