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-history: Interactive TUI to Browse & Resume Claude Code Sessions | |
| Arrow-key navigation, project filtering, prompt counts - never lose track | |
| of your AI pair programming conversations. | |
| Installation: | |
| mkdir -p ~/.claude/bin | |
| curl -o ~/.claude/bin/claude-history https://gist.githubusercontent.com/wrock/3b212e3f37fa3d1b458644dc1fb34bc8/raw/claude-history.py |
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
| <?php | |
| namespace Rockit\RockitTheme\Commands; | |
| use Symfony\Component\Console\Command\Command; | |
| use Symfony\Component\Console\Input\InputInterface; | |
| use Symfony\Component\Console\Output\OutputInterface; | |
| use Symfony\Component\Console\Style\SymfonyStyle; | |
| use TYPO3\CMS\Core\Core\Bootstrap; |