-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
80 lines (71 loc) · 5.07 KB
/
Copy pathabout.html
File metadata and controls
80 lines (71 loc) · 5.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<!DOCTYPE html>
<html lang="zh-Hant">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="assets/favicon.svg" type="image/svg+xml">
<title>關於本站 · OpenCodeReview 繁中教學站</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;600;700&family=Noto+Sans+TC:wght@400;500;700&family=JetBrains+Mono:wght@400;600&display=swap" rel="stylesheet">
<link rel="stylesheet" href="assets/site.css">
</head>
<body>
<div class="container">
<nav class="topnav">
<a href="index.html">首頁</a>
<a href="map.html">概念地圖</a>
<a href="learning-path.html">學習路線</a>
<a href="install.html">安裝指南</a>
<a href="docs/index.html">文件教學</a>
<a href="docs/code/index.html">程式碼對照</a>
<a href="docs/worked.html">實作案例</a>
<a href="about.html">關於</a>
</nav>
<div class="back-link"><a href="index.html">← 回首頁</a></div>
<header>
<h1>關於本站</h1>
<div class="subtitle">授權、方法、與重要聲明</div>
</header>
<div class="guide">
<div class="license-box">
<strong>免責聲明</strong>:本站為 <strong>第三方社群教學站</strong>,與 <strong>Alibaba 無關</strong>,不代表 OpenCodeReview 官方立場。OpenCodeReview 與 Alibaba 為其各自權利人所有,本站僅在「描述性/教學」語境下使用該名稱。
</div>
<h2>授權</h2>
<p>上游 <a href="https://github.com/alibaba/open-code-review">alibaba/open-code-review</a> 以 <strong>Apache-2.0</strong> 授權。本站遵循 Apache-2.0 的要求,照抄了上游授權檔:</p>
<ul>
<li><a href="LICENSE">LICENSE</a> — 上游 Apache-2.0 全文照抄(引用原始碼片段需保留此聲明)</li>
<li><a href="NOTICE">NOTICE</a> — 聲明本站是上游的非官方教學站、引用範圍、本站原創內容亦以 Apache-2.0 釋出</li>
</ul>
<p>本站修改內容(中文解說、網站排版)以 Apache-2.0 釋出。官方 docs 資產(如截圖)引用時標註出處;未使用官方 logo 作為網站視覺。網站不做任何二進位散布。</p>
<h2>上游版本釘選</h2>
<div class="sync-panel"><div class="sync-meta">對齊上游 <code>alibaba/open-code-review</code> 分支 <code>main</code>(<code>9148bfd</code>,2026-08-13)· 發行版 <code>v1.9.2</code> · <code>check-upstream</code> workflow 每月檢查一次。</div></div>
<h2>教學方法</h2>
<ol class="timeline">
<li><span class="t-stage">中英對照</span>中文口語解說為主文,英文原文與程式碼保留上游原貌(文件頁用可展開的原文、程式碼頁用註解版原始碼)。</li>
<li><span class="t-stage">程式碼逐函數</span>所有講到的 Go 函式一個 <code><details></code> 收縮塊(signature + 中文用途 + 關鍵邏輯),核心函式附逐行中文註解。</li>
<li><span class="t-stage">策展而非鏡像</span>Go 的 repo 不逐檔翻譯,挑「值得教學」的模組(cmd / agent / llmloop / diff / rules / tool / mcp…)深入講解。</li>
<li><span class="t-stage">實機示範</span>收錄真實工具產出(graphify 互動圖、CLI 輸出範例),訪客可直接操作,並提供可重現步驟。</li>
</ol>
<h2>關於 OpenCodeReview</h2>
<p>OpenCodeReview 是一個 AI 驅動的程式碼審查 CLI。它起源於阿里巴巴集團內部的官方 AI 程式碼審查助手——過去兩年服務數萬開發者、揪出數百萬個程式碼缺陷。核心哲學是<strong>「確定性工程 × Agent 混合」</strong>:工程邏輯保證不會出錯的部分(精確檔案選擇、智慧 bundling、規則匹配、定位/反思模組),Agent 專注動態決策(情境調校 prompt 與工具集)。</p>
<ul>
<li>官方 repo:<a href="https://github.com/alibaba/open-code-review">alibaba/open-code-review</a></li>
<li>官方網站:<a href="https://open-codereview.ai">open-codereview.ai</a></li>
<li>npm 套件:<code>@alibaba-group/open-code-review</code></li>
<li>授權:Apache-2.0</li>
</ul>
<h2>本站架構</h2>
<p>純 HTML + CSS + JS 靜態站,無框架、無建置步驟,部署於 GitHub Pages(<code>main</code> 根目錄)。由 OpenCode 協助建置,中文解說由 OpenCode 撰寫。</p>
<ul>
<li>本站 repo:<a href="https://github.com/shumingyang-opencode/open-code-review-zh-tw">shumingyang-opencode/open-code-review-zh-tw</a></li>
</ul>
<div class="callout info"><strong>回饋</strong>:這是教學站,不是官方文件。發現翻譯錯誤或想補充主題,歡迎在 <a href="https://github.com/shumingyang-opencode/open-code-review-zh-tw/issues">本站 repo issues</a> 提出。</div>
</div>
<footer>
<div>這是 <a href="https://github.com/alibaba/open-code-review">alibaba/open-code-review</a> 的非官方繁體中文教學站。</div>
<div>內容 © <a href="https://github.com/alibaba/open-code-review">alibaba/open-code-review Contributors</a>(Apache-2.0)· 本站與 Alibaba 無關 · 對齊上游 main @ 9148bfd</div>
</footer>
</div>
</body>
</html>