Introduces provider files (`data/claude-profile/providers/*.yaml`) that bundle model ID, API base URL, API key source, and extra env vars. Phase 2.5 (provider selection) added between mode selection and launch, with a default derived from the mode's driver field so existing Anthropic usage is unchanged. Ships 5 providers: anthropic-haiku/sonnet/opus/opus-1m and minimax-sonnet. MiniMax token decrypted from agent-runtimes SOPS env, stored at ~/.claude-secrets/minimax-auth-token. Adding new providers = one YAML file, no script changes. 58 dryrun tests passing (up from 37). Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
49 lines
1.1 KiB
Plaintext
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 (Sonnet-class, pay-per-token, no subscription)
|
|
quick-minimax:
|
|
profile: oreillyit
|
|
mode: quick
|
|
provider: minimax-sonnet
|
|
project: small-scripts
|