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.
#!/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" | |
# 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 nando4eva@ymail.com (Converted to PowerShell by @pythoninthegrass) | |
# Homepage: https://egpu.io/nvidia-error43-fixer | |
param( | |
[switch]$Force | |
) | |
# Check if running as administrator | |
function Test-Administrator { |
[settings] | |
disable_backends = ["dotnet"] | |
[settings.pipx] | |
uvx = true | |
[settings.python] | |
compile = true | |
[tools] |
# 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 |
config: | |
core.https_address: '[::]:8443' | |
networks: | |
- config: | |
ipv4.address: auto | |
ipv6.address: auto | |
description: "" | |
name: lxdbr0 | |
type: "" | |
project: default |