Conversation
There was a problem hiding this comment.
🧪 PR Review is completed: The PR introduces a widespread typo (hhttps:// instead of https://) across multiple files, which will break external links, repository metadata, and URI parsing. Please correct these typos to ensure proper functionality.
Skipped files
DEVELOPMENT.md: Skipped file patternapps/kilocode-docs/docs/basic-usage/connecting-providers.md: Skipped file patternapps/kilocode-docs/docs/cli.md: Skipped file patternapps/kilocode-docs/docs/extending/contributing-to-kilo.md: Skipped file patternapps/kilocode-docs/docs/extending/development-environment.md: Skipped file patternapps/kilocode-docs/docs/faq.md: Skipped file patternapps/kilocode-docs/docs/features/custom-modes.md: Skipped file patternapps/kilocode-docs/docs/features/experimental/experimental-features.md: Skipped file patternapps/kilocode-docs/docs/features/shell-integration.md: Skipped file patternapps/kilocode-docs/docs/getting-started/installing.md: Skipped file patternapps/kilocode-docs/docs/jetbrains-troubleshooting.md: Skipped file patternapps/kilocode-docs/i18n/zh-CN/docusaurus-plugin-content-docs/current/basic-usage/connecting-providers.md: Skipped file patternapps/kilocode-docs/i18n/zh-CN/docusaurus-plugin-content-docs/current/extending/contributing-to-kilo.md: Skipped file patternapps/kilocode-docs/i18n/zh-CN/docusaurus-plugin-content-docs/current/extending/development-environment.md: Skipped file patternapps/kilocode-docs/i18n/zh-CN/docusaurus-plugin-content-docs/current/faq.md: Skipped file patternapps/kilocode-docs/i18n/zh-CN/docusaurus-plugin-content-docs/current/features/custom-modes.md: Skipped file patternapps/kilocode-docs/i18n/zh-CN/docusaurus-plugin-content-docs/current/features/experimental/experimental-features.md: Skipped file patternapps/kilocode-docs/i18n/zh-CN/docusaurus-plugin-content-docs/current/features/shell-integration.md: Skipped file patternapps/kilocode-docs/i18n/zh-CN/docusaurus-plugin-content-docs/current/getting-started/installing.md: Skipped file patternapps/kilocode-docs/i18n/zh-CN/docusaurus-theme-classic/footer.json: Skipped file patterncli/CHANGELOG.md: Skipped file patterncli/docs/PROVIDER_CONFIGURATION.md: Skipped file patterncli/package.dist.json: Skipped file patternwebview-ui/src/i18n/locales/ar/settings.json: Skipped file patternwebview-ui/src/i18n/locales/ca/settings.json: Skipped file patternwebview-ui/src/i18n/locales/cs/settings.json: Skipped file patternwebview-ui/src/i18n/locales/de/settings.json: Skipped file patternwebview-ui/src/i18n/locales/en/settings.json: Skipped file patternwebview-ui/src/i18n/locales/es/settings.json: Skipped file patternwebview-ui/src/i18n/locales/fr/settings.json: Skipped file patternwebview-ui/src/i18n/locales/hi/settings.json: Skipped file patternwebview-ui/src/i18n/locales/id/settings.json: Skipped file patternwebview-ui/src/i18n/locales/it/settings.json: Skipped file patternwebview-ui/src/i18n/locales/ja/settings.json: Skipped file patternwebview-ui/src/i18n/locales/ko/settings.json: Skipped file patternwebview-ui/src/i18n/locales/nl/settings.json: Skipped file patternwebview-ui/src/i18n/locales/pl/settings.json: Skipped file patternwebview-ui/src/i18n/locales/pt-BR/settings.json: Skipped file patternwebview-ui/src/i18n/locales/ru/settings.json: Skipped file patternwebview-ui/src/i18n/locales/th/settings.json: Skipped file patternwebview-ui/src/i18n/locales/tr/settings.json: Skipped file patternwebview-ui/src/i18n/locales/uk/settings.json: Skipped file patternwebview-ui/src/i18n/locales/vi/settings.json: Skipped file patternwebview-ui/src/i18n/locales/zh-CN/settings.json: Skipped file patternwebview-ui/src/i18n/locales/zh-TW/settings.json: Skipped file pattern
| if (answer === githubIssuesText) { | ||
| await vscode.env.openExternal(vscode.Uri.parse("https://github.com/MatterAIOrg/AxonCode/issues")) | ||
| await vscode.env.openExternal( | ||
| vscode.Uri.parse("hhttps://github.com/MatterAIOrg/Orbital-Extension/issues"), |
There was a problem hiding this comment.
🔴 Bug
Issue: The URL scheme is incorrectly typed as hhttps:// instead of https://. This will cause vscode.Uri.parse to create an invalid URI, and openExternal will fail to open the link.
Fix: Correct the typo to https://.
Impact: Ensures the GitHub issues link opens correctly.
| vscode.Uri.parse("hhttps://github.com/MatterAIOrg/Orbital-Extension/issues"), | |
| vscode.Uri.parse("https://github.com/MatterAIOrg/Orbital-Extension/issues"), |
src/package.json
Outdated
| "repository": { | ||
| "type": "git", | ||
| "url": "https://github.com/MatterAIOrg/AxonCode" | ||
| "url": "hhttps://github.com/MatterAIOrg/Orbital-Extension" |
There was a problem hiding this comment.
🔴 Bug
Issue: The repository URL contains a typo (hhttps://). This will break NPM/VSCode marketplace metadata links.
Fix: Correct the typo to https://.
Impact: Ensures the repository link is valid in the extension metadata.
| "url": "hhttps://github.com/MatterAIOrg/Orbital-Extension" | |
| "url": "https://github.com/MatterAIOrg/Orbital-Extension" |
| <p className="mb-4"> | ||
| {t("errorBoundary.reportText")}{" "} | ||
| <a href="https://github.com/MatterAIOrg/AxonCode/issues" target="_blank" rel="noreferrer"> | ||
| <a href="hhttps://github.com/MatterAIOrg/Orbital-Extension/issues" target="_blank" rel="noreferrer"> |
There was a problem hiding this comment.
🔴 Bug
Issue: The href attribute contains a typo (hhttps://). Clicking this link will result in an invalid URL error in the browser.
Fix: Correct the typo to https://.
Impact: Ensures the GitHub link works correctly for users reporting errors.
| <a href="hhttps://github.com/MatterAIOrg/Orbital-Extension/issues" target="_blank" rel="noreferrer"> | |
| <a href="https://github.com/MatterAIOrg/Orbital-Extension/issues" target="_blank" rel="noreferrer"> |
apps/kilocode-docs/src/constants.ts
Outdated
|
|
||
| // GitHub links | ||
| export const GITHUB_MAIN_REPO_URL = "https://github.com/MatterAIOrg/AxonCode" | ||
| export const GITHUB_MAIN_REPO_URL = "hhttps://github.com/MatterAIOrg/Orbital-Extension" |
There was a problem hiding this comment.
🔴 Bug
Issue: The constant GITHUB_MAIN_REPO_URL contains a typo (hhttps://). This will break all derived URLs that use this constant.
Fix: Correct the typo to https://.
Impact: Ensures all GitHub links in the docs app function correctly.
| export const GITHUB_MAIN_REPO_URL = "hhttps://github.com/MatterAIOrg/Orbital-Extension" | |
| export const GITHUB_MAIN_REPO_URL = "https://github.com/MatterAIOrg/Orbital-Extension" |
| i18nKey="settings:footer.feedback" | ||
| components={{ | ||
| githubLink: <VSCodeLink href="https://github.com/MatterAIOrg/AxonCode" />, | ||
| githubLink: <VSCodeLink href="hhttps://github.com/MatterAIOrg/Orbital-Extension" />, |
There was a problem hiding this comment.
🔴 Bug
Issue: The href attribute contains a typo (hhttps://). Clicking this link will result in an invalid URL error in the browser.
Fix: Correct the typo to https://.
Impact: Ensures the GitHub link works correctly in the About section.
| githubLink: <VSCodeLink href="hhttps://github.com/MatterAIOrg/Orbital-Extension" />, | |
| githubLink: <VSCodeLink href="https://github.com/MatterAIOrg/Orbital-Extension" />, |
| <p style={{ wordWrap: "break-word", margin: 0, padding: 0 }}> | ||
| If you have any questions or feedback, feel free to open an issue at{" "} | ||
| <VSCodeLink href="https://github.com/MatterAIOrg/AxonCode" style={{ display: "inline" }}> | ||
| <VSCodeLink href="hhttps://github.com/MatterAIOrg/Orbital-Extension" style={{ display: "inline" }}> |
There was a problem hiding this comment.
🔴 Bug
Issue: The href attribute contains a typo (hhttps://). Clicking this link will result in an invalid URL error in the browser.
Fix: Correct the typo to https://.
Impact: Ensures the GitHub link works correctly in the Settings footer.
| <VSCodeLink href="hhttps://github.com/MatterAIOrg/Orbital-Extension" style={{ display: "inline" }}> | |
| <VSCodeLink href="https://github.com/MatterAIOrg/Orbital-Extension" style={{ display: "inline" }}> |
|
Caution PR Review Skipped - Monthly Quota ExceededPR review skipped as you have reached the free tier limit of 25 PR reviews per month. Please upgrade to a paid plan for MatterAI. Current Plan: Free Tier Upgrade your plan on the console here: https://app.matterai.so/ai-code-reviews?tab=Billing |
|
Important PR Review SkippedPR review skipped as per the configuration setting. Run a manually review by commenting /matter review 💡Tips to use MatterAICommand List
|
|
/matterai review |
|
This PR for
One minor suggestion: In |
Uh oh!
There was an error while loading. Please reload this page.