This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python3 | |
| """ | |
| Claude Code session export to Obsidian. | |
| Called by SessionEnd hook — receives JSON on stdin with session_id, transcript_path, cwd. | |
| Creates an Obsidian note in Claude Sessions/ and appends a summary to today's daily note. | |
| """ | |
| import json | |
| import subprocess | |
| import sys |
