بنقرة واحدة
skill-management
Install, uninstall, and list agent skills. Handles NTFS hardlinks for auto-sync with source repos.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Install, uninstall, and list agent skills. Handles NTFS hardlinks for auto-sync with source repos.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
CLI tool for patching files and resolving file includes - useful when working with LLMs
How to maintain project task docs and handle "whats next" requests. Read this when the user asks whats next or at conversation start.
Git workflow conventions — commit hygiene, squashing, force-push, and interactive rebase patterns.
Lightweight Bun process manager. Use bgrun to start, stop, restart, watch, and monitor background processes — with built-in web dashboard, TOML config, Docker support, and programmatic API.
Core behavioral rule: say 'I DON'T KNOW' when you don't actually know something. Never fabricate confident answers from incomplete information.
Zero-dependency function performance measurement with hierarchical logging. Use this to structure ALL programs as measured, observable pipelines.
| name | skill-management |
| description | Install, uninstall, and list agent skills. Handles NTFS hardlinks for auto-sync with source repos. |
This skill handles installing, uninstalling, and listing agent skills.
Skills live at: C:\Users\galaxywin\.gemini\antigravity\skills\
Each skill is a folder containing a SKILL.md file with YAML frontmatter (name, description).
When the user says "install skill" and provides a path (to a SKILL.md or a directory containing one):
SKILL.md inside it.name field — this becomes the folder name.skills/<name>/ exists, ask before overwriting.New-Item -ItemType Directory "C:\Users\galaxywin\.gemini\antigravity\skills\<name>" -Force
cmd /c mklink /H "C:\Users\galaxywin\.gemini\antigravity\skills\<name>\SKILL.md" "<source>\SKILL.md"
$links = (fsutil hardlink list "C:\Users\galaxywin\.gemini\antigravity\skills\<name>\SKILL.md").Count
if ($links -gt 1) { "✅ Installed and synced" } else { "❌ Failed" }
SKILL.md appears, not the entire repo (unlike directory junctions)..lnk shortcuts — invisible to the skill scanner.Remove-Item "C:\Users\galaxywin\.gemini\antigravity\skills\<name>" -Recurse -Force
Safe — only removes the hardlink. The original SKILL.md in the source repo is untouched.
Get-ChildItem "C:\Users\galaxywin\.gemini\antigravity\skills" -Directory |
ForEach-Object { $_.Name + " => " + (Select-String "^description:" "$($_.FullName)\SKILL.md").Line }
When you learn something new that should be remembered across conversations, update the relevant skill's SKILL.md immediately. Examples:
When to update skills:
Never wait until "later" to update skills — that's how knowledge gets lost between conversations.