background-agent-pings
SolidBackground Agent Pings
AI & Automation 501 stars
42 forks Updated 2 days ago MIT
Install
Quality Score: 90/100
Stars 20%
Recency 20%
Frontmatter 20%
Documentation 15%
Issue Health 10%
License 10%
Description 5%
Skill Content
# 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
Details
- Author
- vibeeval
- Repository
- vibeeval/vibecosystem
- Created
- 3 months ago
- Last Updated
- 2 days ago
- Language
- C#
- License
- MIT
Integrates with
Similar Skills
Semantically similar based on skill content — not just same category
AI & Automation Listed
background-agent-pings
Background Agent Pings
3,811 Updated 4 months ago
parcadei AI & Automation Solid
no-polling-agents
No Polling for Background Agents
501 Updated 2 days ago
vibeeval AI & Automation Listed
no-polling-agents
No Polling for Background Agents
3,811 Updated 4 months ago
parcadei