guard
스타11
포크2
업데이트2026년 3월 26일 20:23
Show active sandbox guard status
설치
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SKILL.md
readonly메뉴
Show active sandbox guard status
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
| name | guard |
| description | Show active sandbox guard status |
Report the following sandbox guard status to the user. Do not editorialize or suggest changes — just display the information clearly.
echo "${AGS_SANDBOX:-<not set>}"if [ "${AGS_SANDBOX}" = "1" ]; then echo "ON (AGS_SANDBOX=1)"; elif [ -n "${AGS_GUARD_READ_ROOTS_JSON}" ] || [ -n "${AGS_GUARD_WRITE_ROOTS_JSON}" ]; then echo "ON (guard roots present)"; else echo "OFF (no sandbox markers)"; fiecho "${AGS_GUARD_READ_ROOTS_JSON:-<not set>}"echo "${AGS_GUARD_WRITE_ROOTS_JSON:-<not set>}"pwdecho "$HOME"if [ -x "/home/dev/.config/ags/hooks/guard.sh" ]; then echo "installed"; else echo "NOT FOUND"; fi