Files
small-scripts/data/claude-profile/presets.yaml.example
Paul O'Reilly 9e13b7f096 claude-profile: remove provider-yaml system, embed model config in profiles
Provider selection phase removed; Anthropic driver→model_id is now
hardcoded in the script and non-Anthropic profiles supply provider.env
(MODEL_ID, ANTHROPIC_BASE_URL, ANTHROPIC_API_KEY_FILE).

Test suite baseline changes 58 → 41 assertions: the 17 dropped
assertions covered the removed provider-yaml selection phase, not
retained behaviour.

Includes refactor-derived memory: decisions (provider architecture,
driver enforcement via --model), bash gotchas (read -rp under set -e,
never eval user config), process lessons.
2026-06-12 21:26:07 +12:00

45 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-anthropic
mode: deep
project: cluster-bootstrap
async: yes
# A quick edit on the small-scripts repo (no questions, just launch)
quick-skills:
profile: oreillyit-anthropic
mode: quick
project: small-scripts
# Overnight orchestration of container agents on the image-gen project
orch-overnight:
profile: oreillyit-anthropic
mode: orch
project: ai-image-gen
autoloop: yes
# Cheap conversational session, no project
chat-only:
profile: oreillyit-anthropic
mode: chat
# Hybrid session — Haiku driver with Opus subagents on call
hybrid-day:
profile: oreillyit-anthropic
mode: hybrid
project: cluster-bootstrap
async: yes
# Quick session via MiniMax — uses the minimax profile (provider.env embedded)
quick-minimax:
profile: oreillyit-minimax
mode: quick
project: small-scripts