smithery/sounder25

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.

Installation

$ npx skills add smithery/sounder25 --skill async-feedback-loop

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from smithery/sounder25 · top by installs.

npx skills add smithery/sounder25

Browse all from smithery/sounder25

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Skill metadata

Parsed from SKILL.md frontmatter.

Version1.0.0
Declared agents antigravity

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,264 B
  • docs SUMMARY.md 198 B

History

  1. First recorded snapshot · 0 installs

SKILL.md

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

Parameter Type Required Default Description
--file string No FEEDBACK.md The feedback channel file
--acknowledge switch No False Mark 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
}