Source profileQuality 86/100Review permissions

derailed-dash/dazbo-agent-skills/skills/deploy-skills-in-antigravity/SKILL.md

deploy-skills-in-antigravity

Downloads, installs, and relocates new agent skills to the global Antigravity shared directory (`~/.gemini/config/skills/`) to make them available across all tools. Use when the user requests to download, install, import, setup, or update new agent skills, or asks to relocate installed skills.

Source repository stars
17
Declared platforms
0
Static risk flags
3
Last source update
2026-08-04
Source checked
2026-08-04

Decision brief

What it does—and where it fits

This skill provides a structured workflow for downloading, installing, and relocating new agent skills. It first checks for the availability of the find-skills skill to handle skill discovery, installation, or upgrades. If find-skills is unavailable, it falls back to direct CLI…

Best for

  • Use when the user requests to download, install, import, setup, or update new agent skills, or asks to relocate installed skills.

Not for

  • Tasks that require unconfirmed production actions or broad system permissions.
  • Environments where the pinned source and install steps cannot be inspected.

Compatibility matrix

Platform support, with evidence labels

PlatformStatusEvidenceWhat to check
CodexNot declaredNo explicit evidencePortability before use
Claude CodeNot declaredNo explicit evidencePortability before use
CursorNot declaredNo explicit evidencePortability before use
Gemini CLINot declaredNo explicit evidencePortability before use
Open the compatibility checker

Installation

Inspect first. Install second.

The source command is displayed only when detected. A safe inspection prompt is always available so your agent can explain every action before execution.

Source-detected install commandSource
npx skills add https://github.com/derailed-dash/dazbo-agent-skills --skill "skills/deploy-skills-in-antigravity"
Safe inspection promptEditorial

Inspect the Agent Skill "deploy-skills-in-antigravity" from https://github.com/derailed-dash/dazbo-agent-skills/blob/e3cfcae3c2c043853504bd337f23ad627847d8f8/skills/deploy-skills-in-antigravity/SKILL.md at commit e3cfcae3c2c043853504bd337f23ad627847d8f8. List every install step, command, network request, credential, file read/write, external action, and rollback step. Explain whether it fits my task. Do not install or execute anything until I approve.

Workflow

What the source asks the agent to do

  1. 01

    Installation and Relocation Workflow

    Copy this checklist and track your progress:

    Check if the find-skills skill is available in your active agent skills context.If find-skills is present, use it for discovering, installing, or upgrading skills in Step 2.If find-skills is NOT present, proceed to Step 2 using the direct CLI fallback commands detailed in this skill.
  2. 02

    Verification Loop

    Before completing the task, the agent MUST run the following verification sequence:

    Linux/macOS: ls -la /.gemini/config/skills/ (or ls -la /.agents/skills/)Windows: Get-ChildItem "$HOME\.gemini\config\skills" (or Get-ChildItem "$HOME\.agents\skills")Command: Read the first 10 lines of SKILL.md and confirm it starts with --- and contains valid name and description keys.
  3. 03

    1. Folder Existence and Relocation Verification

    Confirm the skill directory path (either /.gemini/config/skills/ if relocated, or /.agents/skills/ if not): - Linux/macOS: ls -la /.gemini/config/skills/ (or ls -la /.agents/skills/) - Windows: Get-ChildItem "$HOME\.gemini\config\skills" (or Get-ChildItem "$HOME\.agents\skills")

    Linux/macOS: ls -la /.gemini/config/skills/ (or ls -la /.agents/skills/)Windows: Get-ChildItem "$HOME\.gemini\config\skills" (or Get-ChildItem "$HOME\.agents\skills")Confirm the skill directory path (either /.gemini/config/skills/ if relocated, or /.agents/skills/ if not): - Linux/macOS: ls -la /.gemini/config/skills/ (or ls -la /.agents/skills/) - Windows: Get-ChildItem "$HOME\.gem…
  4. 04

    Triggers

    This skill MUST trigger whenever:

    The user asks to download, install, import, setup, or update a new agent skill.The user mentions adding a skill from a repository or a specific branch/commit.The user or agent refers to CLI commands such as npx skills add, skills add, skills install, or npx skills.
  5. 05

    Prerequisites

    Node.js: The system must have npx available to run the skills tool.

    Node.js: The system must have npx available to run the skills tool.Access Permissions: Ensure you have directory write permissions for /.agents/skills/ and, if relocating, /.gemini/config/skills/.- Node.js: The system must have npx available to run the skills tool. - Access Permissions: Ensure you have directory write permissions for /.agents/skills/ and, if relocating, /.gemini/config/skills/.

Permission review

Static risk signals and limitations

Reads files

low · line 28

The documentation asks the agent to read local files, directories, or repositories.

**Access Permissions**: Ensure you have directory write permissions for `~/.agents/skills/` and, if relocating, `~/.gemini/config/skills/`.

Network access

medium · line 59

The documentation includes network, browsing, or remote request actions.

Parse the user's request to identify the target repository URL, skill name, or branch.

Runs scripts

medium · line 60

The documentation asks the agent to run terminal commands or scripts.

Execute direct CLI commands using `run_command`:

Runs scripts

medium · line 68

The documentation asks the agent to run terminal commands or scripts.

You MUST STOP and ask the user using `ask_question` or a direct prompt before running any relocation script. Do NOT execute the relocation command until the user explicitly confirms.

Evidence record

Why each signal appears

EvidenceSourceComputedTestedEditorial
SignalValueEvidence typeMeaning
Quality score86/100ComputedDocumentation, specificity, maintenance, and trust rules
Repository stars17SourceRepository attention, not individual Skill quality
Compatibility0 platformsSourceDeclared in the catalog source record
Usage guideautomated source guideEditorialGenerated or reviewed according to the visible evidence level

Pinned source

Provenance and original SKILL.md

Repository
derailed-dash/dazbo-agent-skills
Skill path
skills/deploy-skills-in-antigravity/SKILL.md
Commit
e3cfcae3c2c043853504bd337f23ad627847d8f8
License
MIT
Collected
2026-08-04
Default branch
main
View the original SKILL.md

Deploying Skills in Antigravity

This skill provides a structured workflow for downloading, installing, and relocating new agent skills. It first checks for the availability of the find-skills skill to handle skill discovery, installation, or upgrades. If find-skills is unavailable, it falls back to direct CLI installation commands.

After installation or upgrade, if operating within an Antigravity environment (where ~/.gemini exists), it prompts the user to confirm whether they want the skills relocated to ~/.gemini/config/skills/ so they become available across all Antigravity tools.

Table of Contents

Triggers

This skill MUST trigger whenever:

  • The user asks to download, install, import, setup, or update a new agent skill.
  • The user mentions adding a skill from a repository or a specific branch/commit.
  • The user or agent refers to CLI commands such as npx skills add, skills add, skills install, or npx skills.
  • The user provides a repository URL (e.g. https://github.com/...) and asks to "add" or "integrate" its skills.

Prerequisites

  • Node.js: The system must have npx available to run the skills tool.
  • Access Permissions: Ensure you have directory write permissions for ~/.agents/skills/ and, if relocating, ~/.gemini/config/skills/.

Installation and Relocation Workflow

Copy this checklist and track your progress:

Skill Deployment Progress:
- [ ] Step 1: Check for `find-skills` availability
- [ ] Step 2: Install or upgrade skills
- [ ] Step 3: Check for Antigravity environment and prompt user for relocation
- [ ] Step 4: Relocate skills (if confirmed)
- [ ] Step 5: Verify that files are correctly positioned

Step 1: Check for find-skills availability

Before initiating an installation or upgrade:

  • Check if the find-skills skill is available in your active agent skills context.
  • If find-skills is present, use it for discovering, installing, or upgrading skills in Step 2.
  • If find-skills is NOT present, proceed to Step 2 using the direct CLI fallback commands detailed in this skill.

Step 2: Install or upgrade skills

Depending on find-skills availability:

  • When find-skills IS available:
    • Delegate skill search, selection, installation, or updates to find-skills.
    • For new skill installation: execute npx skills add <package> -g -y (or specific repository URL/branch flags).
    • For skill upgrades: execute npx skills update -g -y (or npx skills check).
  • When find-skills is NOT available:
    • Parse the user's request to identify the target repository URL, skill name, or branch.
    • Execute direct CLI commands using run_command:
      • Repository installation: npx skills add https://github.com/username/repo-name -y -g
      • Specific skill installation: npx skills add https://github.com/username/repo-name -y -g --skill skill-name
      • Skill upgrade: npx skills update -g -y

Step 3: Check for Antigravity environment and prompt user for relocation

[!IMPORTANT] MANDATORY USER CONFIRMATION GATE You MUST STOP and ask the user using ask_question or a direct prompt before running any relocation script. Do NOT execute the relocation command until the user explicitly confirms.

Default skill installation via npx skills places files into ~/.agents/skills/. Before relocating files:

  1. Check if ~/.gemini exists: Verify if the target environment is Antigravity by checking for the existence of ~/.gemini (e.g. [ -d "$HOME/.gemini" ] on Linux/macOS or Test-Path "$HOME\.gemini" on Windows).
    • If ~/.gemini does not exist, skip relocation. Installed skills will remain in ~/.agents/skills/.
  2. Prompt the User: If ~/.gemini does exist, explicitly ask the user whether they want the newly installed/updated skills relocated to ~/.gemini/config/skills/ to make them available across all Antigravity tools.
    • If the user confirms: proceed to Step 4 to perform the relocation.
    • If the user declines: leave the skills in ~/.agents/skills/.

Step 4: Relocate skills (if confirmed)

If the user confirmed relocation and ~/.gemini exists:

  • Use the OS-specific relocation command detailed in the OS-Specific Relocation Commands section to move skills from ~/.agents/skills/ to ~/.gemini/config/skills/.

Step 5: Verify that files are correctly positioned

Perform the checks outlined in the Verification Loop to ensure the skill is functional and correctly placed.

OS-Specific Relocation Commands

Depending on the operating system, execute the appropriate shell command or script:

Linux & macOS (Bash/Zsh)

Run this clean replacement script. It removes any existing versions in ~/.gemini/config/skills/ before moving the newly installed versions:

mkdir -p "$HOME/.gemini/config/skills/" && [ -d "$HOME/.agents/skills" ] && for d in "$HOME/.agents/skills"/*/; do [ -d "$d" ] && rm -rf "$HOME/.gemini/config/skills/$(basename "$d")" && mv "$d" "$HOME/.gemini/config/skills/"; done

Windows (PowerShell)

If operating on a Windows host environment, run the following PowerShell command:

$sourceDir = "$HOME\.agents\skills"
$destDir = "$HOME\.gemini\config\skills"
if (-not (Test-Path $destDir)) { New-Item -ItemType Directory -Path $destDir -Force }
Get-ChildItem -Path $sourceDir -Directory | ForEach-Object {
    $target = Join-Path $destDir $_.Name
    if (Test-Path $target) { Remove-Item -Path $target -Recurse -Force -ErrorAction SilentlyContinue }
    Move-Item -Path $_.FullName -Destination $destDir -Force
}

Verification Loop

Before completing the task, the agent MUST run the following verification sequence:

1. Folder Existence and Relocation Verification

Confirm the skill directory path (either ~/.gemini/config/skills/ if relocated, or ~/.agents/skills/ if not):

  • Linux/macOS: ls -la ~/.gemini/config/skills/ (or ls -la ~/.agents/skills/)
  • Windows: Get-ChildItem "$HOME\.gemini\config\skills" (or Get-ChildItem "$HOME\.agents\skills")

2. Frontmatter & Integrity Check

Verify that the SKILL.md file exists in the target directory and has a valid YAML frontmatter block:

  • Command: Read the first 10 lines of SKILL.md and confirm it starts with --- and contains valid name and description keys.

3. Subdirectory Validation

For complex skills, ensure that nested folders (such as references/, evals/, or scripts/) are present and populated:

  • Command: Verify that critical folders are present and not empty.

4. Global Registry Check

Confirm the Skills CLI successfully registers and lists the skill:

  • Command: npx skills ls -g (or npx skills ls -g --json)
  • Success Criteria: The output must list the skill name alongside its absolute path.

5. Permission & Readability Check

Ensure that the skill files are readable by the active shell process to prevent loader failures during execution.

Alternatives

Compare before choosing

Computed 9647,525

prisma/prisma

prisma-8-migration-review

Review what Prisma Next migrations will run on merge or deploy, render the migration graph, resolve concurrent / diamond-convergence conflicts, and configure environment refs for CI. Use for "what migrations are going to run", "what runs on deploy", merge conflict, diamond convergence, concurrent migrations, migration status, ref management, staging, production, MIGRATION.DIVERGED, MIGRATION.NO_MARKER, MIGRATION.MARKER_NOT_IN_HISTORY, prisma migrate status, prisma migrate diff, prisma migrate re

Computed 9618,447

teng-lin/notebooklm-py

notebooklm

Complete API for Google NotebookLM - full programmatic access including features not in the web UI. Create notebooks, add sources, generate all artifact types, download in multiple formats. Activates on explicit /notebooklm or intent like "create a podcast about X"

Computed 9614,225

wanshuiyin/Auto-claude-code-research-in-sleep

grant-proposal

Use it for deployment and design tasks; the detail page covers purpose, installation, and practical steps.

Computed 9610,895

huggingface/skills

huggingface-lora-space-builder

Build and publish a Gradio demo on Hugging Face Spaces for a user-provided LoRA. Use when someone asks to create, generate, ship, or publish a Space, demo, Gradio app, or playground for a LoRA — including LoRAs for Qwen-Image, Qwen-Image-Edit, LTX-Video, Wan, FLUX, SDXL, or other diffusion base models. Also triggers when someone describes a LoRA they trained or hosts on the Hub and wants to share it. Covers picking the right base pipeline and `diffusers` inference recipe, designing a UI tailored