원클릭으로
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.