deploy-skills-in-antigravity

deploy-skills-in-antigravity is a skill for Claude Code, Codex from derailed-dash/dazbo-agent-skills. It costs 71 tokens per session (2,120 once invoked), scanned D, original, MIT.

An installation workflow for downloading, installing, updating, and relocating agent skills to Antigravity's shared skills directory. Antigravity is a setup where multiple tools can use the same installed skills.

In plain words
What is it for?
Use it to install a skill from a repository or branch, update an existing skill, or move installed skills into the shared Antigravity directory.
Why use it?
It organizes skill installation and checks whether the required discovery tools are available. It also verifies the installation and can make the skill available across Antigravity tools.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to install a skill from a repository or branch, update an existing skill, or move installed skills into the shared Antigravity directory.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/derailed-dash/dazbo-agent-skills/deploy-skills-in-antigravity
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add derailed-dash/dazbo-agent-skills --skill deploy-skills-in-antigravity
Clone the repo
git clone --depth 1 https://github.com/derailed-dash/dazbo-agent-skills

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for deploy-skills-in-antigravity

README.md
[![agentmods](https://agentmods.dev/badge/skills/derailed-dash/dazbo-agent-skills/deploy-skills-in-antigravity/github.svg)](https://agentmods.dev/skills/derailed-dash/dazbo-agent-skills/deploy-skills-in-antigravity)
Your own site
<a href="https://agentmods.dev/skills/derailed-dash/dazbo-agent-skills/deploy-skills-in-antigravity"><img src="https://agentmods.dev/badge/skills/derailed-dash/dazbo-agent-skills/deploy-skills-in-antigravity/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for deploy-skills-in-antigravity

Your own site · 80×15
<a href="https://agentmods.dev/skills/derailed-dash/dazbo-agent-skills/deploy-skills-in-antigravity"><img src="https://agentmods.dev/badge/skills/derailed-dash/dazbo-agent-skills/deploy-skills-in-antigravity.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 71 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,120 The whole file, excluding the scripts and references it only reads on demand.
Security scan D 2 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00071 $0.02120
Opus 5 $0.00036 $0.01060
Sonnet 5 $0.00014 $0.00424
Haiku 4.5 $0.00007 $0.00212

Measured 12d ago against content hash 887d7584a992, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade D, and why

deploy-skills-in-antigravity scanned grade D with 2 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 12d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Reads agent configuration directoriesmediumAgent snooping

.claude/, .codex/, .gemini/ hold keys, settings and other credentials a mod has no legitimate need for.

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

Recursive force deletehighDestructive command

rm -rf with a variable or a broad path is one typo away from removing the wrong tree.

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/ski
skills/deploy-skills-in-antigravity/SKILL.md · 161 lines

How it starts

The opening of the file, as written. The whole thing — 161 lines — stays where its author put it; the contents beside it link to each section on GitHub.

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 6: Sync & Register with `skills.json`

Read the full file on GitHub · 161 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 12d ago First seen · 161 lines · 71 tokens per session scan D 887d7584a992

Subscribe to this mod's changes

deploy-skills-in-antigravity is a skill published in the GitHub repository derailed-dash/dazbo-agent-skills (24 stars, last pushed 6d ago), licensed MIT. It adds 71 tokens to every session and 2,120 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it D with 2 findings (reads agent configuration directories, recursive force delete). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

tdoc-orchestrator

A workflow coordinator for creating and formatting documents, then converting HTML documents into Word files. It identifies the user's document task and sends each stage to the appropriate specialist.

rojim666/SztuCode · 157 tokens

tencent-docs

A tool for creating, editing, reading, searching, and managing files in personal Tencent Docs, an online document service for individual QQ or WeChat accounts. It supports documents, spreadsheets, slides, and other listed file types.

rojim666/SztuCode · 273 tokens

tencent-saas-docs

A tool for creating, editing, reading, searching, and managing documents in Tencent Docs Enterprise, an online document service for business accounts. It works with documents, spreadsheets, slides, diagrams, and related files when an enterprise account is available.

rojim666/SztuCode · 271 tokens

find-plugin-file

This skill should be used when needing to locate files within the Claude Code plugins cache directory (/.claude/plugins/cache). Triggers include finding tool scripts, skill files, or any plugin resource when the hardcoded path is unknown or varies by plugin version. Use when slash commands or orchestrators need to…

closedloop-ai/claude-plugins · 70 tokens

notion

Use the Notion API to create, read, update Notion pages, data sources (databases), and blocks.

XAIHT/Tlamatini · 27 tokens

handoff

Generate a handoff note summarizing skill project state for a future session or collaborator. Use when crossing a non-persistent boundary (e.g., Chat upload), ending a session that made significant decisions, or when the user explicitly asks for a handoff note. Triggers on: "generate a handoff", "write a handoff…

snapsynapse/skill-provenance · 93 tokens