ワンクリックで
agent-system-diff
설치된 system-agents 파일 하나를 업스트림 버전과 unified diff로 비교한다
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
설치된 system-agents 파일 하나를 업스트림 버전과 unified diff로 비교한다
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Use when Codex is acting as a participant in a system-agents turn-based workflow, reading chatrooms, claiming tasks, executing assigned work, or reporting turn results.
새 에이전트를 영입한다. 문답을 통해 역할을 정의하고 필요한 파일을 자동 생성한다.
설치된 system-agents 템플릿/플러그인이 업스트림과 얼마나 벌어져 있는지 요약해서 보여준다
업스트림 변경 중 안전한 것만 반영하고, 충돌 파일은 건드리지 않거나 백업 후 적용한다
새 에이전트를 영입한다. 문답을 통해 역할을 정의하고 필요한 파일을 자동 생성한다.
에이전트 간 채팅방의 안 읽은 메시지를 확인한다. 채팅방 이름을 인자로 받는다.
| name | agent-system-diff |
| description | 설치된 system-agents 파일 하나를 업스트림 버전과 unified diff로 비교한다 |
/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만)