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
| #!/bin/bash | |
| # session-log - Pretty-print Claude Code JSONL session logs | |
| # | |
| # Usage: | |
| # session-log [OPTIONS] [FILE] | |
| # | |
| # Arguments: | |
| # FILE Path to a Claude Code .jsonl session file | |
| # If omitted, shows the most recent session | |
| # |
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 bash | |
| # Claude Code Termux/Android Patch Script | |
| # Fixes hooks not firing on Android by patching platform detection and temp paths | |
| # | |
| # Usage: | |
| # patch-termux-hooks # Apply all patches (recommended) | |
| # patch-termux-hooks --platform-only # Only platform detection patch | |
| # patch-termux-hooks --tmp-only # Only /tmp path patch | |
| # patch-termux-hooks --rollback # Restore from backup | |
| # patch-termux-hooks --help # Show this help |