Skip to main content

sync-agent-skills

Use when the user says /syncskills, sync agent skills, update .agents skills from .codex, .cursor, or .claude, or asks to make .agents/skills include skills from other agent folders.

설치로 이동

소스 정보

저장소
waynesutton/vibeapps
최근 소스 활동
2026년 6월 28일 21:23
감지된 SKILL.md 언어
영어
스타
24
포크
19

설치 방법

기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.

소스 파일 검토

설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.

SKILL.md 표시 중

SKILL.md
소스 지침 · 읽기 전용 미리보기
name
sync-agent-skills
description
Use when the user says /syncskills, sync agent skills, update .agents skills from .codex, .cursor, or .claude, or asks to make .agents/skills include skills from other agent folders.
# Sync Agent Skills Use this skill to keep `.agents/skills` as the shared skill folder for this project. ## Source folders Import skills from these folders when they exist: - `.codex/skills` - `.cursor/skills` - `.claude/skills` Destination: - `.agents/skills` ## Rules - Do not delete skills from `.agents/skills`. - Do not overwrite existing `.agents/skills` entries unless the user explicitly asks to replace them. - Prefer `.agents/skills` as the shared, tool-neutral folder. - Keep tool-specific skills in their original folder only if their instructions do not apply to other tools. - Report when a source folder does not exist. ## Workflow 1. List current skills: ```bash find .agents/skills .codex/skills .cursor/skills .claude/skills -maxdepth 2 -name SKILL.md -print 2>/dev/null | sort ``` 2. Import missing skills without overwriting existing `.agents` skills: ```bash rsync -a --ignore-existing .codex/skills/ .agents/skills/ rsync -a --ignore-existing .cursor/skills/ .agents/skills/ rsync -a --ignore-existing .claude/skills/ .agents/skills/ ``` 3. Verify the aggregate list: ```bash find .agents/skills -maxdepth 2 -name SKILL.md -print | sort ``` 4. Report: - how many `.agents` skills are now available - which source folders were imported - whether any source folder was missing ## Optional Mirror Only if the user explicitly asks to mirror `.agents/skills` back out to other tools: ```bash rsync -a --ignore-existing .agents/skills/ .codex/skills/ rsync -a --ignore-existing .agents/skills/ .cursor/skills/ rsync -a --ignore-existing .agents/skills/ .claude/skills/ ```
GitHub에서 보기