chore: change repository name/path
Generate plugin manifests / validate (push) Skipped
Generate plugin manifests / generate (push) Failing after 0s

This commit is contained in:
2026-08-24 14:40:49 -04:00
parent aee7facbae
commit 5a4f08e377
4 changed files with 22 additions and 22 deletions
+1 -1
View File
@@ -2,7 +2,7 @@
"name": "rootiest-skills", "name": "rootiest-skills",
"owner": { "owner": {
"name": "Rootiest", "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", "description": "Reusable AI skills for Claude Code and Antigravity CLI",
"plugins": [ "plugins": [
+15 -15
View File
@@ -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). 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 /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:** **Install all skills for both Claude Code and Antigravity CLI:**
```bash ```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:** **Install all skills for Claude Code only:**
```bash ```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:** **Install all skills for Antigravity CLI only:**
```bash ```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:** **Install a single skill for both tools:**
```bash ```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:** **Install specific skills for Claude Code only:**
```bash ```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:** **Install specific skills for Antigravity CLI only:**
```bash ```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. > **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: Example — installing to a project-local skills directory:
```bash ```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 | 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 ```bash
# Install everything, both tools (simplest possible invocation) # 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 # 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 # 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 # 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 | CLAUDE_SKILLS_DIR=~/my-skills bash -s -- --claude --all
``` ```
@@ -251,7 +251,7 @@ If you prefer to inspect the script before running it:
```bash ```bash
# Download # 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 # Review
less install.sh less install.sh
@@ -263,8 +263,8 @@ bash install.sh --all
Or clone the repository and run locally: Or clone the repository and run locally:
```bash ```bash
git clone https://git.rootiest.dev/rootiest/ai-skills.git git clone https://git.rootiest.dev/rootiest/rootiest-ai.git
cd ai-skills cd rootiest-ai
bash install.sh --all bash install.sh --all
``` ```
+5 -5
View File
@@ -1,15 +1,15 @@
#!/usr/bin/env bash #!/usr/bin/env bash
# install.sh — AI Skill Installer # 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 <url>) [OPTIONS] [SKILL...] # Usage: bash <(curl -sL <url>) [OPTIONS] [SKILL...]
set -euo pipefail set -euo pipefail
# ── Constants ────────────────────────────────────────────────────────────────── # ── Constants ──────────────────────────────────────────────────────────────────
readonly BASE_URL="https://git.rootiest.dev/rootiest/ai-skills/raw/branch/main" readonly BASE_URL="https://git.rootiest.dev/rootiest/rootiest-ai/raw/branch/main"
readonly REPO_URL="https://git.rootiest.dev/rootiest/ai-skills.git" readonly REPO_URL="https://git.rootiest.dev/rootiest/rootiest-ai.git"
readonly API_URL="https://git.rootiest.dev/api/v1/repos/rootiest/ai-skills/contents/skills" readonly API_URL="https://git.rootiest.dev/api/v1/repos/rootiest/rootiest-ai/contents/skills"
# Overridable via environment # Overridable via environment
CLAUDE_SKILLS_DIR="${CLAUDE_SKILLS_DIR:-${HOME}/.claude/skills}" CLAUDE_SKILLS_DIR="${CLAUDE_SKILLS_DIR:-${HOME}/.claude/skills}"
@@ -58,7 +58,7 @@ sep() { printf "${BOLD_CYAN}%s${RESET}\n" "───────────
show_help() { show_help() {
printf "\n" printf "\n"
printf "${BOLD_CYAN} AI Skill Installer${RESET}\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 "\n"
printf "${BOLD} USAGE${RESET}\n" printf "${BOLD} USAGE${RESET}\n"
printf " install.sh [OPTIONS] [SKILL...]\n" printf " install.sh [OPTIONS] [SKILL...]\n"
+1 -1
View File
@@ -4,7 +4,7 @@ marketplace:
name: rootiest-skills name: rootiest-skills
owner: owner:
name: Rootiest 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 description: Reusable AI skills for Claude Code and Antigravity CLI
bundle: bundle: