## Summary - Add the troubleshooting how-to guide to the zk-docs script output - Placed after how-to/index.md to group how-to content together ## Deployment and Testing - [x] Verified script runs successfully with `mise run zk-docs` - [x] Changelog fragment added 🤖 Generated with [Claude Code](https://claude.com/claude-code) Reviewed-on: https://forge.ops.eblu.me/eblume/blumeops/pulls/99
20 lines
626 B
Bash
Executable file
20 lines
626 B
Bash
Executable file
#!/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/reference/index.md"
|
|
"$DOCS_DIR/how-to/index.md"
|
|
"$DOCS_DIR/how-to/troubleshooting.md"
|
|
"$DOCS_DIR/explanation/architecture.md"
|
|
"$DOCS_DIR/tutorials/index.md"
|
|
)
|
|
|
|
# Concatenate files with headers showing paths
|
|
# Pass through any args to bat (e.g., --style=header --color=never --decorations=always)
|
|
bat "$@" "${FILES[@]}"
|