Background Agent Pings
Scanned 9/12/2026
Install to Claude Code
npx -y skills add thedixitjain/the-mega-skill-library --skill background-agent-pings --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Background Agent Pings?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/thedixitjain-background-agent-pings)More formats (shields.io, HTML) on the badges page.
---
name: background-agent-pings
description: "Background Agent Pings"
category: ai-agents-and-harness
source_repo: parcadei/Continuous-Claude-v3
source_path: ".claude/skills/background-agent-pings/SKILL.md"
source_url: https://github.com/parcadei/Continuous-Claude-v3/blob/HEAD/.claude/skills/background-agent-pings/SKILL.md
---
# Background Agent Pings
Trust system reminders as agent progress notifications. Don't poll.
## Pattern
When you launch a background agent, **continue working on other tasks**. The system will notify you via reminders when:
- Agent makes progress: `Agent <id> progress: X new tools used, Y new tokens`
- Agent writes output file (check the path you specified)
## DO
```
1. Task(run_in_background=true, prompt="... Output to: .claude/cache/agents/<type>/output.md")
2. Continue with next task immediately
3. When system reminder shows agent activity, check if output file exists
4. Read output file only when agent signals completion
```
## DON'T
```
# BAD: Polling wastes tokens and time
Task(run_in_background=true)
Bash("sleep 5 && ls ...") # polling
Bash("tail /tmp/claude/.../tasks/<id>.output") # polling
TaskOutput(task_id="...") # floods context
```
## Why This Matters
- Polling burns tokens on repeated checks
- `TaskOutput` floods main context with full agent transcript
- System reminders are free - they're pushed to you automatically
- Continue productive work while waiting
## Source
- This session: Realized polling for agent output wasted time when system reminders already provide progress updates
---
**Source:** [`parcadei/Continuous-Claude-v3`](https://github.com/parcadei/Continuous-Claude-v3) → `.claude/skills/background-agent-pings/SKILL.md`
Is this your skill, or is something wrong with this listing? . Author removals are honored within 72 hours.
No comments yet. Be the first to comment!