From 2fad37f500523165fec1eb331e11704f81846f51 Mon Sep 17 00:00:00 2001 From: Erich Blume Date: Sat, 14 Feb 2026 12:08:22 -0800 Subject: [PATCH] Add missing doc index files to zk-docs context priming Adds docs/index.md, explanation/explanation.md, how-to/plans/plans.md, and how-to/plans/completed/completed.md so AI sessions get full awareness of all doc sections and in-flight plans. Co-Authored-By: Claude Opus 4.6 --- mise-tasks/zk-docs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/mise-tasks/zk-docs b/mise-tasks/zk-docs index 8294c92..040898b 100755 --- a/mise-tasks/zk-docs +++ b/mise-tasks/zk-docs @@ -8,9 +8,13 @@ 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" "$DOCS_DIR/reference/reference.md" "$DOCS_DIR/how-to/how-to.md" "$DOCS_DIR/how-to/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" "$DOCS_DIR/tutorials/tutorials.md" )