Agent Skill
2/7/2026

async-feedback-loop

Enables mid-stream course correction by monitoring a FEEDBACK.md file for user interventions. Allows the agent to incorporate new instructions without restarting the task.

S
sounder25
15GitHub Stars
1Views
npx skills add Sounder25/Google-Antigravity-Skills-Library

SKILL.md

Nameasync-feedback-loop
DescriptionEnables mid-stream course correction by monitoring a FEEDBACK.md file for user interventions. Allows the agent to incorporate new instructions without restarting the task.

name: Async Feedback Loop description: Enables mid-stream course correction by monitoring a FEEDBACK.md file for user interventions. Allows the agent to incorporate new instructions without restarting the task. version: 1.0.0 author: Antigravity Skills Library created: 2026-01-16 leverage_score: 5/5

SKILL-010: Async Feedback Loop

Overview

Long-running tasks often drift. This skill provides a mechanism for the user to inject guidance via a FEEDBACK.md file. The agent checks this file and pivots immediately if new instructions are found.

Trigger Phrases

  • check feedback
  • read instructions
  • get user input

Inputs

ParameterTypeRequiredDefaultDescription
--filestringNoFEEDBACK.mdThe feedback channel file
--acknowledgeswitchNoFalseMark feedback as read (append timestamp)

Outputs

  1. Console: "New feedback found: ..." or "No new feedback."
  2. File Update: Appends "Read by Agent at <time>" if acknowledged.

Implementation

See check_feedback.ps1.

Integration

# In a loop:
.\skills\10_async_feedback\check_feedback.ps1 -Acknowledge
if ($LASTEXITCODE -eq 0) {
    # Pivot strategy
}
Skills Info
Original Name:async-feedback-loopAuthor:sounder25