docs: fix stale platform/ paths left over from monorepo extraction#194
Open
ayobamiseun wants to merge 1 commit into
Open
docs: fix stale platform/ paths left over from monorepo extraction#194ayobamiseun wants to merge 1 commit into
ayobamiseun wants to merge 1 commit into
Conversation
The GUI README still pointed every command at a platform/ directory that does not exist in this repo, so a fresh checkout could not follow it: setup_dev_env.sh, the venv, and the gui directory all resolve from the repo root. Also normalize platform/docs/ doc citations to docs/ in Python docstrings/comments, and correct the src-tauri doc comment that described the dev fallback as platform/.venv (the code resolves the repo-root .venv). Comment/doc changes only; no behavior change.
ayobamiseun
force-pushed
the
fix/stale-monorepo-paths
branch
from
July 26, 2026 14:01
8cdde21 to
706ba13
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.
What
Fixes stale
platform/path references left over from the monorepo extraction, across 9 files. Comment/doc changes only — no behavior change.surfaces/gui/README.md— every command referenced aplatform/directory that doesn't exist in this repo, so a fresh checkout could not follow the GUI README at all.platform/docs/FAKE-SLACK-SPEC.mdandplatform/docs/PERSONAS.mdnormalized todocs/...(tests/conftest.py,tests/test_fake_slack.py,coworker/connectors/adapters.py,coworker/connectors/senders.py,coworker/personas/__init__.py,coworker/testing/fake_slack/server.py,coworker/testing/fake_slack/__init__.py).surfaces/gui/src-tauri/src/lib.rs:57— the doc comment onserver_bin()said the dev fallback isplatform/.venv, but the code below resolves../../../.venvfromsrc-tauri, i.e. the repo-root.venv. Comment now matches the code.Before / after
Before (
surfaces/gui/README.md) — none of these paths exist:After — matches the top-level README and the actual repo layout (verified:
packaging/setup_dev_env.sh:11creates the venv at repo-root.venv):Verification
python -m py_compile.grep -rn "platform/"over*.py/*.mdnow returns zero stale path references.Note:
docs/FAKE-SLACK-SPEC.mdanddocs/PERSONAS.mdstill don't exist in this repo even at the corrected path — the citations now at least point at the right location; restoring those docs seems worth its own issue/PR.🤖 Generated with Claude Code