fix(docs): repoint example-app paths after the examples/basics move - #311
Open
Angiephoenix wants to merge 1 commit into
Open
fix(docs): repoint example-app paths after the examples/basics move#311Angiephoenix wants to merge 1 commit into
Angiephoenix wants to merge 1 commit into
Conversation
Angiephoenix
force-pushed
the
docs/repoint-example-app-paths
branch
from
August 5, 2026 20:49
b60b11b to
03ad5fe
Compare
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.
The example apps moved from
examples/basics/toexample-apps/, but the docsstill point at the old layout.
Ten example READMEs plus laravel's IMPLEMENTATION.md print
basics/<name>/intheir structure blocks, and expo's quick start says
cd basics/expo, whichfails. These aren't just local docs. example-processor.js reads every file in an
example directory, README first, and that markdown ships inside the skill
bundles.
.mdisn't in skip-patterns.yaml, sogrep -rn "basics/" --include="*.md" distreturned hits acrossdist/marketplace/plugins/... before this change. After it, nothing.
The root README tree was out of date in three ways:
examples/doesn't exist,the
basics/level doesn't exist, and it listed 7 examples where there are now35.
One extra: javascript-web's README pointed at
basics/javascript/. Thedirectory is
javascript-web, so the name needed updating along with theparent.
Two things I'm less sure about. I left
mcp-commands/out of the tree because Icouldn't find that directory anywhere in the repo. I also left out
scripts/,since it sits at the repo root rather than inside the examples. Happy to add
either back.