clew-code 0.2.7 → 0.2.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (57) hide show
  1. package/README.md +292 -299
  2. package/dist/main.js +2745 -2869
  3. package/docs/architecture.html +148 -145
  4. package/docs/architecture.th.html +79 -78
  5. package/docs/clew-code-architecture.html +1125 -0
  6. package/docs/commands.html +224 -223
  7. package/docs/commands.th.html +131 -130
  8. package/docs/configuration.html +147 -145
  9. package/docs/configuration.th.html +108 -106
  10. package/docs/css/styles.css +48 -42
  11. package/docs/daemon.html +129 -128
  12. package/docs/daemon.th.html +73 -72
  13. package/docs/features/bridge-mode.html +99 -98
  14. package/docs/features/bridge-mode.th.html +90 -89
  15. package/docs/features/evals.html +182 -181
  16. package/docs/features/evals.th.html +90 -89
  17. package/docs/features/peer.html +178 -177
  18. package/docs/features/searxng-search.html +151 -150
  19. package/docs/features/searxng-search.th.html +95 -94
  20. package/docs/features/sentry-setup.html +157 -156
  21. package/docs/features/sentry-setup.th.html +97 -96
  22. package/docs/index.html +299 -298
  23. package/docs/index.th.html +292 -290
  24. package/docs/installation.html +105 -103
  25. package/docs/installation.th.html +105 -103
  26. package/docs/internals/growthbook-ab-testing.html +113 -112
  27. package/docs/internals/growthbook-ab-testing.th.html +81 -80
  28. package/docs/internals/hidden-features.html +149 -147
  29. package/docs/internals/hidden-features.th.html +109 -107
  30. package/docs/js/main.js +83 -3
  31. package/docs/loop.html +181 -180
  32. package/docs/loop.th.html +227 -226
  33. package/docs/mcp.html +247 -246
  34. package/docs/mcp.th.html +207 -206
  35. package/docs/models.html +111 -110
  36. package/docs/models.th.html +61 -60
  37. package/docs/peer.html +236 -235
  38. package/docs/peer.th.html +280 -279
  39. package/docs/permission-model.html +102 -101
  40. package/docs/permission-model.th.html +67 -66
  41. package/docs/plugins.html +102 -101
  42. package/docs/plugins.th.html +79 -78
  43. package/docs/providers.html +126 -117
  44. package/docs/providers.th.html +80 -78
  45. package/docs/quick-start.html +93 -92
  46. package/docs/quick-start.th.html +40 -39
  47. package/docs/research-memory.html +82 -79
  48. package/docs/research-memory.th.html +72 -71
  49. package/docs/skills.html +117 -116
  50. package/docs/skills.th.html +90 -89
  51. package/docs/tools.html +170 -169
  52. package/docs/tools.th.html +84 -83
  53. package/docs/troubleshooting.html +106 -105
  54. package/docs/troubleshooting.th.html +85 -84
  55. package/package.json +164 -162
  56. package/docs/taste.html +0 -436
  57. package/docs/taste.th.html +0 -236
@@ -1,103 +1,105 @@
1
- <!DOCTYPE html>
2
- <html lang="en">
3
- <head>
4
- <meta charset="UTF-8">
5
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
- <title>Installation Clew</title>
7
- <meta name="description" content="Install Clew via npm, run from source, or use the prebuilt binary.">
8
- <link rel="preconnect" href="https://fonts.googleapis.com">
9
- <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
10
- <link href="https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500;600;700&display=swap" rel="stylesheet">
11
- <link rel="stylesheet" href="css/styles.css">
12
- <link rel="icon" type="image/svg+xml" href="./assets/clew.svg">
13
- </head>
14
- <body>
15
- <header class="header"></header>
16
- <div class="app"><aside class="sidebar" id="sidebar"></aside><div class="sidebar-overlay" id="sidebarOverlay"></div>
17
- <div class="content-wrap"><main class="content">
18
- <div class="breadcrumbs"><a href="index.html">Home</a><span class="sep">/</span><span>Installation</span></div>
19
- <h1>Installation</h1>
20
- <p class="section-subtitle">Clew runs on Windows, macOS, Linux, and WSL2. Runtime: Bun 1.3+.</p>
21
-
22
- <h2>Prerequisites</h2>
23
- <ul>
24
- <li><strong>Bun 1.3+</strong> required runtime for both global installs and source builds</li>
25
- <li>At least one AI provider API key</li>
26
- </ul>
27
-
28
- <h2>Via npm (global)</h2>
29
- <pre><code>npm install -g clew-code
30
- clew
31
-
32
- # Verify
33
- clew --version</code></pre>
34
- <p><strong>Important:</strong> the npm package installs the launcher only. You must install <a href="https://bun.sh">Bun</a> separately before running <code>clew</code>.</p>
35
-
36
- <h2>Via Bun (global)</h2>
37
- <pre><code>bun install -g clew-code
38
- clew</code></pre>
39
-
40
- <h2>From Source</h2>
41
- <pre><code>git clone https://github.com/JonusNattapong/ClewCode.git
42
- cd ClewCode
43
- bun install
44
- bun run build
45
- bun run start
46
-
47
- # Development mode with watch
48
- bun run dev</code></pre>
49
-
50
- <p>Build output goes to <code>dist/</code>. The build uses Bun bundler with compile-time feature defines (<code>TRANSCRIPT_CLASSIFIER</code>, <code>CHICAGO_MCP</code>).</p>
51
-
52
- <h2>Platform-Specific Notes</h2>
53
-
54
- <h3>Windows</h3>
55
- <ul>
56
- <li>Both cmd and PowerShell supported as shell targets</li>
57
- <li>ripgrep bundled at <code>src/utils/vendor/ripgrep/x64-win32/rg.exe</code></li>
58
- <li>WSL2 recommended for best experience</li>
59
- <li>Windows argv normalization in <code>src/entry.ts</code></li>
60
- <li>TTY polyfill for Ink compatibility in <code>src/main.tsx</code></li>
61
- </ul>
62
-
63
- <h3>macOS</h3>
64
- <ul>
65
- <li>Native support with menu bar app integration (moltbot)</li>
66
- <li>Voice Wake and Talk Mode overlays</li>
67
- <li>Keychain prefetch for faster OAuth startup</li>
68
- <li>WebChat and debug tools available</li>
69
- </ul>
70
-
71
- <h3>Linux</h3>
72
- <ul>
73
- <li>Full support via terminal</li>
74
- <li>Tailscale Serve/Funnel for remote gateway access</li>
75
- </ul>
76
-
77
- <h2>Release Channels</h2>
78
- <table>
79
- <tr><th>Channel</th><th>npm Tag</th><th>Description</th></tr>
80
- <tr><td>stable</td><td><code>latest</code></td><td>Tagged releases (vYYYY.M.D)</td></tr>
81
- <tr><td>beta</td><td><code>beta</code></td><td>Prereleases (vYYYY.M.D-beta.N)</td></tr>
82
- <tr><td>dev</td><td><code>dev</code></td><td>Moving main branch</td></tr>
83
- </table>
84
-
85
- <h2>Verifying Installation</h2>
86
- <pre><code>/doctor # Run environment diagnostics
87
- /status # Check version, model, account, API connectivity</code></pre>
88
-
89
- <footer class="footer">
90
- <span>Clew Code v0.2.4 Open Source</span>
91
- <div class="footer-links">
92
- <a href="https://github.com/JonusNattapong/ClewCode">GitHub</a>
93
- <a href="https://github.com/JonusNattapong/ClewCode/issues">Issues</a>
94
- <a href="https://npmjs.com/package/clew-code">npm</a>
95
- </div>
96
- </footer>
97
- </main>
98
- <nav class="toc-sidebar"></nav>
99
- </div>
100
- </div>
101
- <script src="js/main.js"></script>
102
- </body>
103
- </html>
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>Installation — Clew</title>
7
+ <meta name="description" content="Install Clew via npm, run from source, or use the prebuilt binary.">
8
+ <link rel="preconnect" href="https://fonts.googleapis.com">
9
+ <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
10
+ <link href="https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500;600;700&display=swap" rel="stylesheet">
11
+ <link rel="stylesheet" href="css/styles.css">
12
+ <link rel="icon" type="image/svg+xml" href="./assets/clew.svg">
13
+ </head>
14
+ <body>
15
+ <header class="header"></header>
16
+ <div class="app"><aside class="sidebar" id="sidebar"></aside><div class="sidebar-overlay" id="sidebarOverlay"></div>
17
+ <div class="content-wrap"><main class="content">
18
+ <div class="breadcrumbs"><a href="index.html">Home</a><span class="sep">/</span><span>Installation</span></div>
19
+ <h1>Installation</h1>
20
+ <p class="section-subtitle">Clew runs on Windows, macOS, Linux, and WSL2. Runtime: Bun 1.3+.</p>
21
+
22
+ <h2>Prerequisites</h2>
23
+ <ul>
24
+ <li><strong>Bun 1.3+</strong> — required runtime for both global installs and source builds</li>
25
+ <li>At least one AI provider API key</li>
26
+ </ul>
27
+
28
+ <h2>Via npm (global)</h2>
29
+ <pre><code>npm install -g clew-code
30
+ clew
31
+
32
+ # Verify
33
+ clew --version</code></pre>
34
+ <p><strong>Important:</strong> the npm package installs the launcher only. You must install <a href="https://bun.sh">Bun</a> separately before running <code>clew</code>.</p>
35
+
36
+ <h2>Via Bun (global)</h2>
37
+ <pre><code>bun install -g clew-code
38
+ clew</code></pre>
39
+
40
+ <h2>From Source</h2>
41
+ <pre><code>git clone https://github.com/ClewCode/ClewCode.git
42
+ cd ClewCode
43
+ bun install
44
+ bun run build
45
+ bun run start
46
+
47
+ # Development mode with watch
48
+ bun run dev</code></pre>
49
+
50
+ <p>Build output goes to <code>dist/</code>. The build uses Bun bundler with compile-time feature defines (<code>TRANSCRIPT_CLASSIFIER</code>, <code>CHICAGO_MCP</code>).</p>
51
+
52
+ <h2>Platform-Specific Notes</h2>
53
+
54
+ <h3>Windows</h3>
55
+ <ul>
56
+ <li>Both cmd and PowerShell supported as shell targets</li>
57
+ <li>ripgrep bundled at <code>src/utils/vendor/ripgrep/x64-win32/rg.exe</code></li>
58
+ <li>WSL2 recommended for best experience</li>
59
+ <li>Windows argv normalization in <code>src/entry.ts</code></li>
60
+ <li>TTY polyfill for Ink compatibility in <code>src/main.tsx</code></li>
61
+ </ul>
62
+
63
+ <h3>macOS</h3>
64
+ <ul>
65
+ <li>CLI-based usage with (clew)</li>
66
+ <li>Voice Wake and Talk Mode overlays</li>
67
+ <li>Keychain prefetch for faster OAuth startup</li>
68
+ <li>WebChat and debug tools available</li>
69
+ </ul>
70
+
71
+ <h3>Linux</h3>
72
+ <ul>
73
+ <li>Full support via terminal</li>
74
+ <li>Tailscale Serve/Funnel for remote gateway access</li>
75
+ </ul>
76
+
77
+ <h2>Release Channels</h2>
78
+ <table>
79
+ <tr><th>Channel</th><th>npm Tag</th><th>Description</th></tr>
80
+ <tr><td>stable</td><td><code>latest</code></td><td>Tagged releases (vYYYY.M.D)</td></tr>
81
+ <tr><td>beta</td><td><code>beta</code></td><td>Prereleases (vYYYY.M.D-beta.N)</td></tr>
82
+ <tr><td>dev</td><td><code>dev</code></td><td>Moving main branch</td></tr>
83
+ </table>
84
+
85
+ <h2>Verifying Installation</h2>
86
+ <pre><code>/doctor # Run environment diagnostics
87
+ /status # Check version, model, account, API connectivity</code></pre>
88
+
89
+ <footer class="footer">
90
+ <span>Clew Code v0.2.7 — Open Source</span>
91
+ <div class="footer-links">
92
+ <a href="https://github.com/ClewCode/ClewCode">GitHub</a>
93
+ <a href="https://github.com/ClewCode/ClewCode/issues">Issues</a>
94
+ <a href="https://npmjs.com/package/clew-code">npm</a>
95
+ </div>
96
+ </footer>
97
+ </main>
98
+ <nav class="toc-sidebar"></nav>
99
+ </div>
100
+ </div>
101
+ <script src="js/main.js"></script>
102
+ </body>
103
+ </html>
104
+
105
+
@@ -1,103 +1,105 @@
1
- <!DOCTYPE html>
2
- <html lang="th">
3
- <head>
4
- <meta charset="UTF-8">
5
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
- <title>การติดตั้ง Clew</title>
7
- <meta name="description" content="ติดตั้ง Clew ผ่าน npm, รันจากซอร์สโค้ด, หรือใช้ไบนารีสำเร็จรูป">
8
- <link rel="preconnect" href="https://fonts.googleapis.com">
9
- <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
10
- <link href="https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500;600;700&family=Noto+Sans+Thai:wght@400;500;600;700&display=swap" rel="stylesheet">
11
- <link rel="stylesheet" href="css/styles.css">
12
- <link rel="icon" type="image/svg+xml" href="./assets/clew.svg">
13
- </head>
14
- <body>
15
- <header class="header"></header>
16
- <div class="app"><aside class="sidebar" id="sidebar"></aside><div class="sidebar-overlay" id="sidebarOverlay"></div>
17
- <div class="content-wrap"><main class="content">
18
- <div class="breadcrumbs"><a href="index.th.html">หน้าแรก</a><span class="sep">/</span><span>การติดตั้ง</span></div>
19
- <h1>การติดตั้ง</h1>
20
- <p class="section-subtitle">Clew รันบน Windows, macOS, Linux และ WSL2 รันไทม์: Bun 1.3+</p>
21
-
22
- <h2>ข้อกำหนดเบื้องต้น</h2>
23
- <ul>
24
- <li><strong>Bun 1.3+</strong> จำเป็นสำหรับทั้งการติดตั้งแบบ global และ build จากซอร์ส</li>
25
- <li>คีย์ API ของผู้ให้บริการ AI อย่างน้อยหนึ่งรายการ</li>
26
- </ul>
27
-
28
- <h2>ผ่าน npm (global)</h2>
29
- <pre><code>npm install -g clew-code
30
- clew
31
-
32
- # ตรวจสอบ
33
- clew --version</code></pre>
34
- <p><strong>สำคัญ:</strong> แพ็กเกจ npm ติดตั้งเฉพาะตัวเรียกใช้เท่านั้น คุณต้องติดตั้ง <a href="https://bun.sh">Bun</a> แยกต่างหากก่อนรัน <code>clew</code></p>
35
-
36
- <h2>ผ่าน Bun (global)</h2>
37
- <pre><code>bun install -g clew-code
38
- clew</code></pre>
39
-
40
- <h2>จากซอร์สโค้ด</h2>
41
- <pre><code>git clone https://github.com/JonusNattapong/ClewCode.git
42
- cd ClewCode
43
- bun install
44
- bun run build
45
- bun run start
46
-
47
- # โหมดพัฒนาพร้อม watch
48
- bun run dev</code></pre>
49
-
50
- <p>ผลลัพธ์ build ไปที่ <code>dist/</code> การ build ใช้ Bun bundler พร้อม compile-time feature defines (<code>TRANSCRIPT_CLASSIFIER</code>, <code>CHICAGO_MCP</code>)</p>
51
-
52
- <h2>หมายเหตุเฉพาะแพลตฟอร์ม</h2>
53
-
54
- <h3>Windows</h3>
55
- <ul>
56
- <li>รองรับทั้ง cmd และ PowerShell เป็น shell เป้าหมาย</li>
57
- <li>ripgrep แถมมาที่ <code>src/utils/vendor/ripgrep/x64-win32/rg.exe</code></li>
58
- <li>แนะนำ WSL2 เพื่อประสบการณ์ที่ดีที่สุด</li>
59
- <li>การปรับรูปแบบ argv Windows ใน <code>src/entry.ts</code></li>
60
- <li>TTY polyfill สำหรับ Ink compatibility ใน <code>src/main.tsx</code></li>
61
- </ul>
62
-
63
- <h3>macOS</h3>
64
- <ul>
65
- <li>รองรับพื้นเมืองพร้อม интеграцияแถบเมนู (moltbot)</li>
66
- <li>Voice Wake และ Talk Mode overlays</li>
67
- <li>Keychain prefetch สำหรับการเริ่ม OAuth ที่เร็วขึ้น</li>
68
- <li>เครื่องมือ WebChat และ debug พร้อมใช้งาน</li>
69
- </ul>
70
-
71
- <h3>Linux</h3>
72
- <ul>
73
- <li>รองรับเต็มรูปแบบผ่านเทอร์มินัล</li>
74
- <li>Tailscale Serve/Funnel สำหรับการเข้าถึงเกตเวย์ระยะไกล</li>
75
- </ul>
76
-
77
- <h2>ช่องทางการเผยแพร่</h2>
78
- <table>
79
- <tr><th>ช่องทาง</th><th>npm Tag</th><th>คำอธิบาย</th></tr>
80
- <tr><td>stable</td><td><code>latest</code></td><td>รุ่นที่แท็ก (vYYYY.M.D)</td></tr>
81
- <tr><td>beta</td><td><code>beta</code></td><td>รุ่นก่อนเผยแพร่ (vYYYY.M.D-beta.N)</td></tr>
82
- <tr><td>dev</td><td><code>dev</code></td><td>สาขา main ที่เคลื่อนที่</td></tr>
83
- </table>
84
-
85
- <h2>การตรวจสอบการติดตั้ง</h2>
86
- <pre><code>/doctor # รันการตรวจสอบสภาพแวดล้อม
87
- /status # ตรวจสอบเวอร์ชัน, โมเดล, บัญชี, การเชื่อมต่อ API</code></pre>
88
-
89
- <footer class="footer">
90
- <span>Clew Code v0.2.4 โอเพนซอร์ส</span>
91
- <div class="footer-links">
92
- <a href="https://github.com/JonusNattapong/ClewCode">GitHub</a>
93
- <a href="https://github.com/JonusNattapong/ClewCode/issues">ปัญหา</a>
94
- <a href="https://npmjs.com/package/clew-code">npm</a>
95
- </div>
96
- </footer>
97
- </main>
98
- <nav class="toc-sidebar"></nav>
99
- </div>
100
- </div>
101
- <script src="js/main.js"></script>
102
- </body>
103
- </html>
1
+ <!DOCTYPE html>
2
+ <html lang="th">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>การติดตั้ง — Clew</title>
7
+ <meta name="description" content="ติดตั้ง Clew ผ่าน npm, รันจากซอร์สโค้ด, หรือใช้ไบนารีสำเร็จรูป">
8
+ <link rel="preconnect" href="https://fonts.googleapis.com">
9
+ <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
10
+ <link href="https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500;600;700&family=Noto+Sans+Thai:wght@400;500;600;700&display=swap" rel="stylesheet">
11
+ <link rel="stylesheet" href="css/styles.css">
12
+ <link rel="icon" type="image/svg+xml" href="./assets/clew.svg">
13
+ </head>
14
+ <body>
15
+ <header class="header"></header>
16
+ <div class="app"><aside class="sidebar" id="sidebar"></aside><div class="sidebar-overlay" id="sidebarOverlay"></div>
17
+ <div class="content-wrap"><main class="content">
18
+ <div class="breadcrumbs"><a href="index.th.html">หน้าแรก</a><span class="sep">/</span><span>การติดตั้ง</span></div>
19
+ <h1>การติดตั้ง</h1>
20
+ <p class="section-subtitle">Clew รันบน Windows, macOS, Linux และ WSL2 รันไทม์: Bun 1.3+</p>
21
+
22
+ <h2>ข้อกำหนดเบื้องต้น</h2>
23
+ <ul>
24
+ <li><strong>Bun 1.3+</strong> — จำเป็นสำหรับทั้งการติดตั้งแบบ global และ build จากซอร์ส</li>
25
+ <li>คีย์ API ของผู้ให้บริการ AI อย่างน้อยหนึ่งรายการ</li>
26
+ </ul>
27
+
28
+ <h2>ผ่าน npm (global)</h2>
29
+ <pre><code>npm install -g clew-code
30
+ clew
31
+
32
+ # ตรวจสอบ
33
+ clew --version</code></pre>
34
+ <p><strong>สำคัญ:</strong> แพ็กเกจ npm ติดตั้งเฉพาะตัวเรียกใช้เท่านั้น คุณต้องติดตั้ง <a href="https://bun.sh">Bun</a> แยกต่างหากก่อนรัน <code>clew</code></p>
35
+
36
+ <h2>ผ่าน Bun (global)</h2>
37
+ <pre><code>bun install -g clew-code
38
+ clew</code></pre>
39
+
40
+ <h2>จากซอร์สโค้ด</h2>
41
+ <pre><code>git clone https://github.com/ClewCode/ClewCode.git
42
+ cd ClewCode
43
+ bun install
44
+ bun run build
45
+ bun run start
46
+
47
+ # โหมดพัฒนาพร้อม watch
48
+ bun run dev</code></pre>
49
+
50
+ <p>ผลลัพธ์ build ไปที่ <code>dist/</code> การ build ใช้ Bun bundler พร้อม compile-time feature defines (<code>TRANSCRIPT_CLASSIFIER</code>, <code>CHICAGO_MCP</code>)</p>
51
+
52
+ <h2>หมายเหตุเฉพาะแพลตฟอร์ม</h2>
53
+
54
+ <h3>Windows</h3>
55
+ <ul>
56
+ <li>รองรับทั้ง cmd และ PowerShell เป็น shell เป้าหมาย</li>
57
+ <li>ripgrep แถมมาที่ <code>src/utils/vendor/ripgrep/x64-win32/rg.exe</code></li>
58
+ <li>แนะนำ WSL2 เพื่อประสบการณ์ที่ดีที่สุด</li>
59
+ <li>การปรับรูปแบบ argv Windows ใน <code>src/entry.ts</code></li>
60
+ <li>TTY polyfill สำหรับ Ink compatibility ใน <code>src/main.tsx</code></li>
61
+ </ul>
62
+
63
+ <h3>macOS</h3>
64
+ <ul>
65
+ <li>รองรับพื้นเมืองพร้อม интеграцияแถบเมนู (clew)</li>
66
+ <li>Voice Wake และ Talk Mode overlays</li>
67
+ <li>Keychain prefetch สำหรับการเริ่ม OAuth ที่เร็วขึ้น</li>
68
+ <li>เครื่องมือ WebChat และ debug พร้อมใช้งาน</li>
69
+ </ul>
70
+
71
+ <h3>Linux</h3>
72
+ <ul>
73
+ <li>รองรับเต็มรูปแบบผ่านเทอร์มินัล</li>
74
+ <li>Tailscale Serve/Funnel สำหรับการเข้าถึงเกตเวย์ระยะไกล</li>
75
+ </ul>
76
+
77
+ <h2>ช่องทางการเผยแพร่</h2>
78
+ <table>
79
+ <tr><th>ช่องทาง</th><th>npm Tag</th><th>คำอธิบาย</th></tr>
80
+ <tr><td>stable</td><td><code>latest</code></td><td>รุ่นที่แท็ก (vYYYY.M.D)</td></tr>
81
+ <tr><td>beta</td><td><code>beta</code></td><td>รุ่นก่อนเผยแพร่ (vYYYY.M.D-beta.N)</td></tr>
82
+ <tr><td>dev</td><td><code>dev</code></td><td>สาขา main ที่เคลื่อนที่</td></tr>
83
+ </table>
84
+
85
+ <h2>การตรวจสอบการติดตั้ง</h2>
86
+ <pre><code>/doctor # รันการตรวจสอบสภาพแวดล้อม
87
+ /status # ตรวจสอบเวอร์ชัน, โมเดล, บัญชี, การเชื่อมต่อ API</code></pre>
88
+
89
+ <footer class="footer">
90
+ <span>Clew Code v0.2.7 — โอเพนซอร์ส</span>
91
+ <div class="footer-links">
92
+ <a href="https://github.com/ClewCode/ClewCode">GitHub</a>
93
+ <a href="https://github.com/ClewCode/ClewCode/issues">ปัญหา</a>
94
+ <a href="https://npmjs.com/package/clew-code">npm</a>
95
+ </div>
96
+ </footer>
97
+ </main>
98
+ <nav class="toc-sidebar"></nav>
99
+ </div>
100
+ </div>
101
+ <script src="js/main.js"></script>
102
+ </body>
103
+ </html>
104
+
105
+