refactor(skills): rename repo claude-skills → skills (Gitea + local + references + update-claude-skills → update-skills v0.2.0)

This commit is contained in:
2026-08-12 13:16:40 +03:00
parent cf8a14e441
commit 10361c42f8
14 changed files with 36 additions and 36 deletions

View File

@@ -1,6 +1,6 @@
#!/usr/bin/env python3
"""
build-hermes.py — Convert claude-skills sources to Hermes-flavour layout.
build-hermes.py — Convert skills sources to Hermes-flavour layout.
Reads: hermes/mapping.yaml
skills/<name>/ (auto mode)
@@ -114,7 +114,7 @@ def render_skipped_md(skipped: list[tuple[str, str]], pending: list[tuple[str, d
def main() -> int:
parser = argparse.ArgumentParser(description="Convert claude-skills sources to Hermes-flavour layout.")
parser = argparse.ArgumentParser(description="Convert skills sources to Hermes-flavour layout.")
parser.add_argument(
"--repo-root",
type=Path,

View File

@@ -1,7 +1,7 @@
# update.ps1 -- Full uplift cycle for claude-skills on Windows (PowerShell)
# update.ps1 -- Full uplift cycle for skills on Windows (PowerShell)
#
# Steps:
# 1. git pull --ff-only in claude-skills repo
# 1. git pull --ff-only in skills repo
# 2. Conditionally rebuild projects-meta-mcp (if source changed)
# 3. Conditionally rebuild interns-mcp (if source changed)
# 4. Install all skills via install.ps1
@@ -44,7 +44,7 @@ if (Test-Path $target) {
# -- Step 1: git pull ---------------------------------------------------------
Write-Host "`n[update] Pulling claude-skills repo..." -ForegroundColor Cyan
Write-Host "`n[update] Pulling skills repo..." -ForegroundColor Cyan
Push-Location $root
$dirty = git status --porcelain 2>$null

View File

@@ -1,8 +1,8 @@
#!/usr/bin/env bash
# update.sh — Full uplift cycle for claude-skills on Linux/macOS (and git-bash on Windows)
# update.sh — Full uplift cycle for skills on Linux/macOS (and git-bash on Windows)
#
# Steps:
# 1. git pull --ff-only in claude-skills repo
# 1. git pull --ff-only in skills repo
# 2. Conditionally rebuild projects-meta-mcp (if source changed)
# 3. Conditionally rebuild interns-mcp (if source changed)
# 4. Install all skills via install.sh
@@ -56,7 +56,7 @@ fi
# ── Step 1: git pull ────────────────────────────────────────────────────────
info "Pulling claude-skills repo..."
info "Pulling skills repo..."
cd "$ROOT"
if [[ -n "$(git status --porcelain)" ]]; then