From 18c04f5874941a73b9b48160686412181964e776 Mon Sep 17 00:00:00 2001 From: red chen Date: Fri, 17 Jul 2026 16:30:16 +0800 Subject: [PATCH] Remove third-party identity from package metadata; point docs to Gitea Drop former GitHub org/user references and personal email from plugin metadata. Clone URLs and repository fields now point at the Gitea host. --- CONTRIBUTING.md | 4 ++-- README.md | 10 +++++----- README.zh-CN.md | 4 ++-- package.json | 6 +++--- plugin.json | 7 +++---- 5 files changed, 15 insertions(+), 16 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index ef2a0ff..951b48f 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -3,8 +3,8 @@ ## Setup ```bash -git clone https://github.com/sooneocean/grok-build-hud.git -cd grok-build-hud +git clone http://172.238.15.154:3000/Redredchen01/grok-hud.git +cd grok-hud npm install npm test ``` diff --git a/README.md b/README.md index 28e6d26..e9650cf 100644 --- a/README.md +++ b/README.md @@ -30,8 +30,8 @@ Built for Grok Build sessions: context window, quota, **input/output/cache token ### A. One-shot script (recommended) ```bash -git clone https://github.com/sooneocean/grok-build-hud.git -cd grok-build-hud +git clone http://172.238.15.154:3000/Redredchen01/grok-hud.git +cd grok-hud bash scripts/install.sh ``` @@ -40,8 +40,8 @@ This runs `npm install` → `build` → `npm link` → dashboard + hooks → `-- ### B. Manual steps ```bash -git clone https://github.com/sooneocean/grok-build-hud.git -cd grok-build-hud +git clone http://172.238.15.154:3000/Redredchen01/grok-hud.git +cd grok-hud npm install npm run build npm link # puts grok-build-hud / grok-hud / grok-hud-run on PATH @@ -51,7 +51,7 @@ npm run install-local ### C. From an already-cloned path ```bash -cd /path/to/grok-build-hud +cd /path/to/grok-hud bash scripts/install.sh ``` diff --git a/README.zh-CN.md b/README.zh-CN.md index 26ff354..f4d66f3 100644 --- a/README.zh-CN.md +++ b/README.zh-CN.md @@ -32,8 +32,8 @@ ### 方式 A:从 GitHub 克隆(推荐别人安装时用) ```bash -git clone https://github.com/sooneocean/grok-build-hud.git -cd grok-build-hud +git clone http://172.238.15.154:3000/Redredchen01/grok-hud.git +cd grok-hud bash scripts/install.sh ``` diff --git a/package.json b/package.json index 77990b3..89f6128 100644 --- a/package.json +++ b/package.json @@ -53,12 +53,12 @@ "license": "MIT", "repository": { "type": "git", - "url": "git+https://github.com/sooneocean/grok-build-hud.git" + "url": "http://172.238.15.154:3000/Redredchen01/grok-hud.git" }, "bugs": { - "url": "https://github.com/sooneocean/grok-build-hud/issues" + "url": "http://172.238.15.154:3000/Redredchen01/grok-hud/issues" }, - "homepage": "https://github.com/sooneocean/grok-build-hud#readme", + "homepage": "http://172.238.15.154:3000/Redredchen01/grok-hud", "devDependencies": { "@types/node": "^22.13.10", "typescript": "^5.8.2" diff --git a/plugin.json b/plugin.json index d8eebd5..a4a6148 100644 --- a/plugin.json +++ b/plugin.json @@ -3,11 +3,10 @@ "version": "0.3.9", "description": "Live multi-line status strip for Grok Build: context, quota, tokens, tools, todos, git", "author": { - "name": "sooneocean", - "email": "redredchen01@gmail.com" + "name": "Redredchen01" }, - "homepage": "https://github.com/sooneocean/grok-build-hud", - "repository": "https://github.com/sooneocean/grok-build-hud", + "homepage": "http://172.238.15.154:3000/Redredchen01/grok-hud", + "repository": "http://172.238.15.154:3000/Redredchen01/grok-hud", "commands": "./commands", "skills": "./skills", "hooks": "./hooks/hooks.json"