Мониторинг фоновых агентов без опроса

orchestration

background-agent-pings is a Claude Code skill that teaches the agent to rely on system-pushed reminders instead of active polling when monitoring background tasks. When a background agent is launched with `Task(run_in_background=true)`, the system automatically delivers progress reminders — reporting new tools used and tokens consumed — at no additional cost. The skill instructs the agent to continue with other work immediately after launch and check the output file only once a completion signal arrives. Polling via `Bash`, `sleep`, or `TaskOutput` is explicitly forbidden: repeated checks waste tokens, and `TaskOutput` floods the main context with the full agent transcript. This pattern suits multi-agent orchestration workflows where several background agents run in parallel and responsiveness matters.