diff --git a/.claude-plugin/marketplace.json b/.claude-plugin/marketplace.json index 232f1c9..3890c8d 100644 --- a/.claude-plugin/marketplace.json +++ b/.claude-plugin/marketplace.json @@ -2,7 +2,7 @@ "name": "rootiest-skills", "owner": { "name": "Rootiest", - "url": "https://git.rootiest.dev/rootiest/ai-skills" + "url": "https://git.rootiest.dev/rootiest/rootiest-ai" }, "description": "Reusable AI skills for Claude Code and Antigravity CLI", "plugins": [ diff --git a/README.md b/README.md index 4c8ed57..6a5a4ac 100644 --- a/README.md +++ b/README.md @@ -131,7 +131,7 @@ install path for Claude Code — `install.sh` remains available as a cross-tool fallback (and is the only supported path for Antigravity CLI today). ``` -/plugin marketplace add https://git.rootiest.dev/rootiest/ai-skills.git +/plugin marketplace add https://git.rootiest.dev/rootiest/rootiest-ai.git /plugin install git-publish-workflow@rootiest-skills ``` @@ -154,37 +154,37 @@ The intended usage is a single `curl | bash` command. The installer fetches and **Install all skills for both Claude Code and Antigravity CLI:** ```bash -curl -sL https://git.rootiest.dev/rootiest/ai-skills/raw/branch/main/install.sh | bash -s -- --all +curl -sL https://git.rootiest.dev/rootiest/rootiest-ai/raw/branch/main/install.sh | bash -s -- --all ``` **Install all skills for Claude Code only:** ```bash -curl -sL https://git.rootiest.dev/rootiest/ai-skills/raw/branch/main/install.sh | bash -s -- --all --claude +curl -sL https://git.rootiest.dev/rootiest/rootiest-ai/raw/branch/main/install.sh | bash -s -- --all --claude ``` **Install all skills for Antigravity CLI only:** ```bash -curl -sL https://git.rootiest.dev/rootiest/ai-skills/raw/branch/main/install.sh | bash -s -- --all --antigravity +curl -sL https://git.rootiest.dev/rootiest/rootiest-ai/raw/branch/main/install.sh | bash -s -- --all --antigravity ``` **Install a single skill for both tools:** ```bash -curl -sL https://git.rootiest.dev/rootiest/ai-skills/raw/branch/main/install.sh | bash -s -- systematic-enumeration +curl -sL https://git.rootiest.dev/rootiest/rootiest-ai/raw/branch/main/install.sh | bash -s -- systematic-enumeration ``` **Install specific skills for Claude Code only:** ```bash -curl -sL https://git.rootiest.dev/rootiest/ai-skills/raw/branch/main/install.sh | bash -s -- --claude git-publish-workflow readme-sync-audit +curl -sL https://git.rootiest.dev/rootiest/rootiest-ai/raw/branch/main/install.sh | bash -s -- --claude git-publish-workflow readme-sync-audit ``` **Install specific skills for Antigravity CLI only:** ```bash -curl -sL https://git.rootiest.dev/rootiest/ai-skills/raw/branch/main/install.sh | bash -s -- --antigravity systematic-enumeration git-publish-workflow +curl -sL https://git.rootiest.dev/rootiest/rootiest-ai/raw/branch/main/install.sh | bash -s -- --antigravity systematic-enumeration git-publish-workflow ``` > **Note:** Providing explicit skill names alongside `--all` causes the named skills to take precedence — only those skills are installed. @@ -220,7 +220,7 @@ curl -sL https://git.rootiest.dev/rootiest/ai-skills/raw/branch/main/install.sh Example — installing to a project-local skills directory: ```bash -curl -sL https://git.rootiest.dev/rootiest/ai-skills/raw/branch/main/install.sh \ +curl -sL https://git.rootiest.dev/rootiest/rootiest-ai/raw/branch/main/install.sh \ | CLAUDE_SKILLS_DIR=./.claude/skills bash -s -- --claude systematic-enumeration ``` @@ -230,16 +230,16 @@ curl -sL https://git.rootiest.dev/rootiest/ai-skills/raw/branch/main/install.sh ```bash # Install everything, both tools (simplest possible invocation) -curl -sL https://git.rootiest.dev/rootiest/ai-skills/raw/branch/main/install.sh | bash -s -- --all +curl -sL https://git.rootiest.dev/rootiest/rootiest-ai/raw/branch/main/install.sh | bash -s -- --all # Install one skill, Claude only -curl -sL https://git.rootiest.dev/rootiest/ai-skills/raw/branch/main/install.sh | bash -s -- --claude git-publish-workflow +curl -sL https://git.rootiest.dev/rootiest/rootiest-ai/raw/branch/main/install.sh | bash -s -- --claude git-publish-workflow # Install two skills, Antigravity only -curl -sL https://git.rootiest.dev/rootiest/ai-skills/raw/branch/main/install.sh | bash -s -- --antigravity systematic-enumeration readme-sync-audit +curl -sL https://git.rootiest.dev/rootiest/rootiest-ai/raw/branch/main/install.sh | bash -s -- --antigravity systematic-enumeration readme-sync-audit # Override install directory, Claude only -curl -sL https://git.rootiest.dev/rootiest/ai-skills/raw/branch/main/install.sh \ +curl -sL https://git.rootiest.dev/rootiest/rootiest-ai/raw/branch/main/install.sh \ | CLAUDE_SKILLS_DIR=~/my-skills bash -s -- --claude --all ``` @@ -251,7 +251,7 @@ If you prefer to inspect the script before running it: ```bash # Download -curl -sL https://git.rootiest.dev/rootiest/ai-skills/raw/branch/main/install.sh -o install.sh +curl -sL https://git.rootiest.dev/rootiest/rootiest-ai/raw/branch/main/install.sh -o install.sh # Review less install.sh @@ -263,8 +263,8 @@ bash install.sh --all Or clone the repository and run locally: ```bash -git clone https://git.rootiest.dev/rootiest/ai-skills.git -cd ai-skills +git clone https://git.rootiest.dev/rootiest/rootiest-ai.git +cd rootiest-ai bash install.sh --all ``` diff --git a/install.sh b/install.sh index 54d1f9f..3e1b740 100755 --- a/install.sh +++ b/install.sh @@ -1,15 +1,15 @@ #!/usr/bin/env bash # install.sh — AI Skill Installer -# Install skills from rootiest/ai-skills into Claude Code and/or Antigravity CLI +# Install skills from rootiest/rootiest-ai into Claude Code and/or Antigravity CLI # # Usage: bash <(curl -sL ) [OPTIONS] [SKILL...] set -euo pipefail # ── Constants ────────────────────────────────────────────────────────────────── -readonly BASE_URL="https://git.rootiest.dev/rootiest/ai-skills/raw/branch/main" -readonly REPO_URL="https://git.rootiest.dev/rootiest/ai-skills.git" -readonly API_URL="https://git.rootiest.dev/api/v1/repos/rootiest/ai-skills/contents/skills" +readonly BASE_URL="https://git.rootiest.dev/rootiest/rootiest-ai/raw/branch/main" +readonly REPO_URL="https://git.rootiest.dev/rootiest/rootiest-ai.git" +readonly API_URL="https://git.rootiest.dev/api/v1/repos/rootiest/rootiest-ai/contents/skills" # Overridable via environment CLAUDE_SKILLS_DIR="${CLAUDE_SKILLS_DIR:-${HOME}/.claude/skills}" @@ -58,7 +58,7 @@ sep() { printf "${BOLD_CYAN}%s${RESET}\n" "─────────── show_help() { printf "\n" printf "${BOLD_CYAN} AI Skill Installer${RESET}\n" - printf "${DIM} Install skills from rootiest/ai-skills into Claude Code and Antigravity CLI${RESET}\n" + printf "${DIM} Install skills from rootiest/rootiest-ai into Claude Code and Antigravity CLI${RESET}\n" printf "\n" printf "${BOLD} USAGE${RESET}\n" printf " install.sh [OPTIONS] [SKILL...]\n" diff --git a/manifest.yaml b/manifest.yaml index b3f4776..565ad65 100644 --- a/manifest.yaml +++ b/manifest.yaml @@ -4,7 +4,7 @@ marketplace: name: rootiest-skills owner: name: Rootiest - url: https://git.rootiest.dev/rootiest/ai-skills + url: https://git.rootiest.dev/rootiest/rootiest-ai description: Reusable AI skills for Claude Code and Antigravity CLI bundle: