2026-01-15 11:25:02 -08:00
|
|
|
#!/usr/bin/env bash
|
2026-02-03 20:52:37 -08:00
|
|
|
#MISE description="Prime AI context with key BlumeOps documentation"
|
2026-01-15 11:25:02 -08:00
|
|
|
|
|
|
|
|
set -euo pipefail
|
|
|
|
|
|
2026-02-03 20:52:37 -08:00
|
|
|
DOCS_DIR="$(cd "$(dirname "$0")/.." && pwd)/docs"
|
2026-01-15 11:25:02 -08:00
|
|
|
|
2026-02-03 20:52:37 -08:00
|
|
|
# Key files for AI context priming, in order of importance
|
|
|
|
|
FILES=(
|
|
|
|
|
"$DOCS_DIR/tutorials/ai-assistance-guide.md"
|
2026-02-14 12:08:22 -08:00
|
|
|
"$DOCS_DIR/index.md"
|
2026-02-04 17:31:12 -08:00
|
|
|
"$DOCS_DIR/reference/reference.md"
|
|
|
|
|
"$DOCS_DIR/how-to/how-to.md"
|
2026-02-04 06:44:23 -08:00
|
|
|
"$DOCS_DIR/how-to/troubleshooting.md"
|
2026-02-14 12:08:22 -08:00
|
|
|
"$DOCS_DIR/how-to/plans/plans.md"
|
|
|
|
|
"$DOCS_DIR/how-to/plans/completed/completed.md"
|
|
|
|
|
"$DOCS_DIR/explanation/explanation.md"
|
2026-02-03 20:52:37 -08:00
|
|
|
"$DOCS_DIR/explanation/architecture.md"
|
2026-02-04 17:31:12 -08:00
|
|
|
"$DOCS_DIR/tutorials/tutorials.md"
|
2026-02-03 20:52:37 -08:00
|
|
|
)
|
2026-01-15 11:25:02 -08:00
|
|
|
|
2026-02-03 20:52:37 -08:00
|
|
|
# Concatenate files with headers showing paths
|
2026-01-15 11:25:02 -08:00
|
|
|
# Pass through any args to bat (e.g., --style=header --color=never --decorations=always)
|
2026-02-03 20:52:37 -08:00
|
|
|
bat "$@" "${FILES[@]}"
|