This is a personal reference workflow for minimizing token usage while maintaining project continuity across Claude Code (Sonnet 4 with file access).
Claude loads CLAUDE.md automatically at session start.
| # /etc/caddy/Caddyfile | |
| { | |
| auto_https disable_redirects | |
| } | |
| :80 { | |
| respond "Hello from HTTP port 80" | |
| } |
| #!/usr/bin/env -S uv run --script | |
| # /// script | |
| # requires-python = ">=3.13" | |
| # dependencies = [ | |
| # "httpx>=0.28.1", | |
| # "rich>=13.9.4", | |
| # "sh>=2.2.2", | |
| # "python-decouple>=3.8", | |
| # ] |
| #!/usr/bin/env bun | |
| "use strict"; | |
| const fs = require("fs"); | |
| const { execSync } = require("child_process"); | |
| const path = require("path"); | |
| // ANSI color constants | |
| const c = { | |
| cy: '\033[36m', // cyan |
| #!/usr/bin/env bash | |
| # Modular Python installer with Docker fallback | |
| set -e | |
| # Help function | |
| halp() { | |
| cat << EOF | |
| Usage: $(basename "$0") [version] |
| #!/usr/bin/env -S uv run --script | |
| # /// script | |
| # requires-python = ">=3.13,<3.14" | |
| # dependencies = [ | |
| # "httpx>=0.28.1", | |
| # "python-decouple>=3.8", | |
| # "sh>=2.2.2", | |
| # ] | |
| # [tool.uv] |
| { | |
| "description": "Remap media keys for YouTube Music Desktop (ytmdesktop)", | |
| "manipulators": [ | |
| { | |
| "from": { "consumer_key_code": "play_or_pause" }, | |
| "to": [ | |
| { | |
| "key_code": "p", | |
| "modifiers": ["command", "option", "shift"] | |
| } |
| # Script: nvidia-error43-fixer.ps1 | |
| # Author: (C) 2018-2021 [email protected] (Converted to PowerShell by @pythoninthegrass) | |
| # Homepage: https://egpu.io/nvidia-error43-fixer | |
| param( | |
| [switch]$Force | |
| ) | |
| # Check if running as administrator | |
| function Test-Administrator { |
| [env] | |
| CFLAGS = "-I/opt/homebrew/include" | |
| LDFLAGS = "-L/opt/homebrew/lib" | |
| [settings] | |
| disable_backends = ["dotnet"] | |
| idiomatic_version_file_enable_tools = [] | |
| [settings.pipx] | |
| uvx = true |
| # BookStack API Configuration | |
| BOOKSTACK_BASE_URL= | |
| BOOKSTACK_API_TOKEN= | |
| BOOKSTACK_TIMEOUT=30000 | |
| # Server Configuration | |
| SERVER_NAME=bookstack-mcp-server | |
| SERVER_VERSION=1.0.0 | |
| SERVER_PORT=3000 |