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
| ★★★★★ | |
| 火の鳥 手塚治虫 | |
| MASTERキートン 浦沢直樹&勝鹿北星 | |
| 寄生獣 岩明均 | |
| 銃夢 木城ゆきと | |
| 藤子・F・不二雄のSF短編集 藤子・F・不二雄 | |
| 攻殻機動隊 士郎正宗 | |
| プラネテス 幸村誠 | |
| カムイ伝 白土三平 |
This file has been truncated, but you can view the full file.
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
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta http-equiv="content-type" content="text/html; charset=UTF-8" /> | |
| <script> | |
| L_NO_TOUCH = false; | |
| L_DISABLE_3D = false; |
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_model_switcher.py — Auto-switch Claude Code model based on token usage. | |
| Reads remaining tokens from Anthropic API, then writes the chosen model | |
| ("opus" or "sonnet") into ~/.claude/settings.json. | |
| Logic: | |
| - Use opus if token_remaining% > 30 AND token_remaining% >= time_remaining% | |
| - Otherwise use sonnet (to conserve tokens) |
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 | |
| # claude_tmux_runner.sh | |
| # | |
| # claude -p の代替。tmux経由でClaude CLIを駆動する。 | |
| # サブスク制限で --print が使えなくなった場合の代替手段。 | |
| # | |
| # Usage: | |
| # ./claude_tmux_runner.sh -p "prompt" # 新規セッション(--printと同等) | |
| # ./claude_tmux_runner.sh --resume SESSION_ID "prompt" # セッション継続 | |
| # ./claude_tmux_runner.sh --continue "prompt" # 既存tmuxセッションに追加送信 |
OlderNewer