#!/bin/bash crumb_init() { CONFIG_FILE="$HOME/.crumbforest_config" if [[ ! -f "$CONFIG_FILE" ]]; then echo "❗ Config $CONFIG_FILE nicht gefunden!" exit 1 fi if [[ -z "$OPENROUTER_API_KEY" ]]; then echo "❗ Kein API Key gesetzt. Bitte: export OPENROUTER_API_KEY=..." exit 1 fi echo "🌲 Crumbforest Init: Config & API Key ok." }