# Credentials with Max plan OAuth authentication.
#
# Usage:
#   python -m agentrelay.run_graph graph.yaml --credentials credentials-oauth.yaml
#
# The oauth path points to Claude Code's native credentials file.
# Each container gets its own writable copy for token refresh.

token_tiers:
  read_only:
    GH_TOKEN: ghp_readonly_xxxx
  standard:
    GH_TOKEN: ghp_standard_yyyy
  elevated:
    GH_TOKEN: ghp_elevated_zzzz

anthropic:
  max_plan:
    type: oauth
    path: ~/.claude/.credentials.json
