Skip to content

Commit 3884f14

Browse files
fix: align GHCR registry and install URLs with thought2code
Co-authored-by: Cursor <cursoragent@cursor.com>
1 parent 1bc0301 commit 3884f14

5 files changed

Lines changed: 18 additions & 18 deletions

File tree

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -84,13 +84,13 @@ Pick the path that matches your goal:
8484
macOS / Linux:
8585

8686
```bash
87-
curl -fsSL https://raw.githubusercontent.com/ingorewho/video-driven-skill/main/scripts/install.sh | bash
87+
curl -fsSL https://raw.githubusercontent.com/thought2code/video-driven-skill/main/scripts/install.sh | bash
8888
```
8989

9090
Windows (PowerShell):
9191

9292
```powershell
93-
irm https://raw.githubusercontent.com/ingorewho/video-driven-skill/main/scripts/install.ps1 | iex
93+
irm https://raw.githubusercontent.com/thought2code/video-driven-skill/main/scripts/install.ps1 | iex
9494
```
9595

9696
If you already cloned the repo, run `./scripts/install.sh` or `.\scripts\install.ps1` from the project instead.
@@ -109,7 +109,7 @@ AI_API_KEY=your-key-here
109109

110110
| Tag | When to use |
111111
|--------------------|--------------------------------------------------------------------------------------|
112-
| `latest` (default) | Track the newest [release](https://github.com/ingorewho/video-driven-skill/releases) |
112+
| `latest` (default) | Track the newest [release](https://github.com/thought2code/video-driven-skill/releases) |
113113
| `v1.0.0` (example) | Pin a specific release in production |
114114

115115
```bash
@@ -120,7 +120,7 @@ Or set `VD_SKILL_IMAGE_TAG=v1.0.0` when running `docker compose -f docker-compos
120120

121121
**How images are published**
122122

123-
- Registry: `ghcr.io/ingorewho/video-driven-skill-backend` and `ghcr.io/ingorewho/video-driven-skill-frontend`
123+
- Registry: `ghcr.io/thought2code/video-driven-skill-backend` and `ghcr.io/thought2code/video-driven-skill-frontend`
124124
- **A new image is built only when a version Git tag is pushed** (e.g. `v1.0.0`, `v1.2.3`). Pushes to `main` alone do **not** publish images.
125125
- Tag `latest` on GHCR always points to the **most recent** `v*` release.
126126

@@ -140,8 +140,8 @@ Or set `VD_SKILL_IMAGE_TAG=v1.0.0` when running `docker compose -f docker-compos
140140

141141
```bash
142142
mkdir -p ~/video-driven-skill && cd ~/video-driven-skill
143-
curl -fsSL https://raw.githubusercontent.com/ingorewho/video-driven-skill/main/docker-compose.release.yml -o docker-compose.release.yml
144-
curl -fsSL https://raw.githubusercontent.com/ingorewho/video-driven-skill/main/.env.example -o .env
143+
curl -fsSL https://raw.githubusercontent.com/thought2code/video-driven-skill/main/docker-compose.release.yml -o docker-compose.release.yml
144+
curl -fsSL https://raw.githubusercontent.com/thought2code/video-driven-skill/main/.env.example -o .env
145145
# Edit .env — set AI_API_KEY
146146
docker compose -f docker-compose.release.yml pull
147147
docker compose -f docker-compose.release.yml up -d
@@ -156,7 +156,7 @@ docker compose -f docker-compose.release.yml up -d
156156
**What this does:** Clones the repo and **builds** images locally with `docker-compose.yml`. Use this when you are developing, need unreleased `main`, or want the China mirror overlay for faster base-image pulls.
157157

158158
```bash
159-
git clone https://github.com/ingorewho/video-driven-skill.git
159+
git clone https://github.com/thought2code/video-driven-skill.git
160160
cd video-driven-skill
161161
```
162162

README.zh-CN.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -84,13 +84,13 @@ Video Driven Skill 是一套开源的**自动化工作室**:把**屏幕录屏*
8484
macOS / Linux:
8585

8686
```bash
87-
curl -fsSL https://raw.githubusercontent.com/ingorewho/video-driven-skill/main/scripts/install.sh | bash
87+
curl -fsSL https://raw.githubusercontent.com/thought2code/video-driven-skill/main/scripts/install.sh | bash
8888
```
8989

9090
Windows(PowerShell):
9191

9292
```powershell
93-
irm https://raw.githubusercontent.com/ingorewho/video-driven-skill/main/scripts/install.ps1 | iex
93+
irm https://raw.githubusercontent.com/thought2code/video-driven-skill/main/scripts/install.ps1 | iex
9494
```
9595

9696
若已克隆仓库,可在项目根目录执行 `./scripts/install.sh``.\scripts\install.ps1`
@@ -109,7 +109,7 @@ AI_API_KEY=你的密钥
109109

110110
| 镜像标签 | 适用场景 |
111111
|----------|----------|
112-
| `latest`(默认) | 始终使用最新 [Release](https://github.com/ingorewho/video-driven-skill/releases) |
112+
| `latest`(默认) | 始终使用最新 [Release](https://github.com/thought2code/video-driven-skill/releases) |
113113
| `v1.0.0`(示例) | 生产环境固定某一发行版 |
114114

115115
```bash
@@ -120,7 +120,7 @@ AI_API_KEY=你的密钥
120120

121121
**镜像如何发布**
122122

123-
- 镜像地址:`ghcr.io/ingorewho/video-driven-skill-backend``ghcr.io/ingorewho/video-driven-skill-frontend`
123+
- 镜像地址:`ghcr.io/thought2code/video-driven-skill-backend``ghcr.io/thought2code/video-driven-skill-frontend`
124124
- **仅在推送版本 Git 标签时构建**(如 `v1.0.0``v1.2.3`)。仅推送到 `main` **不会**产生新镜像。
125125
- GHCR 上的 `latest` 标签始终指向**最近一次** `v*` 发行版。
126126

@@ -140,8 +140,8 @@ AI_API_KEY=你的密钥
140140

141141
```bash
142142
mkdir -p ~/video-driven-skill && cd ~/video-driven-skill
143-
curl -fsSL https://raw.githubusercontent.com/ingorewho/video-driven-skill/main/docker-compose.release.yml -o docker-compose.release.yml
144-
curl -fsSL https://raw.githubusercontent.com/ingorewho/video-driven-skill/main/.env.example -o .env
143+
curl -fsSL https://raw.githubusercontent.com/thought2code/video-driven-skill/main/docker-compose.release.yml -o docker-compose.release.yml
144+
curl -fsSL https://raw.githubusercontent.com/thought2code/video-driven-skill/main/.env.example -o .env
145145
# 编辑 .env — 填写 AI_API_KEY
146146
docker compose -f docker-compose.release.yml pull
147147
docker compose -f docker-compose.release.yml up -d
@@ -156,7 +156,7 @@ docker compose -f docker-compose.release.yml up -d
156156
**做什么:** 克隆仓库后使用 `docker-compose.yml` **本地构建**镜像。适合开发调试、需要未发版的 `main`,或使用国内镜像加速**本地构建**(与上方 GHCR 安装无关)。
157157

158158
```bash
159-
git clone https://github.com/ingorewho/video-driven-skill.git
159+
git clone https://github.com/thought2code/video-driven-skill.git
160160
cd video-driven-skill
161161
```
162162

docker-compose.release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ name: video-driven-skill
77

88
services:
99
backend:
10-
image: ghcr.io/ingorewho/video-driven-skill-backend:${VD_SKILL_IMAGE_TAG:-latest}
10+
image: ghcr.io/thought2code/video-driven-skill-backend:${VD_SKILL_IMAGE_TAG:-latest}
1111
environment:
1212
VIDEO_DRIVEN_SKILL_HOME: /data
1313
AI_API_KEY: ${AI_API_KEY:-}
@@ -27,7 +27,7 @@ services:
2727
restart: unless-stopped
2828

2929
frontend:
30-
image: ghcr.io/ingorewho/video-driven-skill-frontend:${VD_SKILL_IMAGE_TAG:-latest}
30+
image: ghcr.io/thought2code/video-driven-skill-frontend:${VD_SKILL_IMAGE_TAG:-latest}
3131
ports:
3232
- "${FRONTEND_PORT:-3000}:80"
3333
depends_on:

scripts/install.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ param(
1111
)
1212

1313
$ErrorActionPreference = "Stop"
14-
$Repo = "ingorewho/video-driven-skill"
14+
$Repo = "thought2code/video-driven-skill"
1515
$RawBase = "https://raw.githubusercontent.com/$Repo/$Ref"
1616

1717
if (-not (Get-Command docker -ErrorAction SilentlyContinue)) {

scripts/install.sh

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

66
set -euo pipefail
77

8-
REPO="ingorewho/video-driven-skill"
8+
REPO="thought2code/video-driven-skill"
99
REF="${VD_SKILL_REF:-main}"
1010
INSTALL_DIR="${VD_SKILL_INSTALL_DIR:-$HOME/video-driven-skill}"
1111
IMAGE_TAG="${VD_SKILL_IMAGE_TAG:-latest}"

0 commit comments

Comments
 (0)