원클릭으로
condition-based-waiting
Wait for a real condition or event, never a blind fixed-duration sleep
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Wait for a real condition or event, never a blind fixed-duration sleep
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
Catch bad React in your changes — run react-doctor's deterministic scan and fix what it flags
Run a verifiable security scan (vulns, secrets, misconfig) over code you wrote or deps you added, before calling the work done
Drive a real browser verifiably — navigate, snapshot, act BY INDEX, extract; every step provable
Run multi-agent work as ONE provable causal DAG — parallel subagents, an Orchestrate graph, an immutable spec-seed
Author or connect a Model Context Protocol server so an agent gains new tools
Build automated pipelines that gate merges and ship reliably
SOC 직업 분류 기준
| name | condition-based-waiting |
| description | Wait for a real condition or event, never a blind fixed-duration sleep |
| version | 1 |
| trust | built-in |
A fixed sleep is a guess: too short and it's flaky, too long and it's slow. Wait
for the actual condition that tells you the thing is ready.
sleep to fix flakiness — synchronize on the event (a
barrier, a future, a readiness callback). A sleep that "fixes" a flaky test just
hides the race.Red flag: sleep(5) "to be safe". That's a race waiting to happen — wait on the condition instead.