blumeops/mise-tasks/zk-docs

24 lines
804 B
Text
Raw Normal View History

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