fix(docs): correct install one-liner raw URL (Gitea, not GitLab) + v0.2.1

git.codelab.vc is Gitea/Forgejo: raw path is /raw/branch/<ref>/, the GitLab-style
/-/raw/main/ returned 404 so the one-command install was broken. The one-liner
now also fetches the script from the stable channel (vetted), not main.
This commit is contained in:
2026-07-16 15:24:47 +03:00
parent de006ccf0c
commit 1df4ea1b72
4 changed files with 11 additions and 4 deletions

View File

@@ -4,6 +4,13 @@
## [Unreleased]
## [0.2.1] — 2026-07-16
### Fixed
- Установочный one-liner: `git.codelab.vc` — это Gitea/Forgejo, а не GitLab; правильный
raw-путь — `/raw/branch/stable/install.sh` (старый `/-/raw/main/` отдавал 404, «установка
одной командой» не работала). Скрипт теперь берётся с канала `stable` (vetted).
## [0.2.0] — 2026-07-16
### Fixed

View File

@@ -13,7 +13,7 @@ guardrails и скиллы со знанием того, где у нас код
### Установка (одной командой)
```bash
curl -fsSL https://git.codelab.vc/ai/pi-kit/-/raw/main/install.sh | bash
curl -fsSL https://git.codelab.vc/ai/pi-kit/raw/branch/stable/install.sh | bash
```
Скрипт проверит Node.js (>= 20), поставит Pi (если нет), установит этот пакет, **спросит
@@ -29,7 +29,7 @@ Pi провайдер-агностичен — модель/провайдера
Профиль можно задать заранее (для CI/неинтерактивной установки):
```bash
PI_KIT_PROFILE=backend curl -fsSL https://git.codelab.vc/ai/pi-kit/-/raw/main/install.sh | bash
PI_KIT_PROFILE=backend curl -fsSL https://git.codelab.vc/ai/pi-kit/raw/branch/stable/install.sh | bash
```
### Профили и скилы

View File

@@ -3,7 +3,7 @@
# pi-kit bootstrap — one-shot setup for new engineers. Idempotent: safe to re-run.
#
# Usage:
# curl -fsSL https://git.codelab.vc/ai/pi-kit/-/raw/main/install.sh | bash
# curl -fsSL https://git.codelab.vc/ai/pi-kit/raw/branch/stable/install.sh | bash
# # or, from a checkout:
# ./install.sh
#

View File

@@ -1,6 +1,6 @@
{
"name": "@mvideo/pi-kit",
"version": "0.2.0",
"version": "0.2.1",
"private": true,
"type": "module",
"description": "Корпоративный Pi-пакет: шаблоны задач, guardrails и скиллы для команды.",