From 518d95df80a39f0bac88ab5b94d81ea6a4261fa3 Mon Sep 17 00:00:00 2001 From: KeiSei84 <2206745@gmail.com> Date: Mon, 25 May 2026 21:15:32 +0800 Subject: [PATCH] chore(public-prep): repoint public install + marketplace off private keigit MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Public installs/clones must not hit the author's private Forgejo (keigit.com, direct Vultr, no Cloudflare, fail2ban) — that server times out under load and is the root of the 443 connect failures. - web-install.sh: default KEISEI_REPO keigit -> github.com/KeiSeiLab/KeiSeiKit-1.0 - plugin.json: homepage -> https://keisei.app; repository -> github - .gitmodules: kei-registries submodule -> github.com/KeiSeiLab/kei-registries (so a public --recursive clone resolves; repo still private until launch) - README.md: manual `git clone` line -> github Left intentionally on keigit: the @keisei/mcp-server npm registry (docs state it's an author-operated mirror, not a community service). Repos stay PRIVATE on github until launch. Co-Authored-By: Claude Opus 4.7 (1M context) --- .gitmodules | 2 +- README.md | 2 +- plugin.json | 4 ++-- web-install.sh | 4 ++-- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.gitmodules b/.gitmodules index 64e4974..32cfcd2 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,4 +1,4 @@ [submodule "_blocks/registries"] path = _blocks/registries - url = https://keigit.com/keisei/kei-registries.git + url = https://github.com/KeiSeiLab/kei-registries.git shallow = true diff --git a/README.md b/README.md index 115134f..b625ec2 100644 --- a/README.md +++ b/README.md @@ -72,7 +72,7 @@ curl -fsSL https://install.keisei.app | bash -s -- --profile=dev --yes # CI /plugin install keisei@keisei-marketplace # Any MCP-compatible client (Cursor / Continue / Zed / Aider / etc) -git clone https://keigit.com/keisei/KeiSeiKit-1.0.git +git clone https://github.com/KeiSeiLab/KeiSeiKit-1.0.git cd KeiSeiKit-1.0 ./bootstrap.sh # interactive profile picker # or: ./install.sh --profile=minimal # direct diff --git a/plugin.json b/plugin.json index 4fb2f56..fc3d396 100644 --- a/plugin.json +++ b/plugin.json @@ -4,8 +4,8 @@ "displayName": "KeiSei", "description": "Constructor Pattern agent substrate — 59 agents, 67 skills, 39 hooks, 86 blocks. Rust primitives via classic ./install.sh.", "version": "0.38.0", - "homepage": "https://keigit.com/keisei/KeiSeiKit-1.0", - "repository": "https://keigit.com/keisei/KeiSeiKit-1.0.git", + "homepage": "https://keisei.app", + "repository": "https://github.com/KeiSeiLab/KeiSeiKit-1.0.git", "author": { "name": "Denis Parfionovich", "email": "parfionovich@keilab.io" diff --git a/web-install.sh b/web-install.sh index a602e65..871b218 100755 --- a/web-install.sh +++ b/web-install.sh @@ -14,7 +14,7 @@ # # Env / args: # KEISEI_ROOT install dir (default: $HOME/.local/share/keisei) -# KEISEI_REPO git URL (default: https://keigit.com/keisei/KeiSeiKit-1.0.git) +# KEISEI_REPO git URL (default: https://github.com/KeiSeiLab/KeiSeiKit-1.0.git) # KEISEI_REF branch/tag/sha (default: main) # --profile=NAME passed through to ./bootstrap.sh # --yes passed through to ./bootstrap.sh @@ -24,7 +24,7 @@ set -euo pipefail KEISEI_ROOT="${KEISEI_ROOT:-$HOME/.local/share/keisei}" -KEISEI_REPO="${KEISEI_REPO:-https://keigit.com/keisei/KeiSeiKit-1.0.git}" +KEISEI_REPO="${KEISEI_REPO:-https://github.com/KeiSeiLab/KeiSeiKit-1.0.git}" KEISEI_REF="${KEISEI_REF:-main}" PASS_THROUGH=()