Added goose doc map md file for goose agent to find relevant doc easily. (#6598)

This commit is contained in:
Lifei Zhou
2026-01-22 08:49:26 +11:00
committed by GitHub
parent 78d0f44067
commit 69d2f8c92a
8 changed files with 295 additions and 92 deletions
+12
View File
@@ -0,0 +1,12 @@
#!/bin/bash
# Verify that the docs map was generated in the build output
BUILD_DIR="${1:-build}"
DOCS_MAP_FILE="goose-docs-map.md"
if [ ! -f "$BUILD_DIR/$DOCS_MAP_FILE" ]; then
echo "Error: $DOCS_MAP_FILE not found in $BUILD_DIR"
exit 1
fi
echo "$DOCS_MAP_FILE found in $BUILD_DIR"