fix(install): public install via keigit.com (Vultr) — no github needed

Что меняется:
- README.md: git clone instruction → https://keigit.com/keisei/KeiSeiKit-1.0.git
  (был приватный github, внешний clone падал 404)
- .gitmodules: kei-registries submodule → keigit.com/keisei/kei-registries.git
  (был приватный github, --recurse-submodules падал)
- web-install.sh: KEISEI_REPO default → https://keigit.com/keisei/...
  (был git@github.com:KeiSeiLab/...)
- install.sh: NO_EXECUTE check ПЕРЕД check_prereqs, чтобы --no-execute
  работал без установленных зависимостей.
- install/lib-args.sh: новый флаг --skip-prereqs (SKIP_PREREQS) — для CI
  и dry-run сценариев.
- marketplace.json + plugin.json: новые манифесты (version=0.38.0 из git tag)
  для Claude Code /plugin marketplace add + install.

На keigit.com (45.77.41.204, публичный) залиты публичные репо
keisei/KeiSeiKit-1.0 + keisei/kei-registries. Anonymous git clone работает.
GitHub mirror (KeiSeiLab/*) остаётся приватным как backup.
This commit is contained in:
Parfii-bot 2026-05-18 11:47:13 +08:00
parent d729a2e903
commit dca7985f9b
7 changed files with 49 additions and 12 deletions

2
.gitmodules vendored
View file

@ -1,4 +1,4 @@
[submodule "_blocks/registries"] [submodule "_blocks/registries"]
path = _blocks/registries path = _blocks/registries
url = https://github.com/KeiSeiLab/kei-registries.git url = https://keigit.com/keisei/kei-registries.git
shallow = true shallow = true

View file

@ -72,7 +72,7 @@ curl -fsSL https://install.keisei.app | bash -s -- --profile=dev --yes # CI
/plugin install keisei@keisei-marketplace /plugin install keisei@keisei-marketplace
# Any MCP-compatible client (Cursor / Continue / Zed / Aider / etc) # Any MCP-compatible client (Cursor / Continue / Zed / Aider / etc)
git clone https://github.com/KeiSeiLab/KeiSeiKit-1.0 git clone https://keigit.com/keisei/KeiSeiKit-1.0.git
cd KeiSeiKit-1.0 cd KeiSeiKit-1.0
./bootstrap.sh # interactive profile picker ./bootstrap.sh # interactive profile picker
# or: ./install.sh --profile=minimal # direct # or: ./install.sh --profile=minimal # direct

View file

@ -157,10 +157,23 @@ if onboarding_should_run; then
fi fi
onboarding_run onboarding_run
# --- prerequisites ------------------------------------------------------- # --- early exit: --no-execute или --skip-prereqs ДО prereqs --------------
check_prereqs # Это позволяет смотреть план без установленных зависимостей.
if [ "$NO_EXECUTE" = "1" ]; then
CONFIRM_LABEL="$PROFILE"
[ "$PROFILE" = "custom" ] && CONFIRM_LABEL="custom ($CUSTOM_PRIMS)"
CONFIRM_INPUT="$(printf '%s\n' $PROFILE_PRIMS | grep -v '^$' || true)"
printf '%s\n' "$CONFIRM_INPUT" | show_confirm_screen "$CONFIRM_LABEL" || true
say "--no-execute: plan resolved, exiting before install"
exit 0
fi
# --- confirm screen + --no-execute --------------------------------------- # --- prerequisites -------------------------------------------------------
if [ "$SKIP_PREREQS" != "1" ]; then
check_prereqs
fi
# --- confirm screen ------------------------------------------------------
CONFIRM_LABEL="$PROFILE" CONFIRM_LABEL="$PROFILE"
[ "$PROFILE" = "custom" ] && CONFIRM_LABEL="custom ($CUSTOM_PRIMS)" [ "$PROFILE" = "custom" ] && CONFIRM_LABEL="custom ($CUSTOM_PRIMS)"
CONFIRM_INPUT="$(printf '%s\n' $PROFILE_PRIMS | grep -v '^$' || true)" CONFIRM_INPUT="$(printf '%s\n' $PROFILE_PRIMS | grep -v '^$' || true)"
@ -169,11 +182,6 @@ if ! printf '%s\n' "$CONFIRM_INPUT" | show_confirm_screen "$CONFIRM_LABEL"; then
exit 1 exit 1
fi fi
if [ "$NO_EXECUTE" = "1" ]; then
say "--no-execute: plan resolved, exiting before install"
exit 0
fi
# --- execute install phases ---------------------------------------------- # --- execute install phases ----------------------------------------------
setup_target_dirs setup_target_dirs
scaffold_memory_index scaffold_memory_index

View file

@ -17,6 +17,7 @@ REMOVE_NAME=""
LIST_MODE=0 LIST_MODE=0
ASSUME_YES=0 ASSUME_YES=0
NO_EXECUTE=0 NO_EXECUTE=0
SKIP_PREREQS=0
REBUILD_RUST_LIST="" REBUILD_RUST_LIST=""
REBUILD_RUST_FLAG=0 REBUILD_RUST_FLAG=0
OUTCOME_DRY_RUN=0 OUTCOME_DRY_RUN=0
@ -130,6 +131,7 @@ parse_args() {
--list) LIST_MODE=1 ;; --list) LIST_MODE=1 ;;
--yes|-y) ASSUME_YES=1 ;; --yes|-y) ASSUME_YES=1 ;;
--no-execute) NO_EXECUTE=1 ;; --no-execute) NO_EXECUTE=1 ;;
--skip-prereqs) SKIP_PREREQS=1 ;;
--rebuild-rust) REBUILD_RUST_FLAG=1 ;; --rebuild-rust) REBUILD_RUST_FLAG=1 ;;
--rebuild-rust=*) REBUILD_RUST_FLAG=1; REBUILD_RUST_LIST="${arg#--rebuild-rust=}" ;; --rebuild-rust=*) REBUILD_RUST_FLAG=1; REBUILD_RUST_LIST="${arg#--rebuild-rust=}" ;;
--dry-run) OUTCOME_DRY_RUN=1 ;; --dry-run) OUTCOME_DRY_RUN=1 ;;

13
marketplace.json Normal file
View file

@ -0,0 +1,13 @@
{
"$schema": "https://json.schemastore.org/claude-code-marketplace.json",
"name": "keisei-marketplace",
"displayName": "KeiSei",
"description": "Constructor Pattern agent kit — agents, skills, hooks, Rust primitives.",
"version": "0.38.0",
"plugins": [
{
"name": "keisei",
"source": "."
}
]
}

14
plugin.json Normal file
View file

@ -0,0 +1,14 @@
{
"$schema": "https://json.schemastore.org/claude-code-plugin.json",
"name": "keisei",
"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",
"author": {
"name": "Denis Parfionovich",
"email": "parfionovich@keilab.io"
},
"license": "Apache-2.0"
}

View file

@ -14,7 +14,7 @@
# #
# Env / args: # Env / args:
# KEISEI_ROOT install dir (default: $HOME/.local/share/keisei) # KEISEI_ROOT install dir (default: $HOME/.local/share/keisei)
# KEISEI_REPO git URL (default: git@github.com:KeiSeiLab/KeiSeiKit-1.0.git) # KEISEI_REPO git URL (default: https://keigit.com/keisei/KeiSeiKit-1.0.git)
# KEISEI_REF branch/tag/sha (default: main) # KEISEI_REF branch/tag/sha (default: main)
# --profile=NAME passed through to ./bootstrap.sh # --profile=NAME passed through to ./bootstrap.sh
# --yes passed through to ./bootstrap.sh # --yes passed through to ./bootstrap.sh
@ -24,7 +24,7 @@
set -euo pipefail set -euo pipefail
KEISEI_ROOT="${KEISEI_ROOT:-$HOME/.local/share/keisei}" KEISEI_ROOT="${KEISEI_ROOT:-$HOME/.local/share/keisei}"
KEISEI_REPO="${KEISEI_REPO:-git@github.com:KeiSeiLab/KeiSeiKit-1.0.git}" KEISEI_REPO="${KEISEI_REPO:-https://keigit.com/keisei/KeiSeiKit-1.0.git}"
KEISEI_REF="${KEISEI_REF:-main}" KEISEI_REF="${KEISEI_REF:-main}"
PASS_THROUGH=() PASS_THROUGH=()