Skip to content

Commit 286d3d6

Browse files
anthhubclaude
andcommitted
rename: learn-claude-code → open-claude-code
- Rename GitHub repository for better discoverability - Update all internal references: VitePress base path, README links, docs links, Codespaces URLs, edit links, clone commands - Add GitHub topics: claude-code, ai-agent, build-your-own-x, typescript-tutorial, anthropic, cli, agentic-ai Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 2f781ed commit 286d3d6

11 files changed

Lines changed: 25 additions & 25 deletions

File tree

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ demo/
177177
## Project Structure
178178

179179
```
180-
learn-claude-code/
180+
open-claude-code/
181181
├── README.md # This file
182182
├── README.zh-CN.md # Chinese version
183183
├── ROADMAP.md # Visual learning roadmap
@@ -225,8 +225,8 @@ No prior knowledge of Claude or Anthropic's APIs is required — we explain ever
225225

226226
```bash
227227
# Clone this repo
228-
git clone https://github.com/anthhub/learn-claude-code.git
229-
cd learn-claude-code
228+
git clone https://github.com/anthhub/open-claude-code.git
229+
cd open-claude-code
230230

231231
# Install dev dependencies
232232
bun install

README.zh-CN.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ demo/
177177
## 项目结构
178178

179179
```
180-
learn-claude-code/
180+
open-claude-code/
181181
├── README.md # 英文版
182182
├── README.zh-CN.md # 本文件(中文版)
183183
├── ROADMAP.md # 可视化学习路线图
@@ -225,8 +225,8 @@ learn-claude-code/
225225

226226
```bash
227227
# 克隆本仓库
228-
git clone https://github.com/anthhub/learn-claude-code.git
229-
cd learn-claude-code
228+
git clone https://github.com/anthhub/open-claude-code.git
229+
cd open-claude-code
230230

231231
# 安装开发依赖
232232
bun install

docs/.vitepress/config.ts

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@ export default defineConfig({
55
description: "深入理解 Claude Code 架构与实现的实战指南",
66

77
head: [
8-
["link", { rel: "icon", type: "image/svg+xml", href: "/learn-claude-code/logo.svg" }],
8+
["link", { rel: "icon", type: "image/svg+xml", href: "/open-claude-code/logo.svg" }],
99
["meta", { property: "og:type", content: "website" }],
1010
["meta", { property: "og:title", content: "Learn Claude Code" }],
1111
["meta", { property: "og:description", content: "深入理解 Claude Code 架构与实现的实战指南" }],
1212
],
1313
lastUpdated: true,
1414

15-
base: "/learn-claude-code/",
15+
base: "/open-claude-code/",
1616

1717
locales: {
1818
"zh-CN": {
@@ -25,7 +25,7 @@ export default defineConfig({
2525
{ text: "Demo", link: "/zh-CN/demo" },
2626
{
2727
text: "在线环境",
28-
link: "https://github.com/codespaces/new?repo=anthhub/learn-claude-code",
28+
link: "https://github.com/codespaces/new?repo=anthhub/open-claude-code",
2929
},
3030
],
3131
sidebar: [
@@ -63,7 +63,7 @@ export default defineConfig({
6363
],
6464
editLink: {
6565
pattern:
66-
"https://github.com/anthhub/learn-claude-code/edit/main/docs/:path",
66+
"https://github.com/anthhub/open-claude-code/edit/main/docs/:path",
6767
text: "在 GitHub 上编辑此页",
6868
},
6969
outline: { label: "目录" },
@@ -80,7 +80,7 @@ export default defineConfig({
8080
{ text: "Demo", link: "/en/demo" },
8181
{
8282
text: "Online Env",
83-
link: "https://github.com/codespaces/new?repo=anthhub/learn-claude-code",
83+
link: "https://github.com/codespaces/new?repo=anthhub/open-claude-code",
8484
},
8585
],
8686
sidebar: [
@@ -118,7 +118,7 @@ export default defineConfig({
118118
],
119119
editLink: {
120120
pattern:
121-
"https://github.com/anthhub/learn-claude-code/edit/main/docs/:path",
121+
"https://github.com/anthhub/open-claude-code/edit/main/docs/:path",
122122
text: "Edit this page on GitHub",
123123
},
124124
outline: { label: "On this page" },
@@ -130,7 +130,7 @@ export default defineConfig({
130130
themeConfig: {
131131
logo: "/logo.svg",
132132
socialLinks: [
133-
{ icon: "github", link: "https://github.com/anthhub/learn-claude-code" },
133+
{ icon: "github", link: "https://github.com/anthhub/open-claude-code" },
134134
],
135135
search: {
136136
provider: "local",

docs/en/12-advanced-features.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -726,7 +726,7 @@ The example demonstrates:
726726
### 10.1 Running the Example
727727

728728
```bash
729-
cd /path/to/learn-claude-code
729+
cd /path/to/open-claude-code
730730
npx ts-node examples/12-advanced-features/sandbox.ts
731731
```
732732

docs/en/demo.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
> Build chapter by chapter — end up with an AI coding assistant matching Claude Code's architecture
44
5-
[![Open in GitHub Codespaces](https://github.com/codespaces/badge.svg)](https://github.com/codespaces/new?repo=anthhub/learn-claude-code)
5+
[![Open in GitHub Codespaces](https://github.com/codespaces/badge.svg)](https://github.com/codespaces/new?repo=anthhub/open-claude-code)
66

77
## Final Goal
88

docs/en/index.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,15 +27,15 @@ layout: doc
2727

2828
### Option 1: Online Environment (Recommended)
2929

30-
[![Open in GitHub Codespaces](https://github.com/codespaces/badge.svg)](https://github.com/codespaces/new?repo=anthhub/learn-claude-code)
30+
[![Open in GitHub Codespaces](https://github.com/codespaces/badge.svg)](https://github.com/codespaces/new?repo=anthhub/open-claude-code)
3131

3232
Click the button above to get a full dev environment in 30 seconds — no local installation needed.
3333

3434
### Option 2: Local Development
3535

3636
```bash
37-
git clone https://github.com/anthhub/learn-claude-code.git
38-
cd learn-claude-code
37+
git clone https://github.com/anthhub/open-claude-code.git
38+
cd open-claude-code
3939
bun install
4040

4141
# Run chapter 1 example

docs/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ hero:
1414
link: /en/01-overview
1515
- theme: alt
1616
text: Open in Codespaces
17-
link: https://github.com/codespaces/new?repo=anthhub/learn-claude-code
17+
link: https://github.com/codespaces/new?repo=anthhub/open-claude-code
1818

1919
features:
2020
- icon: 📖

docs/zh-CN/12-advanced-features.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -726,7 +726,7 @@ ws.addEventListener('message', event => {
726726
### 10.1 运行示例
727727

728728
```bash
729-
cd /path/to/learn-claude-code
729+
cd /path/to/open-claude-code
730730
npx ts-node examples/12-advanced-features/sandbox.ts
731731
```
732732

docs/zh-CN/demo.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
> 跟随教程逐章构建,最终得到一个与 Claude Code 架构一致的 AI 编程助手
44
5-
[![Open in GitHub Codespaces](https://github.com/codespaces/badge.svg)](https://github.com/codespaces/new?repo=anthhub/learn-claude-code)
5+
[![Open in GitHub Codespaces](https://github.com/codespaces/badge.svg)](https://github.com/codespaces/new?repo=anthhub/open-claude-code)
66

77
## 最终目标
88

docs/zh-CN/index.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,15 +27,15 @@ layout: doc
2727

2828
### 方式一:在线环境(推荐)
2929

30-
[![Open in GitHub Codespaces](https://github.com/codespaces/badge.svg)](https://github.com/codespaces/new?repo=anthhub/learn-claude-code)
30+
[![Open in GitHub Codespaces](https://github.com/codespaces/badge.svg)](https://github.com/codespaces/new?repo=anthhub/open-claude-code)
3131

3232
点击上面的按钮,30 秒内获得完整的开发环境,无需本地安装任何工具。
3333

3434
### 方式二:本地开发
3535

3636
```bash
37-
git clone https://github.com/anthhub/learn-claude-code.git
38-
cd learn-claude-code
37+
git clone https://github.com/anthhub/open-claude-code.git
38+
cd open-claude-code
3939
bun install
4040

4141
# 运行第一章示例

0 commit comments

Comments
 (0)