Smithery Logo
MCPsSkillsDocsPricing
Login
NewFlame, an assistant that learns and improves. Available onTelegramSlack
    scooter-lacroix

    background-agent-pings

    scooter-lacroix/background-agent-pings
    Communication

    About

    SKILL.md

    Install

    • Telegram
      Telegram
    • Slack
      Slack
    • Claude Code
      Claude Code
    • Codex
      Codex
    • OpenClaw
      OpenClaw
    • Cursor
      Cursor
    • Amp
      Amp
    • GitHub Copilot
      GitHub Copilot
    • Gemini CLI
      Gemini CLI
    • Kilo Code
      Kilo Code
    • Junie
      Junie
    • Replit
      Replit
    • Windsurf
      Windsurf
    • Cline
      Cline
    • Continue
      Continue
    • OpenCode
      OpenCode
    • OpenHands
      OpenHands
    • Roo Code
      Roo Code
    • Augment
      Augment
    • Goose
      Goose
    • Trae
      Trae
    • Zencoder
      Zencoder
    • Antigravity
      Antigravity
    • Download skill
    ├─
    ├─
    └─
    Smithery Logo

    Give agents more agency

    Resources

    DocumentationPrivacy PolicySystem Status

    Company

    PricingAboutBlog

    Connect

    © 2026 Smithery. All rights reserved.

    About

    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: .maestro/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
    Recommended Servers
    Agent Safe Message MCP
    Agent Safe Message MCP
    URL Safety Validator MCP
    URL Safety Validator MCP
    OffshoreProz — Agent Company for AI Agents
    OffshoreProz — Agent Company for AI Agents
    Repository
    scooter-lacroix/maestro
    Files