-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
65 lines (57 loc) · 2.96 KB
/
index.html
File metadata and controls
65 lines (57 loc) · 2.96 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
<!doctype html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- Basic Meta -->
<title>Coding CLI Guide</title>
<meta name="description" content="深入理解 Gemini CLI 的内部架构与 AI 工具交互模式,涵盖启动流程、请求生命周期、工具系统、MCP 集成等核心机制。" />
<meta name="keywords" content="Gemini CLI, gemini-cli, AI CLI, 架构指南, Agent Loop, MCP, Tool System" />
<meta name="author" content="Gemini CLI Guide" />
<!-- Open Graph -->
<meta property="og:type" content="website" />
<meta property="og:title" content="Coding CLI Guide" />
<meta property="og:description" content="深入理解 Gemini CLI 的内部架构与 AI 工具交互模式,涵盖启动流程、请求生命周期、工具系统、MCP 集成等核心机制。" />
<meta property="og:url" content="https://tt-a1i.github.io/coding-cli-guide/" />
<meta property="og:site_name" content="Gemini CLI Guide" />
<meta property="og:locale" content="zh_CN" />
<meta property="og:image" content="https://tt-a1i.github.io/coding-cli-guide/og.png" />
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="630" />
<!-- Twitter Card -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="Coding CLI Guide" />
<meta name="twitter:description" content="深入理解 Gemini CLI 的内部架构与 AI 工具交互模式" />
<meta name="twitter:image" content="https://tt-a1i.github.io/coding-cli-guide/og.png" />
<!-- Google Fonts: JetBrains Mono + IBM Plex Sans -->
<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=IBM+Plex+Sans:wght@400;500;600&family=JetBrains+Mono:wght@400;500;600&display=swap" rel="stylesheet" />
<!-- Favicon -->
<link rel="icon" type="image/svg+xml" href="/coding-cli-guide/favicon.svg" />
<link rel="apple-touch-icon" href="/coding-cli-guide/favicon.svg" />
<!-- Canonical -->
<link rel="canonical" href="https://tt-a1i.github.io/coding-cli-guide/" />
<!-- Theme Color -->
<meta name="theme-color" content="#fafaf9" />
<script>
(function() {
var s = localStorage.getItem('theme');
var d = s === 'dark' || (!s && window.matchMedia('(prefers-color-scheme: dark)').matches);
if (d) document.documentElement.classList.add('dark');
var m = document.querySelector('meta[name=theme-color]');
if (m) m.content = d ? '#111110' : '#fafaf9';
})();
</script>
<!-- Dev Tools -->
<script type="module">
if (import.meta.env.DEV) {
import("react-grab");
}
</script>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>