docs: fix broken relative links in documentation - #6489
Closed
ankitranjan-dsai wants to merge 1 commit into
Closed
Conversation
copybara-service Bot
pushed a commit
that referenced
this pull request
Jul 27, 2026
Merge #6489 Fixes four broken relative links in the documentation. PiperOrigin-RevId: 954428272
Collaborator
|
Thank you @ankitranjan-dsai for your contribution! 🎉 Your changes have been successfully imported and merged via Copybara in commit 096ecfc. Closing this PR as the changes are now in the main branch. |
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.
Description
Fixes four broken relative links in the documentation. Each target either does not exist at the referenced path or is malformed, so the link is dead as rendered on GitHub.
graph_schema_ddl_advisor.mdreferencedddl-reference.mdandfeature-parity.md; the files in that directory areddl_reference.mdandfeature_parity.md(underscores). This file ships inside the package as a BigQuery graph skill reference, so the dead paths affect agents consuming the skill, not just readers on GitHub.contributing/samples/workflows/node_as_tool/README.mdpointed atdocs/guides/workflows/workflows.md; the guide lives atdocs/guides/workflow/workflow/index.md. Sibling sample READMEs (multi_agent/task_sub_agent,managed_agent/*) already use this../../../../docs/guides/...form correctly.contributing/samples/integrations/jira_agent/README.mdhad a link target wrapped as(<(https://…)>), which renders the URL as literal text instead of a link.Documentation only — no source, behaviour, or public API changes.
Testing plan
No unit tests apply, as this changes only markdown link targets. Verified by resolving every relative markdown link in the repository against the filesystem before and after the change:
The two remaining are intentionally left alone:
.agents/skills/adk-sample-creator/SKILL.md:133—path/to/guide.mdis a placeholder in a template, not a real link.docs/guides/tools/mcp_tool/agent_to_mcp/index.md:139— points atcontributing/samples/mcp/mcp_serve_agent, which does not exist under any name. I did not want to guess which of the 14 samples incontributing/samples/mcp/was intended; happy to fix it in this PR if a maintainer confirms the right target.Each changed link was also confirmed to resolve to an existing file.