feat: add R2 file sharing tool with environment configuration

- Add share.ts CLI tool for uploading files to R2 with clipboard integration
- Configure R2 credentials across all shell environments (fish, bash, nushell)
- Add shell abbreviations for claude opus and share commands
- Refine claude-usage terminology (quota → limit, behind → under)
This commit is contained in:
2025-12-28 19:06:46 -06:00
parent d5cf784fe1
commit 7c36a0a1ce
6 changed files with 852 additions and 9 deletions
@@ -70,6 +70,12 @@ $env.MICRO_TRUECOLOR = 1
# OpenAI API Key
$env.OPENAI_API_KEY = "{{ dopplerProjectJson.OPENAI_CHATGPT_CLI }}"
# R2 configuration
$env.R2_ENDPOINT = "{{ dopplerProjectJson.R2_ENDPOINT }}"
$env.R2_ACCESS_KEY_ID = "{{ dopplerProjectJson.R2_ACCESS_KEY_ID }}"
$env.R2_SECRET_ACCESS_KEY = "{{ dopplerProjectJson.R2_SECRET_ACCESS_KEY }}"
$env.R2_BUCKET = "{{ dopplerProjectJson.R2_BUCKET }}"
# Initialize PATH as a list for easier manipulation
$env.PATH = ($env.PATH | split row (char esep))