Files
small-scripts/data/claude-profile/presets.yaml.example
Paul O'Reilly 4cd9757abc feat(claude-profile): warn when non-Anthropic provider used with OAuth profile
Add a warning when ANTHROPIC_BASE_URL would be set but the active profile's
.credentials.json would override ANTHROPIC_API_KEY with subscription OAuth,
routing requests to Anthropic instead of the intended provider.

Fixes the MiniMax routing issue: use --profile minimax (~/.claude-minimax/,
no stored credentials) for non-Anthropic providers.

Update presets example to use profile: minimax for quick-minimax preset.
63 tests passing.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-04-23 18:33:39 +12:00

49 lines
1.1 KiB
Plaintext

# claude-profile presets — copy to $CLAUDE_CONFIG_DIR/presets.yaml and edit
#
# Each top-level key is a preset name. The `profile` field is required.
# Other fields override the mode's defaults.
#
# Usage: claude-profile --preset <name>
# A "deep work" session on the homelab cluster
deep-cluster:
profile: oreillyit
mode: deep
project: cluster-bootstrap
time_horizon: hours
async: yes
# A quick edit on the small-scripts repo (no questions, just launch)
quick-skills:
profile: oreillyit
mode: quick
project: small-scripts
# Overnight orchestration of container agents on the image-gen project
orch-overnight:
profile: oreillyit
mode: orch
project: ai-image-gen
time_horizon: overnight
autoloop: yes
# Cheap conversational session, no project
chat-only:
profile: oreillyit
mode: chat
# Hybrid session — Haiku driver with Opus subagents on call
hybrid-day:
profile: oreillyit
mode: hybrid
project: cluster-bootstrap
time_horizon: hours
async: yes
# Quick session via MiniMax — uses the minimax profile (no OAuth credentials)
quick-minimax:
profile: minimax
mode: quick
provider: minimax-sonnet
project: small-scripts