Documentation Export: Auto-generated Knowledge Base#175
Open
grisuno wants to merge 1 commit into
Open
Conversation
|
PR Summary: Add auto-generated knowledge base documentation file (placeholder)
|
|
Reviewed up to commit:0d97f7cf67a6cbd295c8a75e8fe9eec2c92d63ef Additional SuggestionOthers- PR description states that a root-level KNOWLEDGE_BASE.md was added in addition to docs/KNOWLEDGE_BASE.md, but only docs/KNOWLEDGE_BASE.md is present in this diff. Confirm whether the root file should be included or update the PR description to reflect the actual changes.Few more points:
# Option 1: prevent generating empty files in readmenator_orchestrator.py
if not content.strip():
logger.info("Skipping KNOWLEDGE_BASE.md generation: no content")
return
with open(output_path, "w", encoding="utf-8") as f:
f.write(content)# Option 2: guard in CI to avoid committing empty docs
if [ ! -s "docs/KNOWLEDGE_BASE.md" ]; then
echo "docs/KNOWLEDGE_BASE.md is empty; failing build."
exit 1
fi |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Automated documentation export generated on 2026-07-12 08:19:42.
This PR adds
KNOWLEDGE_BASE.mdto the root anddocs/KNOWLEDGE_BASE.md.Each run replaces this branch (and closes any previous PR using the same head), so only the latest snapshot is open at any time.
Generated by
readmenator_orchestrator.py.