## Summary - Delete `docs/zk/` directory - all useful content migrated to structured docs - Delete `docs/README.md` - `docs/index.md` is now the documentation root - Add `devpi` reference card and `use-pypi-proxy` how-to guide - Add maintenance notes to `indri` reference (sleep prevention, passwordless sudo) - Add iCloud Photos backup note to `borgmatic` reference - Rewrite `zk-docs` mise task to prime AI context with key docs instead of legacy cards - Update `CLAUDE.md` and `README.md` to remove zk references - Update `exploring-the-docs` with AI context priming section This completes the Diataxis documentation restructuring. All six phases are now done. ## Deployment and Testing - [x] Pre-commit hooks pass (including doc-links validator) - [ ] Build and deploy to docs.ops.eblu.me to verify rendering 🤖 Generated with [Claude Code](https://claude.com/claude-code) Reviewed-on: https://forge.ops.eblu.me/eblume/blumeops/pulls/97
19 lines
584 B
Bash
Executable file
19 lines
584 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/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[@]}"
|