skills-managing

skills-managing is a skill for Claude Code, Codex from VidyFoo/antigravity-skill-engine. It costs 36 tokens per session (1,584 once invoked), scanned A, original, MIT.

A guide for creating and managing ASE skills, including their folders, registry entries, and activation rules. ASE is the Antigravity Skill Engine.

In plain words
What is it for?
Use it to create, import, organize, document, or debug skills in the Registry V3.1 structure.
Why use it?
It explains how to add skills correctly and diagnose problems when the system cannot find or activate them.

Skill for Claude CodeCodex

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

Good fit Use it to create, import, organize, document, or debug skills in the Registry V3.1 structure.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/vidyfoo/antigravity-skill-engine/skills-managing
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 VidyFoo/antigravity-skill-engine --skill skills-managing
Clone the repo
git clone --depth 1 https://github.com/VidyFoo/antigravity-skill-engine

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 skills-managing

README.md
[![agentmods](https://agentmods.dev/badge/skills/vidyfoo/antigravity-skill-engine/skills-managing.svg)](https://agentmods.dev/skills/vidyfoo/antigravity-skill-engine/skills-managing)
Your own site
<a href="https://agentmods.dev/skills/vidyfoo/antigravity-skill-engine/skills-managing"><img src="https://agentmods.dev/badge/skills/vidyfoo/antigravity-skill-engine/skills-managing.svg" alt="Measured on agentmods" height="20"></a>
Per session 36 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,584 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector warn 7 Sept 2026
SkillSpector: 2 findings, up to high

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • high Rogue Agent · line 109
    Skill modifies its own code, configuration, or behavior at runtime. Self-modification enables an agent to escalate privileges, disable safety constraints, or install persistent backdoors.
    Fix: Prevent the skill from modifying its own code, SKILL.md, or configuration files. Treat skill files as read-only at runtime.
  • medium Rogue Agent · line 147
    Skill establishes unauthorized persistence across sessions via cron jobs, startup scripts, or state files. Session persistence allows an attacker to maintain access beyond the current interaction.
    Fix: Remove any persistence mechanisms (cron jobs, startup scripts, state files). Skills should not maintain state across sessions without explicit user consent.
How audits are shown
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.00036 $0.01584
Opus 5 $0.00018 $0.00792
Sonnet 5 $0.00007 $0.00317
Haiku 4.5 $0.00004 $0.00158

Measured 7d ago against content hash 924617e1f6a4, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-07, from the pricing page.

Security

Grade A, and why

skills-managing scanned grade A with 0 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 7d ago.

The scan reads SKILL.md. This mod also ships 1 executable file (scripts/safe_replace.py), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.agent/skills/3-sys/skills-managing/SKILL.md · 224 lines

How it starts

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

ASE Skill Management Guide (V3.1)

Purpose

Comprehensive guide for creating and managing skills in the Antigravity Skill Engine (ASE), following the Registry V3.1 architecture with domain-based organization and semantic matching.

When to Use This Skill

  • Creating or adding new skills
  • Importing skills from external sources
  • Understanding registry structure and routing
  • Debugging skill activation issues
  • Maintaining skill documentation

System Architecture (V3.1)

Directory Structure

Skills are organized by domain categories:

.agent/skills/
├── registry.json              # V3.1 索引 (唯一真理来源)
│
├── 1-dev/                     # 开发域
│   └── {skill-name}/SKILL.md
├── 2-audit/                   # 审计域
│   └── {skill-name}/SKILL.md
├── 3-sys/                     # 系统域
│   └── {skill-name}/SKILL.md
├── 4-tools/                   # 工具域
│   └── {skill-name}/SKILL.md
└── external/                  # 外部依赖
    └── {skill-name}/SKILL.md

Skill Folder Structure

{skill-name}/
├── SKILL.md (required)       # Main skill content
├── resources/                # Templates, guides, assets
└── scripts/                  # Optional executable tooling

Registry V3.1 Schema

{
    "version": "3.1.0",
    "categories": {
        "1-dev": "DEV (开发域)",
        "2-audit": "AUDIT (审计域)",
        "3-sys": "SYS (系统域)",
        "4-tools": "TOOLS (工具域)",
        "external": "EXTERNAL (外部依赖)"
    },
    "skills": {
        "X.Y": {
            "id": "skill-name",
            "name": "X.Y Display Name",
            "category": "category-id",
            "description": "Copied from SKILL.md frontmatter",
            "skill_path": ".agent/skills/{category}/{skill-name}/SKILL.md"
        }
    }
}

关键变更 (V3.1): 移除了 intent_keywords,仅使用 description 进行语义匹配。


Mode Selection

Mode Trigger Description
CREATE create, new, add Create a new skill from scratch
INGEST import, clone, ingest Import an existing skill from git
HARVEST harvest, archive, save resource Archive a reusable resource to a skill

Read the full file on GitHub · 224 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. 7d ago First seen · 224 lines · 36 tokens per session scan A 924617e1f6a4

Subscribe to this mod's changes

skills-managing is a skill published in the GitHub repository VidyFoo/antigravity-skill-engine (12 stars, last pushed 3d ago), licensed MIT. It adds 36 tokens to every session and 1,584 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. 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

Skill Development

This skill should be used when the user wants to "create a skill", "add a skill to plugin", "write a new skill", "improve skill description", "organize skill content", or needs guidance on skill structure, progressive disclosure, or skill development best practices for Claude Code plugins.

dean9703111/ai-agent-skill-for-video-workflow · 63 tokens

SRT Card Annotator

This skill should be used when the user asks to "add reference cards to srt", "annotate srt with cards", "insert cards into subtitles", "generate srt with card annotations", "add 字卡 to srt", or needs to add contextual reference cards below subtitle text blocks in SRT files.

dean9703111/ai-agent-skill-for-video-workflow · 70 tokens

SRT Enhancer

A skill for improving SRT subtitle files, which store timed captions, by comparing them with an original script or source text.

dean9703111/ai-agent-skill-for-video-workflow · 98 tokens

SRT Social Summary

A writing tool that turns SRT subtitle files—text with timing information—into summaries and platform-specific social media descriptions.

dean9703111/ai-agent-skill-for-video-workflow · 91 tokens

Audio to SRT Converter

This skill should be used when the user asks to "convert audio to srt", "generate subtitles from audio", "create srt from mp3/wav/m4a/flac", "transcribe audio to subtitles", or needs to generate SRT subtitle files from audio files (MP3, WAV, M4A, FLAC, etc.) with customizable character limits and timeline adjustments.

dean9703111/ai-agent-skill-for-video-workflow · 85 tokens

template-selector

Recommend the right skill bundle, agent, and workflow sequence for a new project — so media professionals can start producing instead of browsing a 394-skill library.

ur-grue/autopunk-media-skills · 35 tokens