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