Фоновые агенты без polling-циклов

orchestration

no-polling-agents is a Claude Code skill that defines a pattern for launching parallel background agents without polling loops. Agents are started with `run_in_background: true` and write their results to `.claude/cache/status.txt` upon completion, so there is no need for repeated `sleep && cat status.txt` calls. Instead of blocking or wasting tokens on status checks, Claude continues with other work and reads the status file only when the user explicitly asks, when the agent output is required to proceed, or when significant time has passed. The skill is not user-invocable — it governs the orchestrator's internal behavior, eliminating blocking waits and unnecessary token consumption during parallel agent workflows.