docs: add 'The stack' narrative + fix site deploy (exclude planning docs)#14
Merged
Conversation
Adds an equal-billing 'how it fits together' section to the org landing page (templates -> modern-di -> httpware -> faststream-outbox -> lite-bootstrap), with sharp per-project pitches in new prose. Also excludes docs/superpowers/ (strategy specs + plans) from the site build. Those files contain repo-relative links that broke 'mkdocs build --strict' — and therefore the Pages deploy — since they were added, and they are internal planning docs that shouldn't be public. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
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.
Adds — "The stack" narrative
An equal-billing section on the org landing page telling the how-it-fits-together story for building a production Python service:
template →
modern-di→httpware→faststream-outbox→lite-bootstrap, each with a sharp pitch. Written as new prose so it does not drift from the canonical repo descriptions in the directory lists below it.Fixes — site deploy was broken
.github/workflows/deploy.ymlrunsmkdocs build --strict. The strategy spec + plans underdocs/superpowers/contain repo-relative links (e.g.CODE_OF_CONDUCT.md) that mkdocs can't resolve, so strict build — and the Pages deploy — has been failing since those docs were added (PR #13). They were also being published to modern-python.org, which is undesirable for internal planning docs.Fix: add
superpowers/toexclude_docs. The files stay in the repo (version-controlled planning) but are no longer built or published.Verified:
mkdocs build --strictpasses;site/superpowers/is gone; the stack section renders.