{"id":"background-agent-pings","name":"background-agent-pings","summary":"背景エージェントの信号","body":"# Background Agent Pings\n\nTrust system reminders as agent progress notifications. Don't poll.\n\n## Pattern\n\nWhen you launch a background agent, **continue working on other tasks**. The system will notify you via reminders when:\n- Agent makes progress: `Agent <id> progress: X new tools used, Y new tokens`\n- Agent writes output file (check the path you specified)\n\n## DO\n\n```\n1. Task(run_in_background=true, prompt=\"... Output to: .claude/cache/agents/<type>/output.md\")\n2. Continue with next task immediately\n3. When system reminder shows agent activity, check if output file exists\n4. Read output file only when agent signals completion\n```\n\n## DON'T\n\n```\n# BAD: Polling wastes tokens and time\nTask(run_in_background=true)\nBash(\"sleep 5 && ls ...\")  # polling\nBash(\"tail /tmp/claude/.../tasks/<id>.output\")  # polling\nTaskOutput(task_id=\"...\")  # floods context\n```\n\n## Why This Matters\n\n- Polling burns tokens on repeated checks\n- `TaskOutput` floods main context with full agent transcript\n- System reminders are free - they're pushed to you automatically\n- Continue productive work while waiting\n\n## Source\n\n- This session: Realized polling for agent output wasted time when system reminders already provide progress updates","author":"@parcadei","ownerProfile":null,"authorContacts":null,"sourceUrl":"https://github.com/parcadei/Continuous-Claude-v3/tree/main/.claude/skills/background-agent-pings","license":"MIT","category":"productivity","lang":"en","tokens":285,"stars":0,"calls30d":2,"claimed":false,"visibility":"public","origin":"crawler","version":"0.1.0","createdAt":"2026-08-22","updatedAt":"2026-08-22","files":[],"requires":{"mcp":[],"tools":[]},"safety":{"flags":[],"scannedAt":"2026-08-22","hasScripts":false,"networkEndpoints":[]}}