원클릭으로
test-permission-bg-run
Trigger a permission prompt for a background Bash command (run_in_background=true).
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Trigger a permission prompt for a background Bash command (run_in_background=true).
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Create a new bug ticket in Hot Sheet
Create a new feature ticket in Hot Sheet
Create a new investigation ticket in Hot Sheet
Create a new issue ticket in Hot Sheet
Create a new req change ticket in Hot Sheet
Create a new task ticket in Hot Sheet
| name | test-permission-bg-run |
| description | Trigger a permission prompt for a background Bash command (run_in_background=true). |
Trigger a Bash permission prompt for a BACKGROUND command.
Call Bash with:
command: sleep 30 && pwddescription: Background-run permission test (sleeps 30s)run_in_background: trueAfter the call returns, just relay the background task ID to the user. Do NOT poll, sleep, or check on it — the point is the prompt, not the result.
Why sleep 30 && pwd and not sleep 30 && echo "bg test done"? Most users have Bash(echo *) in their Claude Code allow-list (~/.claude/settings.json). Claude Code's allow-list matcher can short-circuit chained && commands when every link matches an allow-rule, suppressing the prompt. pwd is rarely allowlisted, so the chain stays prompt-required. If THIS skill stops prompting, check the user's ~/.claude/settings.json for a Bash(pwd*) or Bash(sleep *) rule before suspecting a Hot Sheet regression.