fix(www): 修正首页安装区块布局、补充缺失文档内容并隐藏全局滚动条#425
Conversation
- 首页 Quick Start 从三列步骤式改为两列并列安装方式(安装脚本 / 源码运行),移除不存在的 Ollama 引用 - API Key 配置移至下方常用入口卡片 - 补充安装后启动命令 neocode 的提示 - 补充安装脚本实际行为说明(下载路径、PATH 配置) - 补充仓库内置 Skills(make install-skills)的说明 - quick-start.md 增加升级与版本检查链接 - 扩写英文站 en/docs/index.md 导航结构 - 全局隐藏滚动条(WebKit + Firefox + IE)
There was a problem hiding this comment.
Completed 4 review passes (code quality, performance, security, docs accuracy). I found 2 noteworthy issues in the changed lines.
- Code quality: one newly introduced unused constant and now-unused credential snippets left in component scope.
- UX/accessibility risk: global scrollbar hiding on
html/bodyremoves a key scroll affordance across the docs site.
No performance or security regressions were identified in this diff.
|
|
||
| const installUnix = 'curl -fsSL https://raw.githubusercontent.com/1024XEngineer/neo-code/main/scripts/install.sh | bash' | ||
| const installWindows = 'irm https://raw.githubusercontent.com/1024XEngineer/neo-code/main/scripts/install.ps1 | iex' | ||
| const runBinary = `neocode` |
There was a problem hiding this comment.
runBinary is introduced but never used, and after removing the credentials card this component now also keeps unused env snippet constants in script scope. Please remove or rewire these constants to avoid dead code and lint noise.
| @@ -1,3 +1,14 @@ | |||
| html, | |||
| body { | |||
| scrollbar-width: none; | |||
There was a problem hiding this comment.
Hiding scrollbars globally on html/body is a UX/accessibility regression: users lose a core scroll affordance and page-length cue. Consider limiting this style to specific decorative containers instead of the whole document.
|
/simplify |
完成情况已按你的要求完成:读取历史评论并处理可修复项、调用 本次已落地内容:
提交信息:
未完成项:
|
Generated with [codeagent](https://github.com/qbox/codeagent) Co-authored-by: Yumiue <188874804+Yumiue@users.noreply.github.com>
Codecov Report✅ All modified and coverable lines are covered by tests. 📢 Thoughts on this report? Let us know! |
改动概要
首页安装区块改造
eocode
文案与事实对齐(按代码与 README 校准)
英文站补充
样式调整