background-agent-pings
π―Skillfrom parcadei/continuous-claude-v3
Enables background agent execution with system-triggered progress notifications, avoiding manual polling and context flooding.
Installation
npx skills add https://github.com/parcadei/continuous-claude-v3 --skill background-agent-pingsSkill Details
Background Agent Pings
Overview
# 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:
Agentprogress: X new tools used, Y new tokens - Agent writes output file (check the path you specified)
DO
```
- Task(run_in_background=true, prompt="... Output to: .claude/cache/agents/
/output.md") - Continue with next task immediately
- When system reminder shows agent activity, check if output file exists
- 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/
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
More from this repository10
Enables seamless integration between Agentica agents and Claude Code CLI by managing proxy configurations, tool permissions, and response formatting.
Generates a comprehensive summary of the current system's configuration, components, and key metrics across skills, agents, hooks, and other core systems.
Manages git commits by removing Claude attribution, generating reasoning documentation, and ensuring clean commit workflows.
Systematically researches, analyzes, plans, implements, and reviews migrations across frameworks, languages, and infrastructure with minimal risk.
Systematically diagnose and resolve hook registration, execution, and output issues in Claude Code projects by checking cache, settings, files, and manual testing.
Provides comprehensive reference and infrastructure for building sophisticated multi-agent coordination patterns and workflows with precise API specifications and tracking mechanisms.
Traces and correlates Claude Code session events across parent and sub-agent interactions using comprehensive Braintrust instrumentation.
Provides comprehensive CLI commands and flags for interacting with Claude Code, enabling headless mode, automation, and session management.
Rapidly edits files using AI-powered Morph Apply API with high accuracy and speed, without requiring full file context.
Orchestrates complex multi-file implementation tasks by spawning specialized agents that preserve main context and handle intricate development workflows.