一键导入
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 职业分类
| 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.
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.