background-agent-pings▌
parcadei/continuous-claude-v3 · updated Apr 8, 2026
Trust system reminders as agent progress notifications. Don't poll.
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
TaskOutputfloods 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
Discussion
Product Hunt–style comments (not star reviews)- No comments yet — start the thread.
Ratings
4.6★★★★★29 reviews- ★★★★★Ganesh Mohane· Dec 28, 2024
We added background-agent-pings from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.
- ★★★★★Kiara Jackson· Dec 28, 2024
Useful defaults in background-agent-pings — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.
- ★★★★★Min Dixit· Dec 12, 2024
background-agent-pings has been reliable in day-to-day use. Documentation quality is above average for community skills.
- ★★★★★Rahul Santra· Nov 19, 2024
background-agent-pings reduced setup friction for our internal harness; good balance of opinion and flexibility.
- ★★★★★Xiao Menon· Nov 3, 2024
Solid pick for teams standardizing on skills: background-agent-pings is focused, and the summary matches what you get after install.
- ★★★★★William Brown· Oct 22, 2024
I recommend background-agent-pings for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.
- ★★★★★Pratham Ware· Oct 10, 2024
background-agent-pings is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.
- ★★★★★Naina Zhang· Sep 17, 2024
background-agent-pings has been reliable in day-to-day use. Documentation quality is above average for community skills.
- ★★★★★Kaira Nasser· Sep 1, 2024
background-agent-pings reduced setup friction for our internal harness; good balance of opinion and flexibility.
- ★★★★★Mia Huang· Aug 20, 2024
background-agent-pings is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.
showing 1-10 of 29