docs: fix broken relative links across documentation

Fixes 46 broken relative links across 20 documentation files in docs/.

Changes:
- Added ../ prefix for root files (README.md, AGENTS.md)
- Removed ../ prefix for sibling docs files
- Removed dead links to non-existent files
- Fixed subdirectory paths

Based on PR #574 by chrisvaillancourt.

Co-Authored-By: Chris Vaillancourt <chrisvaillancourt@users.noreply.github.com>
This commit is contained in:
Steve Yegge
2025-12-16 00:46:08 -08:00
parent 8c45069228
commit 25ea1e7de3
20 changed files with 38 additions and 50 deletions

View File

@@ -12,7 +12,7 @@ Use the fully automated release script:
This does **everything**: version bump, tests, git tag, Homebrew update, and local installation.
See [scripts/README.md](scripts/README.md#releasesh--the-easy-button) for details.
See [scripts/README.md](../scripts/README.md#releasesh--the-easy-button) for details.
---
@@ -129,7 +129,7 @@ uv build
TWINE_USERNAME=__token__ TWINE_PASSWORD=pypi-... uv tool run twine upload dist/*
```
See [integrations/beads-mcp/PYPI.md](integrations/beads-mcp/PYPI.md) for detailed PyPI instructions.
See [integrations/beads-mcp/PYPI.md](../integrations/beads-mcp/PYPI.md) for detailed PyPI instructions.
### 3. Update Homebrew Formula
@@ -292,6 +292,6 @@ Set up API token at https://pypi.org/manage/account/token/ and use `__token__` a
## Related Documentation
- [CHANGELOG.md](CHANGELOG.md) - Release history
- [scripts/README.md](scripts/README.md) - Version bump script details
- [integrations/beads-mcp/PYPI.md](integrations/beads-mcp/PYPI.md) - Detailed PyPI guide
- [CHANGELOG.md](../CHANGELOG.md) - Release history
- [scripts/README.md](../scripts/README.md) - Version bump script details
- [integrations/beads-mcp/PYPI.md](../integrations/beads-mcp/PYPI.md) - Detailed PyPI guide