skills/agent-system-diff/SKILL.md
설치된 system-agents 파일 하나를 업스트림 버전과 unified diff로 비교한다
npx skillsauth add southglory/system-agents-template agent-system-diffInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
/agent-system-diff <path> 명령이 수행하는 작업.
.agent-system-manifest.yaml에서 해당 파일의 기록 (origin, sha256) 을 찾는다.git clone --depth=1로 임시 fetch.difflib.unified_diff로 비교하여 표준출력에 출력.python bot/agent_system_updater.py diff <path>
<path>는 매니페스트의 path: 값과 정확히 일치해야 한다 (보통 프로젝트 루트 상대경로).
예:
python bot/agent_system_updater.py diff bot/turn-bot.py
python bot/agent_system_updater.py diff skills/discord-huddle-post/SKILL.md
--- local/bot/turn-bot.py
+++ upstream/bot/turn-bot.py
@@ -42,7 +42,7 @@
def process_messages():
- """Old docstring."""
+ """New docstring in upstream."""
pass
/agent-system-check-updates가 알려준 conflict (local+upstream 둘 다 변경됨) 파일을 검토할 때. 업스트림이 어떻게 바뀌었는지 먼저 보고:
no manifest record for path: X — 오타 확인. 매니페스트에 기록된 정확한 경로를 사용한다. /agent-system-check-updates의 목록을 복사해 쓰는 것이 안전.upstream copy ... is missing — 업스트림에서 해당 파일이 삭제됐다는 뜻. 마이그레이션 필요.local copy ... is missing — 로컬에서 실수로 삭제됐거나 다른 경로로 이동. 복원하려면 /agent-system-update --apply 가 해결해준다 (untouched+missing은 안전하게 재설치됨).git, Python 3.10+ (stdlib만)tools
에이전트 간 채팅방에 메시지를 보낸다. 인자로 채팅방 이름을 받는다.
business
이번 턴의 작업 결과를 관련 채팅방에 자동으로 공유한다.
tools
새 에이전트를 영입한다. 문답을 통해 역할을 정의하고 필요한 파일을 자동 생성한다.
tools
현재 에이전트의 턴을 종료한다.