docs(hosts): fix broken contributing-new-coding-agent link - #71
Merged
Conversation
There was a problem hiding this comment.
🟡 Changes recommended
zh-Hans 的镜像文档中仍存在同样缺少 .md 的相对链接,建议同步修复以保持一致性并避免同类检查在本地化文档上再次触发。
Once you've addressed the issues Copilot identified, you can request another Copilot review.
This review doesn't count toward merge requirements. Sign up for the private preview to control whether Copilot approvals count.
Pull request overview
本 PR 旨在修复文档中一个会触发 agent-lint / review-trigger 的本地引用错误:docs/docs/hosts/adapter-matrix.md 里“Contributing a Coding Agent Host”链接缺少 .md 扩展名,导致 missing-local-reference 被判定为断链(尽管 Docusaurus 可能可解析)。
Changes:
- 将
docs/docs/hosts/adapter-matrix.md中./contributing-new-coding-agent修正为./contributing-new-coding-agent.md,使其按pathExists语义可解析并消除错误级告警。
File summaries
| File | Description |
|---|---|
| docs/docs/hosts/adapter-matrix.md | 修复“Contributing a Coding Agent Host”相对链接的 .md 扩展名以通过本地引用检查 |
Review details
- Files reviewed: 1/1 changed files
- Comments generated: 1
- Review effort level: Lite
We're testing this review assessment. Please use 👍 or 👎 to tell us if it's correct.
| ## Contributing another host | ||
|
|
||
| Start with [Contributing a Coding Agent Host](./contributing-new-coding-agent). | ||
| Start with [Contributing a Coding Agent Host](./contributing-new-coding-agent.md). |
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.
Summary
The "Contributing another host" link in
docs/docs/hosts/adapter-matrix.mdpointed to./contributing-new-coding-agent(missing the.mdextension). The target file exists; agent-lint'smissing-local-referencecheck resolves references withpathExistsand does not auto-append the extension, so the link was reported as a broken local reference although Docusaurus would resolve it.Link now points to
./contributing-new-coding-agent.md.Why
Maintenance. The broken link surfaces as an error-level finding from
agent-lint/review-trigger(missing-local-reference), which blocks/poisons the harness's own review tooling on this repository.Traceability and Scope
Change Type
Test and Review Evidence
node scripts/review-trigger/cli.mjs --mode=stop --json(cwd=repo)Manual or visual evidence: link now points to existing
contributing-new-coding-agent.mdin the same directory.Risk and Recovery
AI Involvement