8 lines
367 B
Bash
Executable file
8 lines
367 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
export LLM_CONFIGS="${LLM_CONFIGS:-$HOME/src/llm-configs}"
|
|
# shellcheck source=common.sh
|
|
source "$LLM_CONFIGS/openkknd2/scripts/common.sh"
|
|
openkknd2_bootstrap "${OPENKKND2_ROOT:-$HOME/src/openkknd2-jan}"
|
|
openkknd2_print_brief "mac-jan"
|
|
echo "Next: Jan Ops/Coder thread → paste brief; enable tools; stay under \$OPENKKND2_ROOT"
|